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::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 ExpoRandomPtGunProducer (const ParameterSet &pset)
 
virtual ~ExpoRandomPtGunProducer ()
 
- Public Member Functions inherited from edm::BaseFlatGunProducer
 BaseFlatGunProducer (const ParameterSet &)
 
void beginRun (edm::Run &r, const edm::EventSetup &)
 
void endRun (edm::Run &r, const edm::EventSetup &)
 
virtual ~BaseFlatGunProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

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)
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 15 of file ExpoRandomPtGunProducer.h.

Constructor & Destructor Documentation

ExpoRandomPtGunProducer::ExpoRandomPtGunProducer ( const ParameterSet pset)

Definition at line 24 of file ExpoRandomPtGunProducer.cc.

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

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

Definition at line 46 of file ExpoRandomPtGunProducer.cc.

47 {
48  // no need to cleanup GenEvent memory - done in HepMCProduct
49 }

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 51 of file ExpoRandomPtGunProducer.cc.

References 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(), scaleCards::mass, max(), AlCaHLTBitMon_ParallelJobs::p, RecoTau_DiTaus_pt_20-420_cfg::ParticleID, phi, edm::Event::put(), funct::sin(), mathSSE::sqrt(), and theta().

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