@@ -244,7 +244,7 @@ void MpiMusic::InitializeHydroEnergyProfile() {
244
244
} else {
245
245
music_hydro_ptr->generate_hydro_source_terms ();
246
246
double tau0 = pre_eq_ptr->GetPreequilibriumEndTime ();
247
- JSINFO << " hydro initial time tau0 = " << tau0 << " fm" ;
247
+ JSINFO << " Hydro initial time tau0 = " << tau0 << " fm" ;
248
248
music_hydro_ptr->initialize_hydro_from_jetscape_preequilibrium_vectors (
249
249
tau0,
250
250
dx, dz, z_max, nz, pre_eq_ptr->e_ , pre_eq_ptr->P_ ,
@@ -260,9 +260,9 @@ void MpiMusic::InitializeHydroEnergyProfile() {
260
260
exit (1 );
261
261
}
262
262
263
- JSINFO << " initial density profile dx = " << dx << " fm" ;
263
+ JSINFO << " Initial density profile dx = " << dx << " fm" ;
264
264
hydro_status = INITIALIZED;
265
- JSINFO << " number of source terms: "
265
+ JSINFO << " Number of source terms: "
266
266
<< hydro_source_terms_ptr->get_number_of_sources ()
267
267
<< " , total E = " << hydro_source_terms_ptr->get_total_E_of_sources ()
268
268
<< " GeV." ;
@@ -300,7 +300,7 @@ void MpiMusic::EvolveHydro() {
300
300
301
301
if (flag_preEq_output_evo_to_memory == 1 && pre_eq_ptr != nullptr ) {
302
302
double tau0 = pre_eq_ptr->GetPreequilibriumEndTime ();
303
- JSINFO << " hydro initial time set by PreEq module tau0 = "
303
+ JSINFO << " Hydro initial time set by pre-equilibrium module tau0 = "
304
304
<< tau0 << " fm/c" ;
305
305
if (flag_output_evo_to_memory == 1 ) {
306
306
// need to ensure preEq and hydro use the same dtau so that
@@ -333,7 +333,7 @@ void MpiMusic::EvolveHydro() {
333
333
clear_up_evolution_data ();
334
334
}
335
335
PassHydroEvolutionHistoryToFramework ();
336
- JSINFO << " number of fluid cells received by the JETSCAPE: "
336
+ JSINFO << " Number of fluid cells received by JETSCAPE: "
337
337
<< bulk_info.data .size ();
338
338
}
339
339
}
@@ -384,17 +384,14 @@ void MpiMusic::collect_freeze_out_surface() {
384
384
void MpiMusic::SetPreEqGridInfo () {
385
385
bulk_info.tau_min = pre_eq_ptr->GetPreequilibriumStartTime ();
386
386
bulk_info.dtau = pre_eq_ptr->GetPreequilibriumEvodtau ();
387
- JSINFO << " preEq evo : tau_0 = " << bulk_info.tau_min
387
+ JSINFO << " Pre-equilibrium evolution : tau_0 = " << bulk_info.tau_min
388
388
<< " fm/c, dtau = " << bulk_info.dtau << " fm/c." ;
389
389
}
390
390
391
391
void MpiMusic::SetHydroGridInfo () {
392
392
bulk_info.neta = music_hydro_ptr->get_neta ();
393
- bulk_info.ntau = music_hydro_ptr->get_ntau ();
394
393
bulk_info.nx = music_hydro_ptr->get_nx ();
395
394
bulk_info.ny = music_hydro_ptr->get_nx ();
396
- bulk_info.tau_min = music_hydro_ptr->get_hydro_tau0 ();
397
- bulk_info.dtau = music_hydro_ptr->get_hydro_dtau ();
398
395
bulk_info.x_min = -music_hydro_ptr->get_hydro_x_max ();
399
396
bulk_info.dx = music_hydro_ptr->get_hydro_dx ();
400
397
bulk_info.y_min = -music_hydro_ptr->get_hydro_x_max ();
@@ -446,9 +443,9 @@ void MpiMusic::PassHydroSurfaceToFramework() {
446
443
}
447
444
448
445
void MpiMusic::PassPreEqEvolutionHistoryToFramework () {
449
- JSINFO << " Passing preEq evolution information to JETSCAPE ... " ;
446
+ JSINFO << " Passing pre-equilibrium evolution information to JETSCAPE ... " ;
450
447
auto number_of_cells = pre_eq_ptr->get_number_of_fluid_cells ();
451
- JSINFO << " Total number of preEq fluid cells: " << number_of_cells;
448
+ JSINFO << " Total number of pre-equilibrium fluid cells: " << number_of_cells;
452
449
453
450
SetPreEqGridInfo ();
454
451
0 commit comments