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 Member Functions
edm::ExpoRandomPtGunProducer Class Reference

#include <ExpoRandomPtGunProducer.h>

Inheritance diagram for edm::ExpoRandomPtGunProducer:
edm::BaseFlatGunProducer edm::one::EDProducer< one::WatchRuns, EndRunProducer > edm::one::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 ExpoRandomPtGunProducer (const ParameterSet &pset)
 
virtual ~ExpoRandomPtGunProducer ()
 
- Public Member Functions inherited from edm::BaseFlatGunProducer
 BaseFlatGunProducer (const ParameterSet &)
 
void beginRun (const edm::Run &r, const edm::EventSetup &) override
 
void endRun (edm::Run const &r, const edm::EventSetup &) override
 
void endRunProduce (edm::Run &r, const edm::EventSetup &) override
 
virtual ~BaseFlatGunProducer ()
 
- Public Member Functions inherited from edm::one::EDProducer< one::WatchRuns, EndRunProducer >
 EDProducer ()=default
 
- Public Member Functions inherited from edm::one::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Protected Attributes

double fMaxPt
 
double fMeanPt
 
double fMinPt
 
CLHEP::RandExponential * fRandomExpoGenerator
 
- Protected Attributes inherited from edm::BaseFlatGunProducer
bool fAddAntiParticle
 
HepMC::GenEvent * fEvt
 
double fMaxEta
 
double fMaxPhi
 
double fMinEta
 
double fMinPhi
 
std::vector< int > fPartIDs
 
ESHandle
< HepPDT::ParticleDataTable
fPDGTable
 
CLHEP::HepRandomEngine & fRandomEngine
 
CLHEP::RandFlat * fRandomGenerator
 
int fVerbosity
 

Private Member Functions

virtual void produce (Event &e, const EventSetup &es) override
 

Additional Inherited Members

- Public Types inherited from edm::one::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::one::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 15 of file ExpoRandomPtGunProducer.h.

Constructor & Destructor Documentation

ExpoRandomPtGunProducer::ExpoRandomPtGunProducer ( const ParameterSet pset)

Definition at line 22 of file ExpoRandomPtGunProducer.cc.

References fMaxPt, fMeanPt, fMinPt, edm::BaseFlatGunProducer::fRandomEngine, fRandomExpoGenerator, and edm::ParameterSet::getParameter().

22  :
24 {
25 
26 
27  ParameterSet defpset ;
28  ParameterSet pgun_params =
29  pset.getParameter<ParameterSet>("PGunParameters") ;
30 
31  fMinPt = pgun_params.getParameter<double>("MinPt");
32  fMaxPt = pgun_params.getParameter<double>("MaxPt");
33 
34  fMeanPt = pgun_params.getParameter<double>("MeanPt");
35 
36  produces<HepMCProduct>();
37  produces<GenEventInfoProduct>();
38 
39  //the explonential generator
40  fRandomExpoGenerator = new CLHEP::RandExponential(fRandomEngine,fMeanPt);
41 
42 }
T getParameter(std::string const &) const
CLHEP::HepRandomEngine & fRandomEngine
BaseFlatGunProducer(const ParameterSet &)
CLHEP::RandExponential * fRandomExpoGenerator
ExpoRandomPtGunProducer::~ExpoRandomPtGunProducer ( )
virtual

Definition at line 44 of file ExpoRandomPtGunProducer.cc.

45 {
46  // no need to cleanup GenEvent memory - done in HepMCProduct
47 }

Member Function Documentation

void ExpoRandomPtGunProducer::produce ( Event e,
const EventSetup es 
)
overrideprivatevirtual

Implements edm::one::EDProducerBase.

Definition at line 49 of file ExpoRandomPtGunProducer.cc.

References funct::abs(), funct::cos(), gather_cfg::cout, relval_parameters_module::energy, eta(), edm::EventID::event(), create_public_lumi_plots::exp, edm::BaseFlatGunProducer::fAddAntiParticle, edm::BaseFlatGunProducer::fEvt, edm::BaseFlatGunProducer::fMaxEta, edm::BaseFlatGunProducer::fMaxPhi, fMaxPt, fMeanPt, edm::BaseFlatGunProducer::fMinEta, edm::BaseFlatGunProducer::fMinPhi, fMinPt, edm::BaseFlatGunProducer::fPartIDs, edm::BaseFlatGunProducer::fPDGTable, fRandomExpoGenerator, edm::BaseFlatGunProducer::fRandomGenerator, edm::BaseFlatGunProducer::fVerbosity, configurableAnalysis::GenParticle, edm::EventBase::id(), max(), AlCaHLTBitMon_ParallelJobs::p, RecoTau_DiTaus_pt_20-420_cfg::ParticleID, phi, RecoTauCleanerPlugins::pt, edm::Event::put(), funct::sin(), mathSSE::sqrt(), and theta().

