CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
gen::AMPTHadronizer Class Reference

#include <AMPTHadronizer.h>

Inheritance diagram for gen::AMPTHadronizer:
gen::BaseHadronizer

Public Member Functions

 AMPTHadronizer (const edm::ParameterSet &)
 
const char * classname () const
 
bool decay ()
 
bool declareSpecialSettings (const std::vector< std::string > &)
 
bool declareStableParticles (const std::vector< int > &)
 
void finalizeEvent ()
 
bool generatePartonsAndHadronize ()
 
bool hadronize ()
 
bool initializeForExternalPartons ()
 
bool initializeForInternalPartons ()
 
bool readSettings (int)
 
bool residualDecay ()
 
void statistics ()
 
 ~AMPTHadronizer () override
 
- Public Member Functions inherited from gen::BaseHadronizer
 BaseHadronizer (edm::ParameterSet const &ps)
 
void cleanLHE ()
 
void generateLHE (edm::LuminosityBlock const &lumi, CLHEP::HepRandomEngine *rengine, unsigned int ncpu)
 
edm::EventgetEDMEvent () const
 
std::unique_ptr< HepMC::GenEventgetGenEvent ()
 
std::unique_ptr< HepMC3::GenEvent > getGenEvent3 ()
 
std::unique_ptr< GenEventInfoProductgetGenEventInfo ()
 
std::unique_ptr< GenEventInfoProduct3getGenEventInfo3 ()
 
virtual std::unique_ptr< GenLumiInfoHeadergetGenLumiInfoHeader () const
 
GenRunInfoProductgetGenRunInfo ()
 
std::unique_ptr< lhef::LHEEventgetLHEEvent ()
 
const std::shared_ptr< lhef::LHERunInfo > & getLHERunInfo () const
 
unsigned int getVHepMC ()
 
const std::string & gridpackPath () const
 
int randomIndex () const
 
const std::string & randomInitConfigDescription () const
 
void randomizeIndex (edm::LuminosityBlock const &lumi, CLHEP::HepRandomEngine *rengine)
 
void resetEvent (std::unique_ptr< HepMC::GenEvent > event)
 
void resetEvent3 (std::unique_ptr< HepMC3::GenEvent > event3)
 
void resetEventInfo (std::unique_ptr< GenEventInfoProduct > eventInfo)
 
void resetEventInfo3 (std::unique_ptr< GenEventInfoProduct3 > eventInfo)
 
virtual bool select (HepMC::GenEvent *) const
 
void setEDMEvent (edm::Event &event)
 
void setLHEEvent (std::unique_ptr< lhef::LHEEvent > event)
 
void setLHERunInfo (std::unique_ptr< lhef::LHERunInfo > runInfo)
 
void setRandomEngine (CLHEP::HepRandomEngine *v)
 
std::vector< std::string > const & sharedResources () const
 
virtual ~BaseHadronizer () noexcept(false)
 

Private Member Functions

void add_heavy_ion_rec (HepMC::GenEvent *evt)
 
bool ampt_init (const edm::ParameterSet &pset)
 
HepMC::GenParticle * build_ampt (int index, int barcode)
 
HepMC::GenVertex * build_ampt_vertex (int i, int id)
 
bool call_amptset (double efrm, std::string frame, std::string proj, std::string targ, int iap, int izp, int iat, int izt)
 
void doSetRandomEngine (CLHEP::HepRandomEngine *v) override
 
bool get_particles (HepMC::GenEvent *evt)
 
void rotateEvtPlane ()
 

Private Attributes

double alpha_
 
int amptmode_
 
double bmax_
 
double bmin_
 
double cosphi0_
 
int deuteronfactor_
 
int deuteronmode_
 
int deuteronxsec_
 
int diquarkembedding_
 
double diquarkpx_
 
double diquarkpy_
 
double diquarkx_
 
double diquarky_
 
int doInitialAndFinalRadiation_
 
double dpcoal_
 
double drcoal_
 
double dt_
 
double efrm_
 
HepMC::GenEventevt
 
std::string frame_
 
int iap_
 
int iat_
 
int izp_
 
int izpc_
 
int izt_
 
bool ks0decay_
 
int ktkick_
 
int maxmiss_
 
double minijetpt_
 
double mu_
 
int nsembd_
 
int ntmax_
 
double phi0_
 
bool phidecay_
 
bool popcornmode_
 
