CMS 3D CMS Logo

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

#include <FlatRandomOneOverPtGunProducer.h>

Inheritance diagram for edm::FlatRandomOneOverPtGunProducer:
edm::BaseFlatGunProducer edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 FlatRandomOneOverPtGunProducer (const ParameterSet &pset)
 
virtual void produce (Event &e, const EventSetup &es)
 
virtual ~FlatRandomOneOverPtGunProducer ()
 
- 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 ()
 

Private Attributes

double fMaxOneOverPt
 
double fMinOneOverPt
 

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)
 
- 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)
 
- 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
 

Detailed Description

Definition at line 14 of file FlatRandomOneOverPtGunProducer.h.

Constructor & Destructor Documentation

FlatRandomOneOverPtGunProducer::FlatRandomOneOverPtGunProducer ( const ParameterSet pset)

Definition at line 15 of file FlatRandomOneOverPtGunProducer.cc.

References fMaxOneOverPt, fMinOneOverPt, and edm::ParameterSet::getParameter().

15  :
16  BaseFlatGunProducer(pset) {
17 
18 
19  edm::ParameterSet defpset ;
20  edm::ParameterSet pgun_params =
21  pset.getParameter<ParameterSet>("PGunParameters") ;
22 
23  fMinOneOverPt = pgun_params.getParameter<double>("MinOneOverPt");
24  fMaxOneOverPt = pgun_params.getParameter<double>("MaxOneOverPt");
25 
26  produces<HepMCProduct>();
27  produces<GenEventInfoProduct>();
28 
29  edm::LogInfo("ParticleGun") << "FlatRandomOneOverPtGunProducer: initialized with minimum and maximum 1/pt " << fMinOneOverPt << ":" << fMaxOneOverPt;
30 }
T getParameter(std::string const &) const
BaseFlatGunProducer(const ParameterSet &)
FlatRandomOneOverPtGunProducer::~FlatRandomOneOverPtGunProducer ( )
virtual

Definition at line 32 of file FlatRandomOneOverPtGunProducer.cc.

32  {
33  // no need to cleanup GenEvent memory - done in HepMCProduct
34 }

Member Function Documentation

void FlatRandomOneOverPtGunProducer::produce ( Event e,
const EventSetup es 
)
virtual

Implements edm::EDProducer.

Definition at line 36 of file FlatRandomOneOverPtGunProducer.cc.

References abs, funct::cos(), relval_parameters_module::energy, eta(), edm::EventID::event(), funct::exp(), edm::BaseFlatGunProducer::fAddAntiParticle, edm::BaseFlatGunProducer::fEvt, edm::BaseFlatGunProducer::fMaxEta, fMaxOneOverPt, edm::BaseFlatGunProducer::fMaxPhi, edm::BaseFlatGunProducer::fMinEta, fMinOneOverPt, edm::BaseFlatGunProducer::fMinPhi, edm::BaseFlatGunProducer::fPartIDs, edm::BaseFlatGunProducer::fPDGTable, edm::BaseFlatGunProducer::fRandomGenerator, edm::BaseFlatGunProducer::fVerbosity, configurableAnalysis::GenParticle, edm::EventBase::id(), funct::log(), LogDebug, L1TEmulatorMonitor_cff::p, RecoTau_DiTaus_pt_20-420_cfg::ParticleID, phi, ExpressReco_HICollisions_FallBack::pt, edm::Event::put(), funct::sin(), mathSSE::sqrt(), and theta().

