CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Protected Attributes | Private Attributes
gen::Py8GunBase Class Reference

#include <Py8GunBase.h>

Inheritance diagram for gen::Py8GunBase:
gen::Py8InterfaceBase gen::Py8EGun gen::Py8JetGun gen::Py8PtGun

Public Member Functions

void finalizeEvent ()
 
edm::EventgetEDMEvent () const
 
HepMC::GenEvent * getGenEvent ()
 
GenEventInfoProductgetGenEventInfo ()
 
GenRunInfoProductgetGenRunInfo ()
 
bool initializeForInternalPartons ()
 
 Py8GunBase (edm::ParameterSet const &ps)
 
void resetEvent (HepMC::GenEvent *event)
 
void resetEventInfo (GenEventInfoProduct *eventInfo)
 
virtual bool residualDecay ()
 
virtual bool select (HepMC::GenEvent *) const
 
void setEDMEvent (edm::Event &event)
 
void statistics ()
 
 ~Py8GunBase ()
 
- Public Member Functions inherited from gen::Py8InterfaceBase
virtual const char * classname () const =0
 
bool decay ()
 
bool declareSpecialSettings (const std::vector< std::string > &)
 
bool declareStableParticles (const std::vector< int > &)
 
virtual bool generatePartonsAndHadronize ()=0
 
 Py8InterfaceBase (edm::ParameterSet const &ps)
 
bool readSettings (int)
 
 ~Py8InterfaceBase ()
 

Protected Member Functions

std::auto_ptr< HepMC::GenEvent > & event ()
 
std::auto_ptr
< GenEventInfoProduct > & 
eventInfo ()
 
GenRunInfoProductrunInfo ()
 

Protected Attributes

double fMaxPhi
 
double fMinPhi
 
std::vector< int > fPartIDs
 
- Protected Attributes inherited from gen::Py8InterfaceBase
std::auto_ptr< Pythia8::Pythia > fDecayer
 
std::auto_ptr< Pythia8::Pythia > fMasterGen
 
ParameterCollector fParameters
 
unsigned int maxEventsToPrint
 
bool pythiaHepMCVerbosity
 
unsigned int pythiaPylistVerbosity
 
HepMC::I_Pythia8 toHepMC
 

Private Attributes

edm::EventedmEvent_
 
std::auto_ptr< HepMC::GenEvent > genEvent_
 
std::auto_ptr
< GenEventInfoProduct
genEventInfo_
 
GenRunInfoProduct genRunInfo_
 

Detailed Description

Definition at line 25 of file Py8GunBase.h.

Constructor & Destructor Documentation

gen::Py8GunBase::Py8GunBase ( edm::ParameterSet const &  ps)

Definition at line 9 of file Py8GunBase.cc.

References fMaxPhi, fMinPhi, fPartIDs, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), runInfo(), GenRunInfoProduct::setExternalXSecLO(), GenRunInfoProduct::setExternalXSecNLO(), and GenRunInfoProduct::setFilterEfficiency().

10  : Py8InterfaceBase(ps)
11 {
12 
14  ps.getUntrackedParameter<double>("filterEfficiency", -1.) );
16  GenRunInfoProduct::XSec(ps.getUntrackedParameter<double>("crossSection", -1.)) );
18  GenRunInfoProduct::XSec(ps.getUntrackedParameter<double>("crossSectionNLO", -1.)) );
19 
20 
21  // PGun specs
22  //
23  edm::ParameterSet pgun_params =
24  ps.getParameter<edm::ParameterSet>("PGunParameters");
25 
26  // although there's the method ParameterSet::empty(),
27  // it looks like it's NOT even necessary to check if it is,
28  // before trying to extract parameters - if it is empty,
29  // the default values seem to be taken
30  //
31  fPartIDs = pgun_params.getParameter< std::vector<int> >("ParticleID");
32  fMinPhi = pgun_params.getParameter<double>("MinPhi"); // ,-3.14159265358979323846);
33  fMaxPhi = pgun_params.getParameter<double>("MaxPhi"); // , 3.14159265358979323846);
34 
35 }
T getParameter(std::string const &) const
void setFilterEfficiency(double effic)
double fMinPhi
Definition: Py8GunBase.h:56
Py8InterfaceBase(edm::ParameterSet const &ps)
std::vector< int > fPartIDs
Definition: Py8GunBase.h:55
double fMaxPhi
Definition: Py8GunBase.h:57
void setExternalXSecNLO(const XSec &xsec)
GenRunInfoProduct & runInfo()
Definition: Py8GunBase.h:49
void setExternalXSecLO(const XSec &xsec)
gen::Py8GunBase::~Py8GunBase ( )
inline