double popcornpar_
 
std::string proj_
 
double psembd_
 
edm::ParameterSet pset_
 
double pthard_
 
bool quenchingmode_
 
double quenchingpar_
 
bool rotate_
 
double shadowingfactor_
 
bool shadowingmode_
 
bool shadowingmodflag_
 
double sinphi0_
 
double stringFragA_
 
double stringFragB_
 
std::string targ_
 
double tmaxembd_
 

Additional Inherited Members

- Protected Member Functions inherited from gen::BaseHadronizer
std::unique_ptr< HepMC::GenEvent > & event ()
 
std::unique_ptr< HepMC3::GenEvent > & event3 ()
 
std::unique_ptr< GenEventInfoProduct > & eventInfo ()
 
std::unique_ptr< GenEventInfoProduct3 > & eventInfo3 ()
 
lhef::LHEEventlheEvent ()
 
lhef::LHERunInfolheRunInfo ()
 
GenRunInfoProductrunInfo ()
 
- Protected Attributes inherited from gen::BaseHadronizer
unsigned int ivhepmc = 2
 
std::string lheFile_
 
int randomIndex_
 

Detailed Description

Definition at line 32 of file AMPTHadronizer.h.

Constructor & Destructor Documentation

◆ AMPTHadronizer()

AMPTHadronizer::AMPTHadronizer ( const edm::ParameterSet pset)

Definition at line 40 of file AMPTHadronizer.cc.

42  evt(nullptr),
43  pset_(pset),
44  bmax_(pset.getParameter<double>("bMax")),
45  bmin_(pset.getParameter<double>("bMin")),
46  efrm_(pset.getParameter<double>("comEnergy")),
47  frame_(pset.getParameter<string>("frame")),
48  proj_(pset.getParameter<string>("proj")),
49  targ_(pset.getParameter<string>("targ")),
50  iap_(pset.getParameter<int>("iap")),
51  izp_(pset.getParameter<int>("izp")),
52  iat_(pset.getParameter<int>("iat")),
53  izt_(pset.getParameter<int>("izt")),
54  amptmode_(pset.getParameter<int>("amptmode")),
55  ntmax_(pset.getParameter<int>("ntmax")),
56  dt_(pset.getParameter<double>("dt")),
57  stringFragA_(pset.getParameter<double>("stringFragA")),
58  stringFragB_(pset.getParameter<double>("stringFragB")),
59  popcornmode_(pset.getParameter<bool>("popcornmode")),
60  popcornpar_(pset.getParameter<double>("popcornpar")),
61  shadowingmode_(pset.getParameter<bool>("shadowingmode")),
62  quenchingmode_(pset.getParameter<bool>("quenchingmode")),
63  quenchingpar_(pset.getParameter<double>("quenchingpar")),
64  pthard_(pset.getParameter<double>("pthard")),
65  mu_(pset.getParameter<double>("mu")),
66  izpc_(pset.getParameter<int>("izpc")),
67  alpha_(pset.getParameter<double>("alpha")),
68  dpcoal_(pset.getParameter<double>("dpcoal")),
69  drcoal_(pset.getParameter<double>("drcoal")),
70  ks0decay_(pset.getParameter<bool>("ks0decay")),
71  phidecay_(pset.getParameter<bool>("phidecay")),
72  deuteronmode_(pset.getParameter<int>("deuteronmode")),
73  deuteronfactor_(pset.getParameter<int>("deuteronfactor")),
74  deuteronxsec_(pset.getParameter<int>("deuteronxsec")),
75  minijetpt_(pset.getParameter<double>("minijetpt")),
76  maxmiss_(pset.getParameter<int>("maxmiss")),
77  doInitialAndFinalRadiation_(pset.getParameter<int>("doInitialAndFinalRadiation")),
78  ktkick_(pset.getParameter<int>("ktkick")),
79  diquarkembedding_(pset.getParameter<int>("diquarkembedding")),
80  diquarkpx_(pset.getParameter<double>("diquarkpx")),
81  diquarkpy_(pset.getParameter<double>("diquarkpy")),
82  diquarkx_(pset.getParameter<double>("diquarkx")),
83  diquarky_(pset.getParameter<double>("diquarky")),
84  phi0_(0.),
85  sinphi0_(0.),
86  cosphi0_(1.),
87  rotate_(pset.getParameter<bool>("rotateEventPlane")) {}
HepMC::GenEvent * evt
BaseHadronizer(edm::ParameterSet const &ps)
edm::ParameterSet pset_

