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 Attributes | Private Attributes
gen::Py8InterfaceBase Class Referenceabstract

#include <Py8InterfaceBase.h>

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

Public Member Functions

virtual const char * classname () const =0
 
bool decay ()
 
bool declareSpecialSettings (const std::vector< std::string > &)
 
bool declareStableParticles (const std::vector< int > &)
 
virtual void finalizeEvent ()=0
 
virtual bool generatePartonsAndHadronize ()=0
 
virtual bool initializeForInternalPartons ()=0
 
void p8SetRandomEngine (CLHEP::HepRandomEngine *v)
 
 Py8InterfaceBase (edm::ParameterSet const &ps)
 
P8RndmEnginerandomEngine ()
 
bool readSettings (int)
 
virtual void statistics ()
 
 ~Py8InterfaceBase ()
 
- Public Member Functions inherited from gen::BaseHadronizer
 BaseHadronizer (edm::ParameterSet const &ps)
 
void cleanLHE ()
 
void generateLHE (edm::LuminosityBlock const &lumi, CLHEP::HepRandomEngine *rengine)
 
edm::EventgetEDMEvent () const
 
HepMC::GenEvent * getGenEvent ()
 
GenEventInfoProductgetGenEventInfo ()
 
virtual GenLumiInfoHeadergetGenLumiInfoHeader () const
 
GenRunInfoProductgetGenRunInfo ()
 
const boost::shared_ptr
< lhef::LHERunInfo > & 
getLHERunInfo () const
 
const std::string & gridpackPath () const
 
int randomIndex () const
 
const std::string & randomInitConfigDescription () const
 
void randomizeIndex (edm::LuminosityBlock const &lumi, CLHEP::HepRandomEngine *rengine)
 
void resetEvent (HepMC::GenEvent *event)
 
void resetEventInfo (GenEventInfoProduct *eventInfo)
 
virtual bool select (HepMC::GenEvent *) const
 
void setEDMEvent (edm::Event &event)
 
void setLHEEvent (lhef::LHEEvent *event)
 
void setLHERunInfo (lhef::LHERunInfo *runInfo)
 
void setRandomEngine (CLHEP::HepRandomEngine *v)
 
std::vector< std::string > const & sharedResources () const
 
 ~BaseHadronizer ()
 

Protected Attributes

HepMC::IO_AsciiParticles * ascii_io
 
std::auto_ptr< EvtGenDecays > evtgenDecays
 
std::string evtgenDecFile
 
std::string evtgenPdlFile
 
std::vector< std::string > evtgenUserFiles
 
std::auto_ptr< Pythia8::Pythia > fDecayer
 
std::auto_ptr< Pythia8::Pythia > fMasterGen
 
edm::ParameterSet fParameters
 
unsigned int maxEventsToPrint
 
bool pythiaHepMCVerbosity
 
bool pythiaHepMCVerbosityParticles
 
unsigned int pythiaPylistVerbosity
 
std::string slhafile_
 
HepMC::Pythia8ToHepMC toHepMC
 
bool useEvtGen
 
- Protected Attributes inherited from gen::BaseHadronizer
std::string lheFile_
 
int randomIndex_
 

Private Attributes

P8RndmEngine p8RndmEngine_
 

Additional Inherited Members

- Protected Member Functions inherited from gen::BaseHadronizer
std::auto_ptr< HepMC::GenEvent > & event ()
 
std::auto_ptr
< GenEventInfoProduct > & 
eventInfo ()
 
lhef::LHEEventlheEvent ()
 
lhef::LHERunInfolheRunInfo ()
 
GenRunInfoProductrunInfo ()
 

Detailed Description

Definition at line 24 of file Py8InterfaceBase.h.

Constructor & Destructor Documentation

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

Definition at line 14 of file Py8InterfaceBase.cc.

References ascii_io, evtgenDecFile, evtgenPdlFile, evtgenUserFiles, edm::ParameterSet::exists(), fParameters, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), maxEventsToPrint, GenerateHcalLaserBadRunList::out, pythiaHepMCVerbosity, pythiaHepMCVerbosityParticles, pythiaPylistVerbosity, AlCaHLTBitMon_QueryRunRegistry::string, and useEvtGen.

