@@ -34,13 +34,12 @@ MCGlauberWrapper::MCGlauberWrapper() {
34
34
35
35
36
36
void MCGlauberWrapper::InitTask () {
37
- parameter_list_.read_in_parameters_from_file (" mcglauber.input" );
38
- // int ran_seed = parameter_list_.get_seed();
39
37
auto ran_seed = (*GetMt19937Generator ())();
40
- auto gamma_beta = parameter_list_.get_tau_form_fluct_gamma_beta ();
41
38
39
+ int argc = 0 ;
40
+ char * argv[1 ];
42
41
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));
44
43
45
44
// overwrite input options
46
45
double para_temp;
@@ -65,21 +64,19 @@ void MCGlauberWrapper::InitTask() {
65
64
para_temp = (
66
65
GetXMLElementDouble ({" IS" , " MCGlauber" , " ylossParam4var" }));
67
66
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" }));
70
69
mc_gen_->set_parameter (" remnant_energy_loss_fraction" , para_temp);
71
-
72
- // re-generate mc pointer
73
- mc_gen_->New_Para_pointer (ran_seed);
74
70
}
75
71
72
+
76
73
void MCGlauberWrapper::ClearTask () {
77
74
VERBOSE (1 ) << " clear initial condition vectors" ;
78
75
binary_collision_t_.clear ();
79
76
binary_collision_x_.clear ();
80
77
binary_collision_y_.clear ();
81
78
binary_collision_z_.clear ();
82
-
79
+ QCDStringList_. clear ();
83
80
}
84
81
85
82
@@ -115,7 +112,7 @@ void MCGlauberWrapper::ExecuteTask() {
115
112
116
113
void MCGlauberWrapper::SampleABinaryCollisionPoint (
117
114
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 ());
119
116
t = binary_collision_t_[rand_idx];
120
117
x = binary_collision_x_[rand_idx];
121
118
y = binary_collision_y_[rand_idx];
@@ -206,54 +203,74 @@ void MCGlauberWrapper::OutputHardPartonMomentum(double E, double px, double py,
206
203
<< " targ_parton_e_ " << targ_parton_e_
207
204
<< " targ_parton_pz_ " << targ_parton_pz_;
208
205
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." );
211
210
}
212
211
213
212
}
214
213
214
+
215
215
std::vector<double > MCGlauberWrapper::Get_quarks_pos_proj_lab () {
216
216
// get the x, y, z of the three valence quarks of colliding projectile
217
217
// 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
219
220
// 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_,
221
222
hard_parton_z_);
222
223
return (mc_gen_->GetQuarkPosProj ());
223
224
}
224
225
226
+
225
227
std::vector<double > MCGlauberWrapper::Get_quarks_pos_targ_lab () {
226
228
// get the x, y, z of the three valence quarks of colliding target
227
229
// 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
229
232
// 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_,
231
234
hard_parton_z_);
232
235
return (mc_gen_->GetQuarkPosTarg ());
233
236
}
234
237
238
+
235
239
std::vector<double > MCGlauberWrapper::Get_remnant_proj () {
236
240
// get the fout-momentum (E, px, py, pz) of the remnant in projectile
237
241
return (mc_gen_->GetRemMom_Proj ());
238
242
}
239
243
244
+
240
245
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
242
247
return (mc_gen_->GetRemMom_Targ ());
243
248
}
244
249
250
+
245
251
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_,
248
254
proj_parton_py_, proj_parton_pz_);
249
255
}
250
256
257
+
251
258
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_,
254
261
targ_parton_py_, targ_parton_pz_);
255
262
}
256
263
257
264
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." ;
259
276
}
0 commit comments