◆ ~AMPTHadronizer()

AMPTHadronizer::~AMPTHadronizer ( )
override

Definition at line 90 of file AMPTHadronizer.cc.

90 {}

Member Function Documentation

◆ add_heavy_ion_rec()

void AMPTHadronizer::add_heavy_ion_rec ( HepMC::GenEvent evt)
private

Definition at line 96 of file AMPTHadronizer.cc.

References evt, hmain1, hparnt, and phi0_.

Referenced by generatePartonsAndHadronize().

96  {
97  // heavy ion record in the final CMSSW Event
98  HepMC::HeavyIon* hi = new HepMC::HeavyIon(hmain1.jatt, // Ncoll_hard/N of SubEvents
99  hmain1.np, // Npart_proj
100  hmain1.nt, // Npart_targ
101  hmain1.n0 + hmain1.n01 + hmain1.n10 + hmain1.n11, // Ncoll
102  0, // spectator_neutrons
103  0, // spectator_protons
104  hmain1.n01, // N_Nwounded_collisions
105  hmain1.n10, // Nwounded_N_collisions
106  hmain1.n11, // Nwounded_Nwounded_collisions
107  hparnt.hint1[18], // impact_parameter in [fm]
108  phi0_, // event_plane_angle
109  0, // eccentricity
110  hparnt.hint1[11] // sigma_inel_NN
111  );
112  evt->set_heavy_ion(*hi);
113  delete hi;
114 }
HepMC::GenEvent * evt
#define hparnt
Definition: AMPTWrapper.h:70
Definition: EPCuts.h:4
#define hmain1
Definition: AMPTWrapper.h:50

◆ ampt_init()

bool AMPTHadronizer::ampt_init ( const edm::ParameterSet pset)
private

Definition at line 239 of file AMPTHadronizer.cc.

References alpha_, amptmode_, anim, coal, deuteronfactor_, deuteronmode_, deuteronxsec_, diquarkembedding_, diquarkpx_, diquarkpy_, diquarkx_, diquarky_, doInitialAndFinalRadiation_, dpcoal_, drcoal_, dt_, embed, hparnt, input1, input2, izpc_, ks0decay_, ktkick_, ludat1, maxmiss_, minijetpt_, mu_, ntmax_, para2, para8, phidcy, phidecay_, popcorn, popcornmode_, popcornpar_, pthard_, quenchingmode_, quenchingpar_, resdcy, shadowingmode_, stringFragA_, and stringFragB_.

Referenced by initializeForInternalPartons().

239  {
240  anim.isoft = amptmode_;
241  input2.ntmax = ntmax_;
242  input1.dt = dt_;
243  ludat1.parj[40] = stringFragA_;
244  ludat1.parj[41] = stringFragB_;
245  popcorn.ipop = popcornmode_;
246  ludat1.parj[4] = popcornpar_;
247  hparnt.ihpr2[5] = shadowingmode_;
248  hparnt.ihpr2[3] = quenchingmode_;
249  hparnt.hipr1[13] = quenchingpar_;
250  hparnt.hipr1[7] = pthard_;
251  para2.xmu = mu_;
252  anim.izpc = izpc_;
253  para2.alpha = alpha_;
254  coal.dpcoal = dpcoal_;
255  coal.drcoal = drcoal_;
256  resdcy.iksdcy = ks0decay_;
257  phidcy.iphidcy = phidecay_;
258  para8.idpert = deuteronmode_;
259  para8.npertd = deuteronfactor_;
260  para8.idxsec = deuteronxsec_;
261  phidcy.pttrig = minijetpt_;
262  phidcy.maxmiss = maxmiss_;
264  hparnt.ihpr2[4] = ktkick_;
265  embed.iembed = diquarkembedding_;
266  embed.pxqembd = diquarkpx_;
267  embed.pyqembd = diquarkpy_;
268  embed.xembd = diquarkx_;
269  embed.yembd = diquarky_;
270 
271  return true;
272 }
#define popcorn
Definition: AMPTWrapper.h:195
#define ludat1
Definition: AMPTWrapper.h:80
#define phidcy
Definition: AMPTWrapper.h:177
#define hparnt
Definition: AMPTWrapper.h:70
#define anim
Definition: AMPTWrapper.h:90
#define input2
Definition: AMPTWrapper.h:159
#define embed
Definition: AMPTWrapper.h:188
#define resdcy
Definition: AMPTWrapper.h:167
#define para2
Definition: AMPTWrapper.h:110
#define input1
Definition: AMPTWrapper.h:139
#define para8
Definition: AMPTWrapper.h:128
#define coal
Definition: AMPTWrapper.h:99