14  :
15 BaseHadronizer(ps),
16 useEvtGen(false), evtgenDecays(0)
17 {
18  fParameters = ps;
19 
20  pythiaPylistVerbosity = ps.getUntrackedParameter<int>("pythiaPylistVerbosity", 0);
21  pythiaHepMCVerbosity = ps.getUntrackedParameter<bool>("pythiaHepMCVerbosity", false);
22  pythiaHepMCVerbosityParticles = ps.getUntrackedParameter<bool>("pythiaHepMCVerbosityParticles", false);
23  maxEventsToPrint = ps.getUntrackedParameter<int>("maxEventsToPrint", 0);
24 
25  if(pythiaHepMCVerbosityParticles)
26  ascii_io = new HepMC::IO_AsciiParticles("cout", std::ios::out);
27 
28  if ( ps.exists("useEvtGenPlugin") ) {
29 
30  useEvtGen = true;
31 
32  string evtgenpath(getenv("EVTGENDATA"));
33  evtgenDecFile = evtgenpath + string("/DECAY_2010.DEC");
34  evtgenPdlFile = evtgenpath + string("/evt.pdl");
35 
36  if ( ps.exists( "evtgenDecFile" ) )
37  evtgenDecFile = ps.getParameter<string>("evtgenDecFile");
38 
39  if ( ps.exists( "evtgenPdlFile" ) )
40  evtgenPdlFile = ps.getParameter<string>("evtgenPdlFile");
41 
42  if ( ps.exists( "evtgenUserFile" ) )
43  evtgenUserFiles = ps.getParameter< std::vector<std::string> >("evtgenUserFile");
44 
45  }
46 
47 }
std::auto_ptr< EvtGenDecays > evtgenDecays
HepMC::IO_AsciiParticles * ascii_io
BaseHadronizer(edm::ParameterSet const &ps)
std::vector< std::string > evtgenUserFiles
unsigned int pythiaPylistVerbosity
unsigned int maxEventsToPrint
edm::ParameterSet fParameters
gen::Py8InterfaceBase::~Py8InterfaceBase ( )
inline

Definition at line 29 of file Py8InterfaceBase.h.

29 {}

Member Function Documentation

virtual const char* gen::Py8InterfaceBase::classname ( ) const
pure virtual
bool gen::Py8InterfaceBase::decay ( )
inline

Definition at line 32 of file Py8InterfaceBase.h.

32 { return true; } // NOT used - let's call it "design imperfection"
bool gen::Py8InterfaceBase::declareSpecialSettings ( const std::vector< std::string > &  settings)

Definition at line 162 of file Py8InterfaceBase.cc.

References fDecayer, spr::find(), fMasterGen, AlCaHLTBitMon_QueryRunRegistry::string, and relativeConstraints::value.

162  {
163  for ( unsigned int iss=0; iss<settings.size(); iss++ ){
164  if ( settings[iss].find("QED-brem-off") != std::string::npos ){
165  fMasterGen->readString( "TimeShower:QEDshowerByL=off" );
166  }
167  else{
168  size_t fnd1 = settings[iss].find("Pythia8:");
169  if ( fnd1 != std::string::npos ){
170  std::string value = settings[iss].substr (fnd1+8);
171  fDecayer->readString(value);
172  }
173  }
174  }
175  return true;
176 }
std::auto_ptr< Pythia8::Pythia > fMasterGen
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
std::auto_ptr< Pythia8::Pythia > fDecayer
bool gen::Py8InterfaceBase::declareStableParticles ( const std::vector< int > &  pdgIds)

Definition at line 129 of file Py8InterfaceBase.cc.

References fMasterGen, and i.

