CMS 3D CMS Logo

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 FSimEvent : public FBaseSimEvent {
30 public:
32  FSimEvent(const edm::ParameterSet& kine);
33 
35  virtual ~FSimEvent();
36 
38  void fill(const HepMC::GenEvent& hev, edm::EventID& Id);
39 
41  void fill(const std::vector<SimTrack>& simTracks, const std::vector<SimVertex>& simVertices);
42 
44  edm::EventID id() const;
45 
47  float weight() const;
48 
50  unsigned int nTracks() const;
52  unsigned int nVertices() const;
54  unsigned int nGenParts() const;
55 
58  void load(edm::SimVertexContainer& c) const;
59  void load(FSimVertexTypeCollection& c) const;
60 
61 private:
63  double weight_;
64 };
65 
66 #endif // FSIMEVENT_H
void fill(const HepMC::GenEvent &hev, edm::EventID &Id)
fill the FBaseSimEvent from the current HepMC::GenEvent
Definition: FSimEvent.cc:10
FSimEvent(const edm::ParameterSet &kine)
Default constructor.
Definition: FSimEvent.cc:6
float weight() const
Method to return the event weight.
Definition: FSimEvent.cc:22
unsigned int nTracks() const
Number of tracks.
Definition: FSimEvent.cc:24
double weight_
Definition: FSimEvent.h:63
unsigned int nVertices() const
Number of vertices.
Definition: FSimEvent.cc:26
std::vector< FSimVertexType > FSimVertexTypeCollection
collection of FSimVertexType objects
edm::EventID id() const
Method to return the EventId.
Definition: FSimEvent.cc:20
virtual ~FSimEvent()
usual virtual destructor
Definition: FSimEvent.cc:8
std::vector< SimVertex > SimVertexContainer
void load(edm::SimTrackContainer &c, edm::SimTrackContainer &m) const
Load containers of tracks (and muons) and vertices for the edm::Event.
Definition: FSimEvent.cc:30
unsigned int nGenParts() const
Number of MC particles.
Definition: FSimEvent.cc:28
std::vector< SimTrack > SimTrackContainer
edm::EventID id_
Definition: FSimEvent.h:62