◆ build_ampt()

HepMC::GenParticle * AMPTHadronizer::build_ampt ( int  index,
int  barcode 
)
private

Definition at line 117 of file AMPTHadronizer.cc.

References cosphi0_, MillePedeFileConverter_cfg::e, GenParticle::GenParticle, hbt, INVFLV, visualization-live-secondInstance_cfg::m, gen::p, multPhiCorr_741_25nsDY_cfi::px, multPhiCorr_741_25nsDY_cfi::py, sinphi0_, mathSSE::sqrt(), and mps_update::status.

Referenced by get_particles().

117  {
118  // Build particle object corresponding to index in ampt
119 
120  float px0 = hbt.plast[index][0];
121  float py0 = hbt.plast[index][1];
122  float pz0 = hbt.plast[index][2];
123  float m = hbt.plast[index][3];
124 
125  float px = px0 * cosphi0_ - py0 * sinphi0_;
126  float py = py0 * cosphi0_ + px0 * sinphi0_;
127  float pz = pz0;
128  float e = sqrt(px * px + py * py + pz * pz + m * m);
129  int status = 1;
130 
131  HepMC::GenParticle* p = new HepMC::GenParticle(HepMC::FourVector(px, py, pz, e),
132  INVFLV(hbt.lblast[index]), // id
133  status // status
134  );
135 
136  p->suggest_barcode(barcode);
137  return p;
138 }
#define hbt
Definition: AMPTWrapper.h:60
double p[5][pyjets_maxn]
T sqrt(T t)
Definition: SSEVec.h:23
#define INVFLV
Definition: AMPTWrapper.h:34

◆ build_ampt_vertex()

HepMC::GenVertex * AMPTHadronizer::build_ampt_vertex ( int  i,
int  id 
)
private

Definition at line 141 of file AMPTHadronizer.cc.

References bphysicsOniaDQM_cfi::vertex.

Referenced by get_particles().

141  {
142  // build verteces for the ampt stored events
143  HepMC::GenVertex* vertex = new HepMC::GenVertex(HepMC::FourVector(0, 0, 0, 0), id);
144  return vertex;
145 }

◆ call_amptset()

bool AMPTHadronizer::call_amptset ( double  efrm,
std::string  frame,
std::string  proj,
std::string  targ,
int  iap,
int  izp,
int  iat,
int  izt 
)
private

Definition at line 228 of file AMPTHadronizer.cc.

References AMPTSET, amptDefault_cfi::iap, amptDefault_cfi::iat, amptDefault_cfi::izp, amptDefault_cfi::izt, amptDefault_cfi::proj, and amptDefault_cfi::targ.

Referenced by initializeForInternalPartons().

229  {
230  // initialize hydjet
231  frame.resize(4, ' ');
232  proj.resize(4, ' ');
233  targ.resize(4, ' ');
234  AMPTSET(
235  efrm, frame.data(), proj.data(), targ.data(), iap, izp, iat, izt, frame.length(), proj.length(), targ.length());
236  return true;
237 }
#define AMPTSET
Definition: AMPTWrapper.h:24

◆ classname()

const char * AMPTHadronizer::classname ( ) const

Definition at line 310 of file AMPTHadronizer.cc.

310 { return "gen::AMPTHadronizer"; }

◆ decay()

bool AMPTHadronizer::decay ( )

Definition at line 302 of file AMPTHadronizer.cc.

302 { return true; }

◆ declareSpecialSettings()

bool gen::AMPTHadronizer::declareSpecialSettings ( const std::vector< std::string > &  )
inline

Definition at line 45 of file AMPTHadronizer.h.

45 { return true; }

◆ declareStableParticles()

bool AMPTHadronizer::declareStableParticles ( const std::vector< int > &  pdg)

Definition at line 288 of file AMPTHadronizer.cc.

288 { return true; }

◆ doSetRandomEngine()

void AMPTHadronizer::doSetRandomEngine ( CLHEP::HepRandomEngine *  v)
overrideprivatevirtual