130 {
131 
132  for ( size_t i=0; i<pdgIds.size(); i++ )
133  {
134  // FIXME: need to double check if PID's are the same in Py6 & Py8,
135  // because the HepPDT translation tool is actually for **Py6**
136  //
137  // well, actually it looks like Py8 operates in PDT id's rather than Py6's
138  //
139 // int PyID = HepPID::translatePDTtoPythia( pdgIds[i] );
140  int PyID = pdgIds[i];
141  std::ostringstream pyCard ;
142  pyCard << PyID <<":mayDecay=false";
143 
144  if ( fMasterGen->particleData.isParticle( PyID ) ) {
145  fMasterGen->readString( pyCard.str() );
146  } else {
147 
148  edm::LogWarning("DataNotUnderstood") << "Pythia8 does not "
149  << "recognize particle id = "
150  << PyID << std::endl;
151  }
152  // alternative:
153  // set the 2nd input argument warn=false
154  // - this way Py8 will NOT print warnings about unknown particle code(s)
155  // fMasterPtr->readString( pyCard.str(), false )
156  }
157 
158  return true;
159 
160 }
int i
Definition: DBlmapReader.cc:9
std::auto_ptr< Pythia8::Pythia > fMasterGen
virtual void gen::Py8InterfaceBase::finalizeEvent ( )
pure virtual

Implemented in Pythia8Hadronizer, and gen::Py8GunBase.

virtual bool gen::Py8InterfaceBase::generatePartonsAndHadronize ( )
pure virtual
virtual bool gen::Py8InterfaceBase::initializeForInternalPartons ( )
pure virtual

Implemented in Pythia8Hadronizer, and gen::Py8GunBase.

void gen::Py8InterfaceBase::p8SetRandomEngine ( CLHEP::HepRandomEngine *  v)
inline

Definition at line 41 of file Py8InterfaceBase.h.

References p8RndmEngine_, and gen::P8RndmEngine::setRandomEngine().

Referenced by gen::Py8GunBase::setRandomEngine().

double v[5][pyjets_maxn]
void setRandomEngine(CLHEP::HepRandomEngine *v)
Definition: P8RndmEngine.h:35
P8RndmEngine p8RndmEngine_
P8RndmEngine& gen::Py8InterfaceBase::randomEngine ( )
inline
bool gen::Py8InterfaceBase::readSettings ( int  )

Definition at line 49 of file Py8InterfaceBase.cc.

References gen::ParameterCollector::begin(), gen::ParameterCollector::end(), edm::ParameterSet::exists(), validate-o2o-wbm::f1, ztee::fd, fDecayer, fMasterGen, fParameters, edm::ParameterSet::getParameter(), geometryCSVtoXML::line, p8RndmEngine_, gen::BaseHadronizer::randomIndex(), slhafile_, AlCaHLTBitMon_QueryRunRegistry::string, and TablePrint::write.