36  {
37 
38  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Begin New Event Generation";
39 
40  // event loop (well, another step in it...)
41 
42  // no need to clean up GenEvent memory - done in HepMCProduct
43  //
44 
45  // here re-create fEvt (memory)
46  //
47  fEvt = new HepMC::GenEvent() ;
48 
49  // now actualy, cook up the event from PDGTable and gun parameters
50  //
51  // 1st, primary vertex
52  //
53  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0.,0.,0.));
54 
55  // loop over particles
56  //
57  int barcode = 1 ;
58  for (unsigned int ip=0; ip<fPartIDs.size(); ++ip) {
59 
60  double xx = fRandomGenerator->fire(0.0,1.0);
61  double pt = std::exp((1.-xx)*std::log(fMinOneOverPt)+
62  xx*std::log(fMaxOneOverPt)) ;
63  double eta = fRandomGenerator->fire(fMinEta, fMaxEta) ;
64  double phi = fRandomGenerator->fire(fMinPhi, fMaxPhi) ;
65  if (pt != 0) pt = 1./pt;
66  int PartID = fPartIDs[ip] ;
67  const HepPDT::ParticleData*
68  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
69  double mass = PData->mass().value() ;
70  double theta = 2.*atan(exp(-eta)) ;
71  double mom = pt/sin(theta) ;
72  double px = pt*cos(phi) ;
73  double py = pt*sin(phi) ;
74  double pz = mom*cos(theta) ;
75  double energy2= mom*mom + mass*mass ;
76  double energy = sqrt(energy2) ;
77  HepMC::FourVector p(px,py,pz,energy) ;
78  HepMC::GenParticle* Part = new HepMC::GenParticle(p,PartID,1);
79  Part->suggest_barcode( barcode ) ;
80  barcode++ ;
81  Vtx->add_particle_out(Part);
82  LogDebug("ParticleGun") << "FlatRandomOneOverPtGunProducer: Event generated with pt:eta:phi " << pt << " " << eta << " " << phi << " (" << theta/CLHEP::deg << ":" << phi/CLHEP::deg << ")";
83 
84  if ( fAddAntiParticle ) {
85  HepMC::FourVector ap(-px,-py,-pz,energy) ;
86  int APartID = -PartID ;
87  if ( PartID == 22 || PartID == 23 ) {
88  APartID = PartID ;
89  }
90  HepMC::GenParticle* APart = new HepMC::GenParticle(ap,APartID,1);
91  APart->suggest_barcode( barcode ) ;
92  barcode++ ;
93  Vtx->add_particle_out(APart) ;
94  }
95 
96  }
97 
98  fEvt->add_vertex(Vtx) ;
99  fEvt->set_event_number(e.id().event()) ;
100  fEvt->set_signal_process_id(20) ;
101 
102  if ( fVerbosity > 0 ) {
103  fEvt->print() ;
104  }
105 
106  std::auto_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
107  BProduct->addHepMCData( fEvt );
108  e.put(BProduct);
109 
110  std::auto_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
111  e.put(genEventInfo);
112 
113  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Event Generation Done ";
114 }
#define LogDebug(id)
EventNumber_t event() const
Definition: EventID.h:44
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
#define abs(x)
Definition: mlp_lapack.h:159
Geom::Theta< T > theta() const
Exp< T >::type exp(const T &t)
Definition: Exp.h:22
T eta() const
ESHandle< HepPDT::ParticleDataTable > fPDGTable
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
T sqrt(T t)
Definition: SSEVec.h:28
CLHEP::RandFlat * fRandomGenerator
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
std::vector< int > fPartIDs
HepPDT::ParticleData ParticleData
Log< T >::type log(const T &t)
Definition: Log.h:22
edm::EventID id() const
Definition: EventBase.h:56
Definition: DDAxes.h:10

Member Data Documentation

double edm::FlatRandomOneOverPtGunProducer::fMaxOneOverPt
private

Definition at line 28 of file FlatRandomOneOverPtGunProducer.h.

Referenced by FlatRandomOneOverPtGunProducer(), and produce().

double edm::FlatRandomOneOverPtGunProducer::fMinOneOverPt
private

Definition at line 27 of file FlatRandomOneOverPtGunProducer.h.

Referenced by FlatRandomOneOverPtGunProducer(), and produce().