Skip to content

Commit ec632b8

Browse files
authored
Merge pull request #74 from JETSCAPE/Passing-QCDStringList-to-MUSIC
Passing qcd string list to music
2 parents 60f2e4a + 25da5c3 commit ec632b8

File tree

9 files changed

+97
-52
lines changed

9 files changed

+97
-52
lines changed

.github/workflows/test-events-Pythia-Isr-Hadron.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/checkout@v4
5656
with:
5757
repository: JETSCAPE/TEST-EXAMPLES
58-
ref: main
58+
ref: Passing-QCDStringList-to-MUSIC
5959
path: TEST-EXAMPLES
6060

6161
- name: Run Pythia ISR Hadron File Tests

config/jetscape_main.xml

+2
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,9 @@
400400
<!--higher order transport coefficients-->
401401
<Include_second_order_terms>1</Include_second_order_terms>
402402
<!--freeze-out parameters-->
403+
<use_eps_for_freeze_out>0</use_eps_for_freeze_out>
403404
<freezeout_temperature>0.15</freezeout_temperature>
405+
<eps_switch>0.3</eps_switch>
404406
<!--perform CooperFrye Freezout in MUSIC, not needed when iSS module is used-->
405407
<Perform_CooperFrye_Freezeout>0</Perform_CooperFrye_Freezeout>
406408
<!--source term parameters for InitialProfile 13-->

external_packages/get_3dglauber.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
##############################################################################
1515

1616
folderName="3dMCGlauber"
17-
commitHash="056a6d03bf6fb097b14d82874cebf6cce2fa0e5a" # for xscape 1.1, 1.1.1
17+
commitHash="b54d997a8b35" # for xscape 1.2
1818
# download the code package
1919
rm -fr $folderName
2020
git clone https://github.com/chunshen1987/3dMCGlauber.git --branch JETSCAPE $folderName

src/framework/HardProcess.cc

+6-3
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,12 @@ void HardProcess::CollectHeader(weak_ptr<JetScapeWriter> w) {
123123
header.SetSigmaErr(GetSigmaErr());
124124
header.SetPtHat(GetPtHat());
125125
header.SetEventWeight(GetEventWeight());
126-
header.SetVertexX(hp_list[0]->x_in().x());
127-
header.SetVertexY(hp_list[0]->x_in().y());
128-
header.SetVertexZ(hp_list[0]->x_in().z());
126+
127+
if (hp_list.size() > 0) {
128+
header.SetVertexX(hp_list[0]->x_in().x());
129+
header.SetVertexY(hp_list[0]->x_in().y());
130+
header.SetVertexZ(hp_list[0]->x_in().z());
131+
}
129132
}
130133
}
131134

src/framework/InitialState.h

