File tree Expand file tree Collapse file tree 3 files changed +376
-4
lines changed
Expand file tree Collapse file tree 3 files changed +376
-4
lines changed Original file line number Diff line number Diff line change @@ -1164,7 +1164,8 @@ void Input::parse_analysis_vars(const bool use_default_values)
11641164 // Read input parameters in the &analysis field.
11651165 int i;
11661166
1167- std::vector<std::string> input_list{" PRINTEVEC" ,
1167+ std::vector<std::string> input_list{" PRINTEVAL" ,
1168+ " PRINTEVEC" ,
11681169 " PRINTXSF" ,
11691170 " PRINTVEL" ,
11701171 " QUARTIC" ,
@@ -1218,6 +1219,7 @@ void Input::parse_analysis_vars(const bool use_default_values)
12181219 auto print_anime = false ;
12191220
12201221 auto print_vel = false ;
1222+ auto print_eval = false ;
12211223 auto print_evec = false ;
12221224 auto print_msd = false ;
12231225 auto print_ucorr = false ;
@@ -1259,6 +1261,7 @@ void Input::parse_analysis_vars(const bool use_default_values)
12591261
12601262 assign_val (print_vel, " PRINTVEL" , analysis_var_dict);
12611263 assign_val (print_evec, " PRINTEVEC" , analysis_var_dict);
1264+ assign_val (print_eval, " PRINTEVAL" , analysis_var_dict);
12621265 assign_val (print_msd, " PRINTMSD" , analysis_var_dict);
12631266 assign_val (print_ucorr, " UCORR" , analysis_var_dict);
12641267
@@ -1412,7 +1415,8 @@ void Input::parse_analysis_vars(const bool use_default_values)
14121415 anime_kpoint_double,
14131416 print_ucorr,
14141417 shift_ucorr,
1415- print_zmode);
1418+ print_zmode,
1419+ print_eval);
14161420
14171421
14181422 dos->compute_dos = compute_dos;
You can’t perform that action at this time.
0 commit comments