CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FSimEvent.h
Go to the documentation of this file.
1 #ifndef FastSimulation_Event_FSimEvent_H
2 #define FastSimulation_Event_FSimEvent_H
3 
4 // CMSSW Headers
9 
10 // FAMOS Headers
12 
29 class RandomEngine;
30 
31 class FSimEvent : public FBaseSimEvent {
32 
33 public:
34 
36  FSimEvent(const edm::ParameterSet& kine);
37 
38  FSimEvent(const edm::ParameterSet& vtx,
39  const edm::ParameterSet& kine,
40  const RandomEngine* engine);
41 
43  virtual ~FSimEvent();
44 
46  void fill(const HepMC::GenEvent & hev, edm::EventID & Id);
47 
50 
52  void fill(const std::vector<SimTrack>& simTracks,
53  const std::vector<SimVertex>& simVertices);
54 
56  edm::EventID id() const;
57 
59  float weight() const;
60 
62  unsigned int nTracks() const;
64  unsigned int nVertices() const;
66  unsigned int nGenParts() const;
67 
70  void load(edm::SimVertexContainer & c) const;
71  void load(FSimVertexTypeCollection & c) const;
72 
73 private:
74 
76  double weight_;
77 
78 };
79 
80 #endif // FSIMEVENT_H
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
void load(edm::SimTrackContainer &c, edm::SimTrackContainer &m) const
Load containers of tracks (and muons) and vertices for the edm::Event.
Definition: FSimEvent.cc:63
void fill(const HepMC::GenEvent &hev, edm::EventID &Id)
fill the FBaseSimEvent from the current HepMC::GenEvent
Definition: FSimEvent.cc:26
FSimEvent(const edm::ParameterSet &kine)
Default constructor.
Definition: FSimEvent.cc:6
double weight_
Definition: FSimEvent.h:76
std::vector< FSimVertexType > FSimVertexTypeCollection
collection of FSimVertexType objects
unsigned int nTracks() const
Number of tracks.
Definition: FSimEvent.cc:48
edm::EventID id() const
Method to return the EventId.
Definition: FSimEvent.cc:39
unsigned int nGenParts() const
Number of MC particles.
Definition: FSimEvent.cc:58
virtual ~FSimEvent()
usual virtual destructor
Definition: FSimEvent.cc:16
unsigned int nVertices() const
Number of vertices.
Definition: FSimEvent.cc:53
std::vector< SimVertex > SimVertexContainer
float weight() const
Method to return the event weight.
Definition: FSimEvent.cc:43
std::vector< SimTrack > SimTrackContainer
edm::EventID id_
Definition: FSimEvent.h:75