Reimplemented from gen::BaseHadronizer.

Definition at line 93 of file AMPTHadronizer.cc.

References amptRandomEngine, and gen::v.

93 { amptRandomEngine = v; }
double v[5][pyjets_maxn]
static CLHEP::HepRandomEngine * amptRandomEngine

◆ finalizeEvent()

void AMPTHadronizer::finalizeEvent ( )

Definition at line 306 of file AMPTHadronizer.cc.

306 { return; }

◆ generatePartonsAndHadronize()

bool AMPTHadronizer::generatePartonsAndHadronize ( )

Definition at line 147 of file AMPTHadronizer.cc.

References add_heavy_ion_rec(), AMPT, bmax_, bmin_, gen::BaseHadronizer::event(), evt, frame_, get_particles(), rotate_, and rotateEvtPlane().

147  {
148  // generate single event
149  if (rotate_)
150  rotateEvtPlane();
151 
152  // generate a AMPT event
153  AMPT(frame_.c_str(), bmin_, bmax_, frame_.length());
154 
155  // event information
158 
160 
161  event().reset(evt);
162 
163  return true;
164 }
#define AMPT
Definition: AMPTWrapper.h:29
HepMC::GenEvent * evt
void add_heavy_ion_rec(HepMC::GenEvent *evt)
std::unique_ptr< HepMC::GenEvent > & event()
bool get_particles(HepMC::GenEvent *evt)

◆ get_particles()

bool AMPTHadronizer::get_particles ( HepMC::GenEvent evt)
private

Definition at line 167 of file AMPTHadronizer.cc.

References build_ampt(), build_ampt_vertex(), evt, GenParticle::GenParticle, hbt, mps_fire::i, LogDebug, and ecalTrigSettings_cff::particles.

Referenced by generatePartonsAndHadronize().

167  {
168  HepMC::GenVertex* vertice;
169 
170  vector<HepMC::GenParticle*> particles;
171  vector<int> mother_ids;
172  vector<HepMC::GenVertex*> prods;
173 
174  vertice = new HepMC::GenVertex(HepMC::FourVector(0, 0, 0, 0), 0);
175  evt->add_vertex(vertice);
176  if (!evt->signal_process_vertex())
177  evt->set_signal_process_vertex(vertice);
178 
179  const unsigned int knumpart = hbt.nlast;
180  for (unsigned int ipart = 0; ipart < knumpart; ipart++) {
181  int mid = 0;
182  particles.push_back(build_ampt(ipart, ipart + 1));
183  prods.push_back(build_ampt_vertex(ipart, 0));
184  mother_ids.push_back(mid);
185  LogDebug("DecayChain") << "Mother index : " << mid;
186  }
187 
188  LogDebug("AMPT") << "Number of particles in vector " << particles.size();
189 
190  for (unsigned int ipart = 0; ipart < particles.size(); ipart++) {
192 
193  int mid = mother_ids[ipart];
194  LogDebug("DecayChain") << "Particle " << ipart;
195  LogDebug("DecayChain") << "Mother's ID " << mid;
196  LogDebug("DecayChain") << "Particle's PDG ID " << part->pdg_id();
197 
198  if (mid <= 0) {
199  vertice->add_particle_out(part);
200  continue;
201  }
202 
203  if (mid > 0) {
204  HepMC::GenParticle* mother = particles[mid];
205  LogDebug("DecayChain") << "Mother's PDG ID " << mother->pdg_id();
206 
207  HepMC::GenVertex* prod_vertex = mother->end_vertex();
208  if (!prod_vertex) {
209  prod_vertex = prods[ipart];
210  prod_vertex->add_particle_in(mother);
211  evt->add_vertex(prod_vertex);
212  prods[ipart] = nullptr; // mark to protect deletion
213  }
214  prod_vertex->add_particle_out(part);
215  }
216  }
217 
218  // cleanup vertices not assigned to evt
219  for (unsigned int i = 0; i < prods.size(); i++) {
220  if (prods[i])
221  delete prods[i];
222  }
223 
224  return true;
225 }
HepMC::GenEvent * evt
#define hbt
Definition: AMPTWrapper.h:60
part
Definition: HCALResponse.h:20
HepMC::GenParticle * build_ampt(int index, int barcode)
HepMC::GenVertex * build_ampt_vertex(int i, int id)
#define LogDebug(id)