50 {
51 
52  fMasterGen.reset(new Pythia);
53  fDecayer.reset(new Pythia);
54 
55  //add settings for resonance decay filter
56  fMasterGen->settings.addFlag("ResonanceDecayFilter:filter",false);
57  fMasterGen->settings.addFlag("ResonanceDecayFilter:exclusive",false);
58  fMasterGen->settings.addFlag("ResonanceDecayFilter:eMuAsEquivalent",false);
59  fMasterGen->settings.addFlag("ResonanceDecayFilter:eMuTauAsEquivalent",false);
60  fMasterGen->settings.addFlag("ResonanceDecayFilter:allNuAsEquivalent",false);
61  fMasterGen->settings.addMVec("ResonanceDecayFilter:mothers",std::vector<int>(),false,false,0,0);
62  fMasterGen->settings.addMVec("ResonanceDecayFilter:daughters",std::vector<int>(),false,false,0,0);
63 
64  fMasterGen->setRndmEnginePtr( &p8RndmEngine_ );
65  fDecayer->setRndmEnginePtr( &p8RndmEngine_ );
66 
67  fMasterGen->readString("Next:numberShowEvent = 0");
68  fDecayer->readString("Next:numberShowEvent = 0");
69 
70  edm::ParameterSet currentParameters;
71  if (randomIndex()>=0) {
72  std::vector<edm::ParameterSet> randomizedParameters = fParameters.getParameter<std::vector<edm::ParameterSet> >("RandomizedParameters");
73  currentParameters = randomizedParameters[randomIndex()];
74  }
75  else {
76  currentParameters = fParameters;
77  }
78 
79  ParameterCollector pCollector = currentParameters.getParameter<edm::ParameterSet>("PythiaParameters");
80 
81  for ( ParameterCollector::const_iterator line = pCollector.begin();
82  line != pCollector.end(); ++line )
83  {
84  if (line->find("Random:") != std::string::npos)
85  throw cms::Exception("PythiaError") << "Attempted to set random number "
86  "using Pythia commands. Please use " "the RandomNumberGeneratorService."
87  << std::endl;
88 
89  if (!fMasterGen->readString(*line)) throw cms::Exception("PythiaError")
90  << "Pythia 8 did not accept \""
91  << *line << "\"." << std::endl;
92 
93  if (line->find("ParticleDecays:") != std::string::npos) {
94 
95  if (!fDecayer->readString(*line)) throw cms::Exception("PythiaError")
96  << "Pythia 8 Decayer did not accept \""
97  << *line << "\"." << std::endl;
98  }
99 
100  }
101 
102  slhafile_.clear();
103 
104  if( currentParameters.exists( "SLHAFileForPythia8" ) ) {
105  std::string slhafilenameshort = currentParameters.getParameter<std::string>("SLHAFileForPythia8");
106  edm::FileInPath f1( slhafilenameshort );
107 
108  fMasterGen->settings.mode("SLHA:readFrom", 2);
109  fMasterGen->settings.word("SLHA:file", f1.fullPath());
110  }
111  else if( currentParameters.exists( "SLHATableForPythia8" ) ) {
112  std::string slhatable = currentParameters.getParameter<std::string>("SLHATableForPythia8");
113 
114  char tempslhaname[] = "pythia8SLHAtableXXXXXX";
115  int fd = mkstemp(tempslhaname);
116  write(fd,slhatable.c_str(),slhatable.size());
117  close(fd);
118 
119  slhafile_ = tempslhaname;
120 
121  fMasterGen->settings.mode("SLHA:readFrom", 2);
122  fMasterGen->settings.word("SLHA:file", slhafile_);
123  }
124 
125  return true;
126 
127 }
T getParameter(std::string const &) const
std::auto_ptr< Pythia8::Pythia > fMasterGen
bool exists(std::string const &parameterName) const
checks if a parameter exists
P8RndmEngine p8RndmEngine_
tuple fd
Definition: ztee.py:136
std::auto_ptr< Pythia8::Pythia > fDecayer
int randomIndex() const
edm::ParameterSet fParameters
void gen::Py8InterfaceBase::statistics ( )
virtual

Reimplemented in Pythia8Hadronizer, and gen::Py8GunBase.

Definition at line 179 of file Py8InterfaceBase.cc.

References fMasterGen.

180 {
181 
182  fMasterGen->stat();
183  return;
184 
185 }
std::auto_ptr< Pythia8::Pythia > fMasterGen

Member Data Documentation

HepMC::IO_AsciiParticles* gen::Py8InterfaceBase::ascii_io
protected
std::auto_ptr<EvtGenDecays> gen::Py8InterfaceBase::evtgenDecays
protected
std::string gen::Py8InterfaceBase::evtgenDecFile
protected
std::string gen::Py8InterfaceBase::evtgenPdlFile
protected
std::vector<std::string> gen::Py8InterfaceBase::evtgenUserFiles
protected
std::auto_ptr<Pythia8::Pythia> gen::Py8InterfaceBase::fDecayer
protected
std::auto_ptr<Pythia8::Pythia> gen::Py8InterfaceBase::fMasterGen
protected
edm::ParameterSet gen::Py8InterfaceBase::fParameters
protected

Definition at line 50 of file Py8InterfaceBase.h.

Referenced by Py8InterfaceBase(), and readSettings().

unsigned int gen::Py8InterfaceBase::maxEventsToPrint
protected
P8RndmEngine gen::Py8InterfaceBase::p8RndmEngine_
private

Definition at line 70 of file Py8InterfaceBase.h.

Referenced by p8SetRandomEngine(), randomEngine(), and readSettings().

bool gen::Py8InterfaceBase::pythiaHepMCVerbosity
protected
bool gen::Py8InterfaceBase::pythiaHepMCVerbosityParticles
protected
unsigned int gen::Py8InterfaceBase::pythiaPylistVerbosity
protected
std::string gen::Py8InterfaceBase::slhafile_
protected
HepMC::Pythia8ToHepMC gen::Py8InterfaceBase::toHepMC
protected
bool gen::Py8InterfaceBase::useEvtGen
protected