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 
31 public:
32 
34  FSimEvent(const edm::ParameterSet& kine);
35 
37  virtual ~FSimEvent();
38 
40  void fill(const HepMC::GenEvent & hev, edm::EventID & Id);
41 
43  void fill(const std::vector<SimTrack>& simTracks,
44  const std::vector<SimVertex>& simVertices);
45 
47  edm::EventID id() const;
48 
50  float weight() const;
51 
53  unsigned int nTracks() const;
55  unsigned int nVertices() const;
57  unsigned int nGenParts() const;
58 
61  void load(edm::SimVertexContainer & c) const;
62  void load(FSimVertexTypeCollection & c) const;
63 
64 private:
65 
67  double weight_;
68 
69 };
70 
71 #endif // FSIMEVENT_H
void load(edm::SimTrackContainer &c, edm::SimTrackContainer &m) const
Load containers of tracks (and muons) and vertices for the edm::Event.
Definition: FSimEvent.cc:51
void fill(const HepMC::GenEvent &hev, edm::EventID &Id)
fill the FBaseSimEvent from the current HepMC::GenEvent
Definition: FSimEvent.cc:14
FSimEvent(const edm::ParameterSet &kine)
Default constructor.
Definition: FSimEvent.cc:6
double weight_
Definition: FSimEvent.h:67
std::vector< FSimVertexType > FSimVertexTypeCollection
collection of FSimVertexType objects
unsigned int nTracks() const
Number of tracks.
Definition: FSimEvent.cc:36
edm::EventID id() const
Method to return the EventId.
Definition: FSimEvent.cc:27
unsigned int nGenParts() const
Number of MC particles.
Definition: FSimEvent.cc:46
virtual ~FSimEvent()
usual virtual destructor
Definition: FSimEvent.cc:10
unsigned int nVertices() const
Number of vertices.
Definition: FSimEvent.cc:41
std::vector< SimVertex > SimVertexContainer
float weight() const
Method to return the event weight.
Definition: FSimEvent.cc:31
std::vector< SimTrack > SimTrackContainer
edm::EventID id_
Definition: FSimEvent.h:66