50 {
51 
52  if ( fVerbosity > 0 )
53  {
54  cout << " ExpoRandomPtGunProducer : Begin New Event Generation" << endl ;
55  }
56  // event loop (well, another step in it...)
57 
58  // no need to clean up GenEvent memory - done in HepMCProduct
59  //
60 
61  // here re-create fEvt (memory)
62  //
63  fEvt = new HepMC::GenEvent() ;
64 
65  // now actualy, cook up the event from PDGTable and gun parameters
66  //
67  // 1st, primary vertex
68  //
69  //HepMC::GenVertex* Vtx = new HepMC::GenVertex(CLHEP::HepLorentzVector(0.,0.,0.));
70  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0.,0.,0.));
71 
72  // loop over particles
73  //
74  int barcode = 1 ;
75  for (unsigned int ip=0; ip<fPartIDs.size(); ++ip)
76  {
77 
78  //the max is to ensure you don't generate at 0
79  //the 90% is to get rid of edge effect
80 
81  double pt = std::max(0.00001,0.90*fMinPt)+fRandomExpoGenerator->fire(fMeanPt);
82  //shoot until in the designated range
83  while (pt<fMinPt || pt>fMaxPt)
84  {pt = std::max(0.00001,0.90*fMinPt) + fRandomExpoGenerator->fire(fMeanPt);}
85 
86  double eta = fRandomGenerator->fire(fMinEta, fMaxEta) ;
87  double phi = fRandomGenerator->fire(fMinPhi, fMaxPhi) ;
88  int PartID = fPartIDs[ip] ;
89  const HepPDT::ParticleData*
90  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
91  double mass = PData->mass().value() ;
92  double theta = 2.*atan(exp(-eta)) ;
93  double mom = pt/sin(theta) ;
94  double px = pt*cos(phi) ;
95  double py = pt*sin(phi) ;
96  double pz = mom*cos(theta) ;
97  double energy2= mom*mom + mass*mass ;
98  double energy = sqrt(energy2) ;
99  //CLHEP::Hep3Vector p(px,py,pz) ;
100  //HepMC::GenParticle* Part =
101  // new HepMC::GenParticle(CLHEP::HepLorentzVector(p,energy),PartID,1);
102  HepMC::FourVector p(px,py,pz,energy) ;
103  HepMC::GenParticle* Part =
104  new HepMC::GenParticle(p,PartID,1);
105  Part->suggest_barcode( barcode ) ;
106  barcode++ ;
107  Vtx->add_particle_out(Part);
108 
109  if ( fAddAntiParticle )
110  {
111  //CLHEP::Hep3Vector ap(-px,-py,-pz) ;
112  HepMC::FourVector ap(-px,-py,-pz,energy) ;
113  int APartID = -PartID ;
114  if ( PartID == 22 || PartID == 23 )
115  {
116  APartID = PartID ;
117  }
118  //HepMC::GenParticle* APart =
119  // new HepMC::GenParticle(CLHEP::HepLorentzVector(ap,energy),APartID,1);
120  HepMC::GenParticle* APart =
121  new HepMC::GenParticle(ap,APartID,1);
122  APart->suggest_barcode( barcode ) ;
123  barcode++ ;
124  Vtx->add_particle_out(APart) ;
125  }
126 
127  }
128 
129  fEvt->add_vertex(Vtx) ;
130  fEvt->set_event_number(e.id().event()) ;
131  fEvt->set_signal_process_id(20) ;
132 
133  if ( fVerbosity > 0 )
134  {
135  fEvt->print() ;
136  }
137 
138  auto_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
139  BProduct->addHepMCData( fEvt );
140  e.put(BProduct);
141 
142  auto_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
143  e.put(genEventInfo);
144 
145  if ( fVerbosity > 0 )
146  {
147  // for testing purpose only
148  // fEvt->print() ; // prints empty info after it's made into edm::Event
149  cout << " FlatRandomPtGunProducer : Event Generation Done " << endl;
150  }
151 }
EventNumber_t event() const
Definition: EventID.h:44
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Theta< T > theta() const
T eta() const
CLHEP::RandExponential * fRandomExpoGenerator
ESHandle< HepPDT::ParticleDataTable > fPDGTable
const T & max(const T &a, const T &b)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
T sqrt(T t)
Definition: SSEVec.h:48
CLHEP::RandFlat * fRandomGenerator
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< int > fPartIDs
HepPDT::ParticleData ParticleData
edm::EventID id() const
Definition: EventBase.h:56
tuple cout
Definition: gather_cfg.py:121
Definition: DDAxes.h:10

Member Data Documentation

double edm::ExpoRandomPtGunProducer::fMaxPt
protected

Definition at line 31 of file ExpoRandomPtGunProducer.h.

Referenced by ExpoRandomPtGunProducer(), and produce().

double edm::ExpoRandomPtGunProducer::fMeanPt
protected

Definition at line 32 of file ExpoRandomPtGunProducer.h.

Referenced by ExpoRandomPtGunProducer(), and produce().

double edm::ExpoRandomPtGunProducer::fMinPt
protected

Definition at line 30 of file ExpoRandomPtGunProducer.h.

Referenced by ExpoRandomPtGunProducer(), and produce().

CLHEP::RandExponential* edm::ExpoRandomPtGunProducer::fRandomExpoGenerator
protected

Definition at line 33 of file ExpoRandomPtGunProducer.h.

Referenced by ExpoRandomPtGunProducer(), and produce().