Definition at line 28 of file Py8GunBase.h.

28 {}

Member Function Documentation

std::auto_ptr<HepMC::GenEvent>& gen::Py8GunBase::event ( )
inlineprotected
std::auto_ptr<GenEventInfoProduct>& gen::Py8GunBase::eventInfo ( )
inlineprotected

Definition at line 51 of file Py8GunBase.h.

References genEventInfo_.

51 { return genEventInfo_; }
std::auto_ptr< GenEventInfoProduct > genEventInfo_
Definition: Py8GunBase.h:62
void gen::Py8GunBase::finalizeEvent ( )
virtual

Implements gen::Py8InterfaceBase.

Definition at line 138 of file Py8GunBase.cc.

References gather_cfg::cout, event(), gen::Py8InterfaceBase::fMasterGen, gen::Py8InterfaceBase::maxEventsToPrint, gen::Py8InterfaceBase::pythiaHepMCVerbosity, and gen::Py8InterfaceBase::pythiaPylistVerbosity.

139 {
140 
141 
142 // FIXME !!!
143 
144  //******** Verbosity ********
145 
146  if (maxEventsToPrint > 0 &&
148  {
151  {
152  fMasterGen->info.list(std::cout);
153  fMasterGen->event.list(std::cout);
154  }
155 
157  {
158  std::cout << "Event process = "
159  << fMasterGen->info.code() << "\n"
160  << "----------------------" << std::endl;
161  event()->print();
162  }
163  }
164 
165  return;
166 }
std::auto_ptr< Pythia8::Pythia > fMasterGen
unsigned int pythiaPylistVerbosity
std::auto_ptr< HepMC::GenEvent > & event()
Definition: Py8GunBase.h:50
unsigned int maxEventsToPrint
tuple cout
Definition: gather_cfg.py:121
edm::Event& gen::Py8GunBase::getEDMEvent ( ) const
inline

Definition at line 40 of file Py8GunBase.h.

References edmEvent_.

40 { return *edmEvent_; }
edm::Event * edmEvent_
Definition: Py8GunBase.h:64
HepMC::GenEvent* gen::Py8GunBase::getGenEvent ( )
inline

Definition at line 32 of file Py8GunBase.h.

References genEvent_.

32 { return genEvent_.release(); }
std::auto_ptr< HepMC::GenEvent > genEvent_
Definition: Py8GunBase.h:61
GenEventInfoProduct* gen::Py8GunBase::getGenEventInfo ( )
inline

Definition at line 33 of file Py8GunBase.h.

References genEventInfo_.

33 { return genEventInfo_.release(); }
std::auto_ptr< GenEventInfoProduct > genEventInfo_
Definition: Py8GunBase.h:62
GenRunInfoProduct& gen::Py8GunBase::getGenRunInfo ( )
inline

Definition at line 31 of file Py8GunBase.h.

References genRunInfo_.

31 { return genRunInfo_; }
GenRunInfoProduct genRunInfo_
Definition: Py8GunBase.h:60
bool gen::Py8GunBase::initializeForInternalPartons ( )
virtual

Implements gen::Py8InterfaceBase.

Definition at line 39 of file Py8GunBase.cc.

References gen::Py8InterfaceBase::fDecayer, and gen::Py8InterfaceBase::fMasterGen.

40 {
41 
42  // NO MATTER what was this setting below, override it before init
43  // - this is essencial for the PGun mode
44 
45  // Key requirement: switch off ProcessLevel, and thereby also PartonLevel.
46  fMasterGen->readString("ProcessLevel:all = off");
47  fMasterGen->readString("Standalone:allowResDec=on");
48  // pythia->readString("ProcessLevel::resonanceDecays=on");
49  fMasterGen->init();
50 
51  // init decayer
52  fDecayer->readString("ProcessLevel:all = off"); // Same trick!
53  fDecayer->readString("Standalone:allowResDec=on");
54  // pythia->readString("ProcessLevel::resonanceDecays=on");
55  fDecayer->init();
56 
57  return true;
58 
59 }
std::auto_ptr< Pythia8::Pythia > fMasterGen
std::auto_ptr< Pythia8::Pythia > fDecayer
void gen::Py8GunBase::resetEvent ( HepMC::GenEvent *  event)
inline

Definition at line 35 of file Py8GunBase.h.

References genEvent_.

35 { genEvent_.reset(event); }
std::auto_ptr< HepMC::GenEvent > genEvent_
Definition: Py8GunBase.h:61
std::auto_ptr< HepMC::GenEvent > & event()
Definition: Py8GunBase.h:50
void gen::Py8GunBase::resetEventInfo ( GenEventInfoProduct eventInfo)
inline

Definition at line 36 of file Py8GunBase.h.

References genEventInfo_.

36 { genEventInfo_.reset(eventInfo); }
std::auto_ptr< GenEventInfoProduct > genEventInfo_
Definition: Py8GunBase.h:62
bool gen::Py8GunBase::residualDecay ( )
virtual

Definition at line 61 of file Py8GunBase.cc.

References event(), gen::Py8InterfaceBase::fDecayer, gen::Py8InterfaceBase::fMasterGen, and configurableAnalysis::GenParticle.

62 {
63 
64  Event* pythiaEvent = &(fMasterGen->event);
65 
66  int NPartsBeforeDecays = pythiaEvent->size()-1; // do NOT count the very 1st "system" particle
67  // in Pythia8::Event record; it does NOT even
68  // get translated by the HepMCInterface to the
69  // HepMC::GenEvent record !!!
70  int NPartsAfterDecays = event().get()->particles_size();
71  int NewBarcode = NPartsAfterDecays;
72 
73  for ( int ipart=NPartsAfterDecays; ipart>NPartsBeforeDecays; ipart-- )
74  {
75 
76  HepMC::GenParticle* part = event().get()->barcode_to_particle( ipart );
77 
78  if ( part->status() == 1 )
79  {
80  fDecayer->event.reset();
81  Particle py8part( part->pdg_id(), 93, 0, 0, 0, 0, 0, 0,
82  part->momentum().x(),
83  part->momentum().y(),
84  part->momentum().z(),
85  part->momentum().t(),
86  part->generated_mass() );
87  HepMC::GenVertex* ProdVtx = part->production_vertex();
88  py8part.vProd( ProdVtx->position().x(), ProdVtx->position().y(),
89  ProdVtx->position().z(), ProdVtx->position().t() );
90  py8part.tau( (fDecayer->particleData).tau0( part->pdg_id() ) );
91  fDecayer->event.append( py8part );
92  int nentries = fDecayer->event.size();
93  if ( !fDecayer->event[nentries-1].mayDecay() ) continue;
94  fDecayer->next();
95  int nentries1 = fDecayer->event.size();
96  if ( nentries1 <= nentries ) continue; //same number of particles, no decays...
97 
98  part->set_status(2);
99 
100  Particle& py8daughter = fDecayer->event[nentries]; // the 1st daughter
101  HepMC::GenVertex* DecVtx = new HepMC::GenVertex( HepMC::FourVector(py8daughter.xProd(),
102  py8daughter.yProd(),
103  py8daughter.zProd(),
104  py8daughter.tProd()) );
105 
106  DecVtx->add_particle_in( part ); // this will cleanup end_vertex if exists, replace with the new one
107  // I presume (vtx) barcode will be given automatically
108 
109  HepMC::FourVector pmom( py8daughter.px(), py8daughter.py(), py8daughter.pz(), py8daughter.e() );
110 
111  HepMC::GenParticle* daughter =
112  new HepMC::GenParticle( pmom, py8daughter.id(), 1 );
113 
114  NewBarcode++;
115  daughter->suggest_barcode( NewBarcode );
116  DecVtx->add_particle_out( daughter );
117 
118  for ( ipart=nentries+1; ipart<nentries1; ipart++ )
119  {
120  py8daughter = fDecayer->event[ipart];
121  HepMC::FourVector pmomN( py8daughter.px(), py8daughter.py(), py8daughter.pz(), py8daughter.e() );
122  HepMC::GenParticle* daughterN =
123  new HepMC::GenParticle( pmomN, py8daughter.id(), 1 );
124  NewBarcode++;
125  daughterN->suggest_barcode( NewBarcode );
126  DecVtx->add_particle_out( daughterN );
127  }
128 
129  event().get()->add_vertex( DecVtx );
130 
131  }
132  }
133 
134  return true;
135 
136 }
std::auto_ptr< Pythia8::Pythia > fMasterGen
std::auto_ptr< HepMC::GenEvent > & event()
Definition: Py8GunBase.h:50
part
Definition: HCALResponse.h:20
std::auto_ptr< Pythia8::Pythia > fDecayer
GenRunInfoProduct& gen::Py8GunBase::runInfo ( )
inlineprotected

Definition at line 49 of file Py8GunBase.h.

References genRunInfo_.

Referenced by Py8GunBase(), and statistics().

49 { return genRunInfo_; }
GenRunInfoProduct genRunInfo_
Definition: Py8GunBase.h:60
virtual bool gen::Py8GunBase::select ( HepMC::GenEvent *  ) const
inlinevirtual

Definition at line 41 of file Py8GunBase.h.

41 { return true;}
void gen::Py8GunBase::setEDMEvent ( edm::Event event)
inline

Definition at line 39 of file Py8GunBase.h.

References edmEvent_, and event().

39 { edmEvent_ = &event; }
edm::Event * edmEvent_
Definition: Py8GunBase.h:64
std::auto_ptr< HepMC::GenEvent > & event()
Definition: Py8GunBase.h:50
void gen::Py8GunBase::statistics ( )
virtual

Reimplemented from gen::Py8InterfaceBase.

Definition at line 168 of file Py8GunBase.cc.

References gen::Py8InterfaceBase::fMasterGen, runInfo(), and GenRunInfoProduct::setInternalXSec().

169 {
170 
171  fMasterGen->statistics();
172 
173  double xsec = fMasterGen->info.sigmaGen(); // cross section in mb
174  xsec *= 1.0e9; // translate to pb (CMS/Gen "convention" as of May 2009)
175  runInfo().setInternalXSec(xsec);
176  return;
177 
178 }
std::auto_ptr< Pythia8::Pythia > fMasterGen
void setInternalXSec(const XSec &xsec)
GenRunInfoProduct & runInfo()
Definition: Py8GunBase.h:49

Member Data Documentation

edm::Event* gen::Py8GunBase::edmEvent_
private

Definition at line 64 of file Py8GunBase.h.

Referenced by getEDMEvent(), and setEDMEvent().

double gen::Py8GunBase::fMaxPhi
protected
double gen::Py8GunBase::fMinPhi
protected
std::vector<int> gen::Py8GunBase::fPartIDs
protected
std::auto_ptr<HepMC::GenEvent> gen::Py8GunBase::genEvent_
private

Definition at line 61 of file Py8GunBase.h.

Referenced by event(), getGenEvent(), and resetEvent().

std::auto_ptr<GenEventInfoProduct> gen::Py8GunBase::genEventInfo_
private

Definition at line 62 of file Py8GunBase.h.

Referenced by eventInfo(), getGenEventInfo(), and resetEventInfo().

GenRunInfoProduct gen::Py8GunBase::genRunInfo_
private

Definition at line 60 of file Py8GunBase.h.

Referenced by getGenRunInfo(), and runInfo().