+7-4
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ class InitialState : public JetScapeModuleBase {
131131
std::tuple<double, double, double> CoordFromIdx(int idx);
132132
virtual void SampleABinaryCollisionPoint(double &t, double &x,
133133
double &y, double &z);
134-
134+
135135
virtual double Get_total_nucleon_density_lab(double t, double x,
136136
double y, double z) {
137137
return 0.0;
138138
}
139-
139+
140140
virtual double Get_target_nucleon_density_lab(double t, double x,
141141
double y, double z) {
142142
return 0.0;
143143
}
144-
144+
145145
virtual double Get_projectile_nucleon_density_lab(double t, double x,
146146
double y, double z) {
147147
return 0.0;
@@ -153,7 +153,6 @@ class InitialState : public JetScapeModuleBase {
153153
virtual void OutputHardPartonMomentum(double E, double px, double py, double pz,
154154
int direction, double P_A);
155155
virtual void ClearHardPartonMomentum();
156-
157156

158157
virtual std::vector<double> Get_projectile_nucleon_z_lab();
159158
virtual std::vector<double> Get_target_nucleon_z_lab();
@@ -169,6 +168,9 @@ class InitialState : public JetScapeModuleBase {
169168

170169
virtual void GetHardPartonPosAndMomentumProj();
171170
virtual void GetHardPartonPosAndMomentumTarg();
171+
virtual std::vector< std::vector<double> > GetQCDStringList() {
172+
return(QCDStringList_);
173+
}
172174

173175
virtual void GenerateStrings();
174176
/** @return The maximum value of coordinate "x" in the nuclear profile of a nucleus.
@@ -237,6 +239,7 @@ class InitialState : public JetScapeModuleBase {
237239
@sa Function CoordFromIdx(int idx) for the mapping.
238240
*/
239241
std::vector<double> num_of_binary_collisions_;
242+
std::vector< std::vector<double> > QCDStringList_;
240243
// the above should be private. Only Adding getters for now to not break other people's code
241244

242245
/** @return The initial state entropy density distribution.

src/hydro/MusicWrapper.cc

+25-12
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ void MpiMusic::InitializeHydro(Parameter parameter_list) {
111111
exit(1);
112112
}
113113

114-
int InitialProfile = (
114+
initialProfile_ = (
115115
GetXMLElementInt({"Hydro", "MUSIC", "InitialProfile"}));
116-
music_hydro_ptr->set_parameter("Initial_profile", InitialProfile);
116+
music_hydro_ptr->set_parameter("Initial_profile", initialProfile_);
117117
double string_source_sigma_x = (
118118
GetXMLElementDouble({"Hydro", "MUSIC", "string_source_sigma_x"}));
119119
music_hydro_ptr->set_parameter("string_source_sigma_x",
@@ -207,6 +207,10 @@ void MpiMusic::InitializeHydro(Parameter parameter_list) {
207207
music_hydro_ptr->set_parameter("Include_second_order_terms", 1);
208208
}
209209

210+
int use_eps_for_freeze_out = GetXMLElementInt(
211+
{"Hydro", "MUSIC", "use_eps_for_freeze_out"});
212+
music_hydro_ptr->set_parameter("use_eps_for_freeze_out",
213+
use_eps_for_freeze_out);
210214
freezeout_temperature =
211215
GetXMLElementDouble({"Hydro", "MUSIC", "freezeout_temperature"});
212216
if (freezeout_temperature > 0.05) {
@@ -216,7 +220,10 @@ void MpiMusic::InitializeHydro(Parameter parameter_list) {
216220
<< freezeout_temperature << " GeV!";
217221
exit(1);
218222
}
219-
223+
double eps_switch =
224+
GetXMLElementDouble({"Hydro", "MUSIC", "eps_switch"});
225+
music_hydro_ptr->set_parameter("eps_switch", eps_switch);
226+
220227
music_hydro_ptr->check_parameters();
221228
music_hydro_ptr->add_hydro_source_terms(hydro_source_terms_ptr);
222229
}
@@ -231,22 +238,28 @@ void MpiMusic::InitializeHydroEnergyProfile() {
231238
int nz = ini->GetZSize();
232239

233240
// need further improvement to accept multiple source term objects
234-
music_hydro_ptr->generate_hydro_source_terms();
235-
236-
if (pre_eq_ptr == nullptr) {
237-
JSWARN << "Missing the pre-equilibrium module ...";
238-
exit(1);
239-
}
240-
double tau0 = pre_eq_ptr->GetPreequilibriumEndTime();
241-
JSINFO << "hydro initial time tau0 = " << tau0 << " fm";
242-
music_hydro_ptr->initialize_hydro_from_jetscape_preequilibrium_vectors(
241+
if (initialProfile_ == 13 || initialProfile_ == 131) {
242+
music_hydro_ptr->generate_hydro_source_terms(ini->GetQCDStringList());
243+
music_hydro_ptr->initialize_hydro_xscape();
244+
} else {
245+
music_hydro_ptr->generate_hydro_source_terms();
246+
double tau0 = pre_eq_ptr->GetPreequilibriumEndTime();
247+
JSINFO << "hydro initial time tau0 = " << tau0 << " fm";
248+
music_hydro_ptr->initialize_hydro_from_jetscape_preequilibrium_vectors(
243249
tau0,
244250
dx, dz, z_max, nz, pre_eq_ptr->e_, pre_eq_ptr->P_,
245251
pre_eq_ptr->utau_, pre_eq_ptr->ux_, pre_eq_ptr->uy_, pre_eq_ptr->ueta_,
246252
pre_eq_ptr->pi00_, pre_eq_ptr->pi01_, pre_eq_ptr->pi02_,
247253
pre_eq_ptr->pi03_, pre_eq_ptr->pi11_, pre_eq_ptr->pi12_,
248254
pre_eq_ptr->pi13_, pre_eq_ptr->pi22_, pre_eq_ptr->pi23_,
249255
pre_eq_ptr->pi33_, pre_eq_ptr->bulk_Pi_);
256+
}
257+
258+
if (pre_eq_ptr == nullptr) {
259+
JSWARN << "Missing the pre-equilibrium module ...";
260+
exit(1);
261+
}
262+
250263
JSINFO << "initial density profile dx = " << dx << " fm";
251264
hydro_status = INITIALIZED;
252265
JSINFO << "number of source terms: "

src/hydro/MusicWrapper.h

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ class MpiMusic : public FluidDynamics {
9191
bool has_source_terms;
9292
std::shared_ptr<HydroSourceJETSCAPE> hydro_source_terms_ptr;
9393

94+
int initialProfile_;
95+
9496
// Allows the registration of the module so that it is available to be
9597
// used by the Jetscape framework.
9698
static RegisterJetScapeModule<MpiMusic> reg;

src/initialstate/MCGlauberWrapper.cc

+40-23
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,12 @@ MCGlauberWrapper::MCGlauberWrapper() {
3434

3535

3636
void MCGlauberWrapper::InitTask() {
37-
parameter_list_.read_in_parameters_from_file("mcglauber.input");
38-
//int ran_seed = parameter_list_.get_seed();
3937
auto ran_seed = (*GetMt19937Generator())();
40-
auto gamma_beta = parameter_list_.get_tau_form_fluct_gamma_beta();
4138

39+
int argc = 0;
40+
char* argv[1];
4241
mc_gen_ = std::shared_ptr<MCGlb::EventGenerator>(
43-
new MCGlb::EventGenerator("mcglauber.input", ran_seed));
42+
new MCGlb::EventGenerator("mcglauber.input", argc, argv, ran_seed));
4443

4544
// overwrite input options
4645
double para_temp;
@@ -65,21 +64,19 @@ void MCGlauberWrapper::InitTask() {
6564
para_temp = (
6665
GetXMLElementDouble({"IS", "MCGlauber", "ylossParam4var"}));
6766
mc_gen_->set_parameter("ylossParam4var", para_temp);
68-
para_temp = (
69-
GetXMLElementDouble({"IS", "MCGlauber", "remnant_energy_loss_fraction"}));
67+
para_temp = (GetXMLElementDouble({"IS", "MCGlauber",
68+
"remnant_energy_loss_fraction"}));
7069
mc_gen_->set_parameter("remnant_energy_loss_fraction", para_temp);
71-
72-
// re-generate mc pointer
73-
mc_gen_->New_Para_pointer(ran_seed);
7470
}
7571

72+
7673
void MCGlauberWrapper::ClearTask() {
7774
VERBOSE(1) << "clear initial condition vectors";
7875
binary_collision_t_.clear();
7976
binary_collision_x_.clear();
8077
binary_collision_y_.clear();
8178
binary_collision_z_.clear();
82-
79+
QCDStringList_.clear();
8380
}
8481

8582

@@ -115,7 +112,7 @@ void MCGlauberWrapper::ExecuteTask() {
115112

116113
void MCGlauberWrapper::SampleABinaryCollisionPoint(
117114
double &t, double &x, double &y, double &z) {
118-
int rand_idx = (*rand_int_ptr_)(*GetMt19937Generator());
115+
const int rand_idx = (*rand_int_ptr_)(*GetMt19937Generator());
119116
t = binary_collision_t_[rand_idx];
120117
x = binary_collision_x_[rand_idx];
121118
y = binary_collision_y_[rand_idx];
@@ -206,54 +203,74 @@ void MCGlauberWrapper::OutputHardPartonMomentum(double E, double px, double py,
206203
<< " targ_parton_e_ " << targ_parton_e_
207204
<< " targ_parton_pz_ " << targ_parton_pz_;
208205

209-
if(targ_parton_e_ >= 0.95 * P_A || proj_parton_e_ >= 0.95 * P_A ){
210-
throw std::runtime_error("Energy to subtract from 3DMCGlauber >= 0.95 * P_A "+std::to_string(0.95 * P_A)+". Turn on Verbose for more info.");
206+
if (targ_parton_e_ >= 0.95 * P_A || proj_parton_e_ >= 0.95 * P_A ) {
207+
throw std::runtime_error(
208+
"Energy to subtract from 3DMCGlauber >= 0.95 * P_A "
209+
+ std::to_string(0.95 * P_A)+". Turn on Verbose for more info.");
211210
}
212211

213212
}
214213

214+
215215
std::vector<double> MCGlauberWrapper::Get_quarks_pos_proj_lab() {
216216
// get the x, y, z of the three valence quarks of colliding projectile
217217
// The fourth parton is the soft ball
218-
// 3DGlauber attributes the remaining energy and momentum carried by the sea quarks and gluons to a soft gluon cloud
218+
// 3DGlauber attributes the remaining energy and momentum carried by the
219+
// sea quarks and gluons to a soft gluon cloud
219220
// Output formulation is (x,y,z, x,y,z, x,y,z, x,y,z)
220-
mc_gen_->GetHardPos(hard_parton_t_, hard_parton_x_, hard_parton_y_,
221+
mc_gen_->GetHardPos(hard_parton_t_, hard_parton_x_, hard_parton_y_,
221222
hard_parton_z_);
222223
return(mc_gen_->GetQuarkPosProj());
223224
}
224225

226+
225227
std::vector<double> MCGlauberWrapper::Get_quarks_pos_targ_lab() {
226228
// get the x, y, z of the three valence quarks of colliding target
227229
// The fourth parton is the soft ball
228-
// 3DGlauber attributes the remaining energy and momentum carried by the sea quarks and gluons to a soft gluon cloud
230+
// 3DGlauber attributes the remaining energy and momentum carried by the
231+
// sea quarks and gluons to a soft gluon cloud
229232
// Output formulation is (x,y,z, x,y,z, x,y,z, x,y,z)
230-
mc_gen_->GetHardPos(hard_parton_t_, hard_parton_x_, hard_parton_y_,
233+
mc_gen_->GetHardPos(hard_parton_t_, hard_parton_x_, hard_parton_y_,
231234
hard_parton_z_);
232235
return(mc_gen_->GetQuarkPosTarg());
233236
}
234237

238+
235239
std::vector<double> MCGlauberWrapper::Get_remnant_proj() {
236240
// get the fout-momentum (E, px, py, pz) of the remnant in projectile
237241
return(mc_gen_->GetRemMom_Proj());
238242
}
239243

244+
240245
std::vector<double> MCGlauberWrapper::Get_remnant_targ() {
241-
// get the fout-momentum (E, px, py, pz) of the remnant in target
246+
// get the fout-momentum (E, px, py, pz) of the remnant in target
242247
return(mc_gen_->GetRemMom_Targ());
243248
}
244249

250+
245251
void MCGlauberWrapper::GetHardPartonPosAndMomentumProj() {
246-
mc_gen_->GetMomandPos_Proj(hard_parton_t_, hard_parton_x_, hard_parton_y_,
247-
hard_parton_z_, proj_parton_e_, proj_parton_px_,
252+
mc_gen_->GetMomandPos_Proj(hard_parton_t_, hard_parton_x_, hard_parton_y_,
253+
hard_parton_z_, proj_parton_e_, proj_parton_px_,
248254
proj_parton_py_, proj_parton_pz_);
249255
}
250256

257+
251258
void MCGlauberWrapper::GetHardPartonPosAndMomentumTarg() {
252-
mc_gen_->GetMomandPos_Targ(hard_parton_t_, hard_parton_x_, hard_parton_y_,
253-
hard_parton_z_, targ_parton_e_, targ_parton_px_,
259+
mc_gen_->GetMomandPos_Targ(hard_parton_t_, hard_parton_x_, hard_parton_y_,
260+
hard_parton_z_, targ_parton_e_, targ_parton_px_,
254261
targ_parton_py_, targ_parton_pz_);
255262
}
256263

257264
void MCGlauberWrapper::GenerateStrings() {
258-
mc_gen_->generate_strings(); // generate 3D Glauber for MUSIC
265+
// generate strings from 3D Glauber for MUSIC
266+
QCDStringList_.clear();
267+
auto stringList = mc_gen_->generate_strings();
268+
for (auto string_i: stringList) {
269+
std::vector<double> string_temp;
270+
for (auto ii: string_i) {
271+
string_temp.push_back(static_cast<double>(ii));
272+
}
273+
QCDStringList_.push_back(string_temp);
274+
}
275+
JSINFO << "Produced " << QCDStringList_.size() << " strings.";
259276
}

src/initialstate/MCGlauberWrapper.h

+13-8
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class MCGlauberWrapper : public Jetscape::InitialState {
3535
public:
3636
MCGlauberWrapper();
3737
~MCGlauberWrapper() {}
38-
38+
3939
/** Reads the input parameters from the XML file under the tag <IS>. Calls InitTask(); This explicit call of InitTask() can be used for actual initialization of modules such as @a Trento if attached as a @a polymorphic class. It also initializes the tasks within the current module.
4040
@sa Read about @a polymorphism in C++.
4141
*/
@@ -71,7 +71,7 @@ class MCGlauberWrapper : public Jetscape::InitialState {
7171
void OutputHardCollisionPosition(double t, double x, double y,
7272
double z);
7373
void OutputHardPartonMomentum(double E, double px, double py, double pz,
74-
int direction, double P_A);
74+
int direction, double P_A);
7575
void ClearHardPartonMomentum();
7676
void GetHardPartonPosAndMomentumProj();
7777
void GetHardPartonPosAndMomentumTarg();
@@ -82,19 +82,24 @@ class MCGlauberWrapper : public Jetscape::InitialState {
8282
std::vector<double> Get_remnant_proj();
8383
std::vector<double> Get_remnant_targ();
8484
void GenerateStrings();
85-
86-
std::shared_ptr<InitialState> ini;
87-
85+
std::vector< std::vector<double> > GetQCDStringList() {
86+
return(QCDStringList_);
87+
}
88+
89+
std::shared_ptr<InitialState> ini;
90+
8891
private:
8992
std::shared_ptr<MCGlb::EventGenerator> mc_gen_;
9093
std::vector<double> binary_collision_t_;
9194
std::vector<double> binary_collision_x_;
9295
std::vector<double> binary_collision_y_;
9396
std::vector<double> binary_collision_z_;
97+
std::vector< std::vector<double> > QCDStringList_;
9498
double hard_parton_x_, hard_parton_y_, hard_parton_z_, hard_parton_t_;
95-
double targ_parton_px_ = 0.0, targ_parton_py_ = 0.0, targ_parton_pz_ = 0.0, targ_parton_e_ = 0.0;
96-
double proj_parton_px_ = 0.0, proj_parton_py_ = 0.0, proj_parton_pz_ = 0.0, proj_parton_e_ = 0.0;
97-
MCGlb::Parameters parameter_list_;
99+
double targ_parton_px_ = 0.0, targ_parton_py_ = 0.0;
100+
double targ_parton_pz_ = 0.0, targ_parton_e_ = 0.0;
101+
double proj_parton_px_ = 0.0, proj_parton_py_ = 0.0;
102+
double proj_parton_pz_ = 0.0, proj_parton_e_ = 0.0;
98103
std::shared_ptr<MCGlb::RandomUtil::Random> ran_gen_ptr_;
99104
std::shared_ptr<std::uniform_int_distribution<int>> rand_int_ptr_;
100105
int ncoll_ = -1;

0 commit comments

Comments
 (0)