◆ hadronize()

bool AMPTHadronizer::hadronize ( )

Definition at line 300 of file AMPTHadronizer.cc.

300 { return false; }

◆ initializeForExternalPartons()

bool gen::AMPTHadronizer::initializeForExternalPartons ( )

◆ initializeForInternalPartons()

bool AMPTHadronizer::initializeForInternalPartons ( )

Definition at line 275 of file AMPTHadronizer.cc.

References ampt_init(), call_amptset(), efrm_, frame_, iap_, iat_, izp_, izt_, proj_, pset_, and targ_.

275  {
276  // ampt running options
277  ampt_init(pset_);
278 
279  // initialize ampt
280  LogInfo("AMPTinAction") << "##### Calling AMPTSET(" << efrm_ << "," << frame_ << "," << proj_ << "," << targ_ << ","
281  << iap_ << "," << izp_ << "," << iat_ << "," << izt_ << ") ####";
282 
284 
285  return true;
286 }
bool call_amptset(double efrm, std::string frame, std::string proj, std::string targ, int iap, int izp, int iat, int izt)
edm::ParameterSet pset_
Log< level::Info, false > LogInfo
bool ampt_init(const edm::ParameterSet &pset)

◆ readSettings()

bool gen::AMPTHadronizer::readSettings ( int  )
inline

Definition at line 41 of file AMPTHadronizer.h.

41 { return true; }

◆ residualDecay()

bool AMPTHadronizer::residualDecay ( )

Definition at line 304 of file AMPTHadronizer.cc.

304 { return true; }

◆ rotateEvtPlane()

void AMPTHadronizer::rotateEvtPlane ( )
private

Definition at line 291 of file AMPTHadronizer.cc.

References funct::cos(), cosphi0_, phi0_, pi, gen::ranart_(), funct::sin(), sinphi0_, and SiPixelPI::zero.

Referenced by generatePartonsAndHadronize().

291  {
292  int zero = 0;
293  double test = (double)gen::ranart_(&zero);
294  phi0_ = 2. * pi * test - pi;
295  sinphi0_ = sin(phi0_);
296  cosphi0_ = cos(phi0_);
297 }
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
static const double pi
float ranart_(int *)
Cos< T >::type cos(const T &t)
Definition: Cos.h:22

◆ statistics()

void AMPTHadronizer::statistics ( )

Definition at line 308 of file AMPTHadronizer.cc.

308 { return; }

Member Data Documentation

◆ alpha_

double gen::AMPTHadronizer::alpha_
private

Definition at line 91 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ amptmode_

int gen::AMPTHadronizer::amptmode_
private

Definition at line 78 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ bmax_

double gen::AMPTHadronizer::bmax_
private

Definition at line 66 of file AMPTHadronizer.h.

Referenced by generatePartonsAndHadronize().

◆ bmin_

double gen::AMPTHadronizer::bmin_
private

Definition at line 68 of file AMPTHadronizer.h.

Referenced by generatePartonsAndHadronize().

◆ cosphi0_

double gen::AMPTHadronizer::cosphi0_
private

Definition at line 115 of file AMPTHadronizer.h.

Referenced by build_ampt(), and rotateEvtPlane().

◆ deuteronfactor_

int gen::AMPTHadronizer::deuteronfactor_
private

Definition at line 97 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ deuteronmode_

int gen::AMPTHadronizer::deuteronmode_
private

Definition at line 96 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ deuteronxsec_

int gen::AMPTHadronizer::deuteronxsec_
private

Definition at line 98 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ diquarkembedding_

int gen::AMPTHadronizer::diquarkembedding_
private

Definition at line 103 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ diquarkpx_

double gen::AMPTHadronizer::diquarkpx_
private

Definition at line 104 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ diquarkpy_

double gen::AMPTHadronizer::diquarkpy_
private

Definition at line 105 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ diquarkx_

double gen::AMPTHadronizer::diquarkx_
private

Definition at line 106 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ diquarky_

double gen::AMPTHadronizer::diquarky_
private

Definition at line 107 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ doInitialAndFinalRadiation_

int gen::AMPTHadronizer::doInitialAndFinalRadiation_
private

Definition at line 101 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ dpcoal_

double gen::AMPTHadronizer::dpcoal_
private

Definition at line 92 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ drcoal_

double gen::AMPTHadronizer::drcoal_
private

Definition at line 93 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ dt_

double gen::AMPTHadronizer::dt_
private

Definition at line 80 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ efrm_

double gen::AMPTHadronizer::efrm_
private

Definition at line 70 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ evt

HepMC::GenEvent* gen::AMPTHadronizer::evt
private

Definition at line 64 of file AMPTHadronizer.h.

Referenced by add_heavy_ion_rec(), generatePartonsAndHadronize(), and get_particles().

◆ frame_

std::string gen::AMPTHadronizer::frame_
private

Definition at line 71 of file AMPTHadronizer.h.

Referenced by generatePartonsAndHadronize(), and initializeForInternalPartons().

◆ iap_

int gen::AMPTHadronizer::iap_
private

Definition at line 74 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ iat_

int gen::AMPTHadronizer::iat_
private

Definition at line 76 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ izp_

int gen::AMPTHadronizer::izp_
private

Definition at line 75 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ izpc_

int gen::AMPTHadronizer::izpc_
private

Definition at line 90 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ izt_

int gen::AMPTHadronizer::izt_
private

Definition at line 77 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ ks0decay_

bool gen::AMPTHadronizer::ks0decay_
private

Definition at line 94 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ ktkick_

int gen::AMPTHadronizer::ktkick_
private

Definition at line 102 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ maxmiss_

int gen::AMPTHadronizer::maxmiss_
private

Definition at line 100 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ minijetpt_

double gen::AMPTHadronizer::minijetpt_
private

Definition at line 99 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ mu_

double gen::AMPTHadronizer::mu_
private

Definition at line 89 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ nsembd_

int gen::AMPTHadronizer::nsembd_
private

Definition at line 108 of file AMPTHadronizer.h.

◆ ntmax_

int gen::AMPTHadronizer::ntmax_
private

Definition at line 79 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ phi0_

double gen::AMPTHadronizer::phi0_
private

Definition at line 113 of file AMPTHadronizer.h.

Referenced by add_heavy_ion_rec(), and rotateEvtPlane().

◆ phidecay_

bool gen::AMPTHadronizer::phidecay_
private

Definition at line 95 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ popcornmode_

bool gen::AMPTHadronizer::popcornmode_
private

Definition at line 83 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ popcornpar_

double gen::AMPTHadronizer::popcornpar_
private

Definition at line 84 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ proj_

std::string gen::AMPTHadronizer::proj_
private

Definition at line 72 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ psembd_

double gen::AMPTHadronizer::psembd_
private

Definition at line 109 of file AMPTHadronizer.h.

◆ pset_

edm::ParameterSet gen::AMPTHadronizer::pset_
private

Definition at line 65 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ pthard_

double gen::AMPTHadronizer::pthard_
private

Definition at line 88 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ quenchingmode_

bool gen::AMPTHadronizer::quenchingmode_
private

Definition at line 86 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ quenchingpar_

double gen::AMPTHadronizer::quenchingpar_
private

Definition at line 87 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ rotate_

bool gen::AMPTHadronizer::rotate_
private

Definition at line 116 of file AMPTHadronizer.h.

Referenced by generatePartonsAndHadronize().

◆ shadowingfactor_

double gen::AMPTHadronizer::shadowingfactor_
private

Definition at line 112 of file AMPTHadronizer.h.

◆ shadowingmode_

bool gen::AMPTHadronizer::shadowingmode_
private

Definition at line 85 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ shadowingmodflag_

bool gen::AMPTHadronizer::shadowingmodflag_
private

Definition at line 111 of file AMPTHadronizer.h.

◆ sinphi0_

double gen::AMPTHadronizer::sinphi0_
private

Definition at line 114 of file AMPTHadronizer.h.

Referenced by build_ampt(), and rotateEvtPlane().

◆ stringFragA_

double gen::AMPTHadronizer::stringFragA_
private

Definition at line 81 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ stringFragB_

double gen::AMPTHadronizer::stringFragB_
private

Definition at line 82 of file AMPTHadronizer.h.

Referenced by ampt_init().

◆ targ_

std::string gen::AMPTHadronizer::targ_
private

Definition at line 73 of file AMPTHadronizer.h.

Referenced by initializeForInternalPartons().

◆ tmaxembd_

double gen::AMPTHadronizer::tmaxembd_
private

Definition at line 110 of file AMPTHadronizer.h.