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
FSimEvent Class Reference

#include <FSimEvent.h>

Inheritance diagram for FSimEvent:
FBaseSimEvent

Public Member Functions

void fill (const HepMC::GenEvent &hev, edm::EventID &Id)
 fill the FBaseSimEvent from the current HepMC::GenEvent More...
 
void fill (const std::vector< SimTrack > &simTracks, const std::vector< SimVertex > &simVertices)
 fill the FBaseSimEvent from the SimTrack's and SimVert'ices More...
 
 FSimEvent (const edm::ParameterSet &kine)
 Default constructor. More...
 
edm::EventID id () const
 Method to return the EventId. More...
 
void load (edm::SimTrackContainer &c, edm::SimTrackContainer &m) const
 Load containers of tracks (and muons) and vertices for the edm::Event. More...
 
void load (edm::SimVertexContainer &c) const
 
void load (FSimVertexTypeCollection &c) const
 
unsigned int nGenParts () const
 Number of MC particles. More...
 
unsigned int nTracks () const
 Number of tracks. More...
 
unsigned int nVertices () const
 Number of vertices. More...
 
float weight () const
 Method to return the event weight. More...
 
virtual ~FSimEvent ()
 usual virtual destructor More...
 
- Public Member Functions inherited from FBaseSimEvent
void addChargedTrack (int id)
 Add an id in the vector of charged tracks id's. More...
 
void addParticles (const HepMC::GenEvent &hev)
 Add the particles and their vertices to the list. More...
 
int addSimTrack (const RawParticle *p, int iv, int ig=-1, const HepMC::GenVertex *ev=0)
 Add a new track to the Event and to the various lists. More...
 
int addSimVertex (const XYZTLorentzVector &decayVertex, int im=-1, FSimVertexType::VertexType type=FSimVertexType::ANY)
 Add a new vertex to the Event and to the various lists. More...
 
int chargedTrack (int id) const
 return "reconstructed" charged tracks index. More...
 
void clear ()
 clear the FBaseSimEvent content before the next event More...
 
const HepMC::GenParticle * embdGenpart (int i) const
 return MC track with a given id More...
 
const SimTrackembdTrack (int i) const
 return embedded track with given id More...
 
const SimVertexembdVertex (int i) const
 return embedded vertex with given id More...
 
const FSimVertexTypeembdVertexType (int i) const
 return embedded vertex type with given id More...
 
 FBaseSimEvent (const edm::ParameterSet &kine)
 Default constructor. More...
 
void fill (const HepMC::GenEvent &hev)
 fill the FBaseSimEvent from the current HepMC::GenEvent More...
 
void fill (const std::vector< SimTrack > &, const std::vector< SimVertex > &)
 fill the FBaseSimEvent from SimTrack's and SimVert'ices More...
 
const KineParticleFilterfilter () const
 
void initializePdt (const HepPDT::ParticleDataTable *aPdt)
 Initialize the particle data table. More...
 
unsigned int nChargedTracks () const
 Number of "reconstructed" charged tracks. More...
 
unsigned int nGenParts () const
 Number of generator particles. More...
 
unsigned int nTracks () const
 Number of tracks. More...
 
unsigned int nVertices () const
 Number of vertices. More...
 
void print () const
 print the FBaseSimEvent in an intelligible way More...
 
void printMCTruth (const HepMC::GenEvent &hev)
 print the original MCTruth event More...
 
const HepPDT::ParticleDataTabletheTable () const
 Get the pointer to the particle data table. More...
 
FSimTracktrack (int id) const
 Return track with given Id. More...
 
FSimVertexvertex (int id) const
 Return vertex with given Id. More...
 
FSimVertexTypevertexType (int id) const
 Return vertex with given Id. More...
 
 ~FBaseSimEvent ()
 usual virtual destructor More...
 

Private Attributes

edm::EventID id_
 
double weight_
 

Additional Inherited Members

- Protected Member Functions inherited from FBaseSimEvent
std::vector
< HepMC::GenParticle * > * 
genparts () const
 The pointer to the vector of GenParticle's. More...
 
std::vector< FSimTrack > * tracks () const
 The pointer to the vector of FSimTrack's. More...
 
std::vector< FSimVertex > * vertices () const
 The pointer to the vector of FSimVertex's. More...
 

Detailed Description

The FAMOS SimEvent: inherits from FBaseSimEvent, where the latter provides FAMOS-specific event features (splitting proposed by Maya STAVRIANAKOU)

An FSimEvent contains, at filling time, only particles from the GenEvent it is being filled with. Material Effects then update its content, so that it resembles the output of Geant at the end of the material effect processing.

Important : All distances are in mm

Author
Patrick Janot, CERN
Date
: 9-Dec-2003

Definition at line 29 of file FSimEvent.h.

Constructor & Destructor Documentation

FSimEvent::FSimEvent ( const edm::ParameterSet kine)

Default constructor.

Definition at line 6 of file FSimEvent.cc.

7  : FBaseSimEvent(kine), id_(edm::EventID(0,0,0)), weight_(0)
8 {}
FBaseSimEvent(const edm::ParameterSet &kine)
Default constructor.
double weight_
Definition: FSimEvent.h:67
edm::EventID id_
Definition: FSimEvent.h:66
FSimEvent::~FSimEvent ( )
virtual

usual virtual destructor

Definition at line 10 of file FSimEvent.cc.

11 {}

Member Function Documentation

void FSimEvent::fill ( const HepMC::GenEvent &  hev,
edm::EventID Id 
)

fill the FBaseSimEvent from the current HepMC::GenEvent

Definition at line 14 of file FSimEvent.cc.

References FBaseSimEvent::fill(), and id_.

Referenced by FamosManager::reconstruct().

14  {
16  id_ = Id;
17 }
void fill(const HepMC::GenEvent &hev)
fill the FBaseSimEvent from the current HepMC::GenEvent
edm::EventID id_
Definition: FSimEvent.h:66
void FSimEvent::fill ( const std::vector< SimTrack > &  simTracks,
const std::vector< SimVertex > &  simVertices 
)

fill the FBaseSimEvent from the SimTrack's and SimVert'ices

Definition at line 20 of file FSimEvent.cc.

References FBaseSimEvent::fill(), and id_.

21  {
22  FBaseSimEvent::fill(simTracks,simVertices);
23  id_ = edm::EventID();
24 }
void fill(const HepMC::GenEvent &hev)
fill the FBaseSimEvent from the current HepMC::GenEvent
edm::EventID id_
Definition: FSimEvent.h:66
edm::EventID FSimEvent::id ( void  ) const

Method to return the EventId.

Definition at line 27 of file FSimEvent.cc.

References id_.

Referenced by CalorimetryManager::reconstruct().

27  {
28  return id_;
29 }
edm::EventID id_
Definition: FSimEvent.h:66
void FSimEvent::load ( edm::SimTrackContainer c,
edm::SimTrackContainer m 
) const

Load containers of tracks (and muons) and vertices for the edm::Event.

Definition at line 51 of file FSimEvent.cc.

References funct::abs(), FSimTrack::closestDaughterId(), FBaseSimEvent::embdTrack(), i, CoreSimTrack::momentum(), FSimTrack::mother(), FSimTrack::noEndVertex(), FSimTrack::noMother(), nTracks(), lumiQTWidget::t, FBaseSimEvent::track(), and CoreSimTrack::type().

Referenced by FamosProducer::produce().

52 {
53  for (unsigned int i=0; i<nTracks(); ++i) {
54  // SimTrack t = SimTrack(ip,p,iv,ig);
55  const SimTrack& t = embdTrack(i);
56  // Save all tracks
57  c.push_back(t);
58  // Save also some muons for later parameterization
59  if ( abs(t.type()) == 13 &&
60  t.momentum().perp2() > 1.0 &&
61  fabs(t.momentum().eta()) < 3.0 &&
62  track(i).noEndVertex() ) {
63  // Actually save the muon mother (and the attached muon) in case
64  if ( !track(i).noMother() && track(i).mother().closestDaughterId() == (int)i ) {
65  const SimTrack& T = embdTrack(track(i).mother().id());
66  m.push_back(T);
67  }
68  m.push_back(t);
69  }
70  }
71 }
int i
Definition: DBlmapReader.cc:9
bool noEndVertex() const
no end vertex
int closestDaughterId() const
Get the index of the closest charged daughter.
Definition: FSimTrack.h:187
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
unsigned int nTracks() const
Number of tracks.
Definition: FSimEvent.cc:36
const SimTrack & embdTrack(int i) const
return embedded track with given id
int type() const
particle type (HEP PDT convension)
Definition: CoreSimTrack.h:25
const math::XYZTLorentzVectorD & momentum() const
Definition: CoreSimTrack.h:22
bool noMother() const
no mother particle
long double T
const FSimTrack & mother() const
mother
FSimTrack & track(int id) const
Return track with given Id.
void FSimEvent::load ( edm::SimVertexContainer c) const

Definition at line 74 of file FSimEvent.cc.

References FBaseSimEvent::embdVertex(), i, and nVertices().

75 {
76  for (unsigned int i=0; i<nVertices(); ++i) {
77  // SimTrack t = SimTrack(ip,p,iv,ig);
78  c.push_back(embdVertex(i));
79  }
80 }
int i
Definition: DBlmapReader.cc:9
const SimVertex & embdVertex(int i) const
return embedded vertex with given id
unsigned int nVertices() const
Number of vertices.
Definition: FSimEvent.cc:41
void FSimEvent::load ( FSimVertexTypeCollection c) const

Definition at line 84 of file FSimEvent.cc.

References FBaseSimEvent::embdVertexType(), i, and nVertices().

85 {
86 
87  for (unsigned int i=0; i<nVertices(); ++i) {
88  c.push_back(embdVertexType(i));
89  }
90 }
int i
Definition: DBlmapReader.cc:9
const FSimVertexType & embdVertexType(int i) const
return embedded vertex type with given id
unsigned int nVertices() const
Number of vertices.
Definition: FSimEvent.cc:41
unsigned int FSimEvent::nGenParts ( ) const

Number of MC particles.

Definition at line 46 of file FSimEvent.cc.

References FBaseSimEvent::nGenParts().

Referenced by FamosManager::reconstruct().

46  {
47  return FBaseSimEvent::nGenParts();
48 }
unsigned int nGenParts() const
Number of generator particles.
Definition: FBaseSimEvent.h:94
unsigned int FSimEvent::nTracks ( ) const

Number of tracks.

Definition at line 36 of file FSimEvent.cc.

References FBaseSimEvent::nTracks().

Referenced by load(), FamosManager::reconstruct(), CalorimetryManager::reconstruct(), and TrajectoryManager::reconstruct().

36  {
37  return FBaseSimEvent::nTracks();
38 }
unsigned int nTracks() const
Number of tracks.
Definition: FBaseSimEvent.h:84
unsigned int FSimEvent::nVertices ( ) const

Number of vertices.

Definition at line 41 of file FSimEvent.cc.

References FBaseSimEvent::nVertices().

Referenced by load(), and FamosManager::reconstruct().

41  {
42  return FBaseSimEvent::nVertices();
43 }
unsigned int nVertices() const
Number of vertices.
Definition: FBaseSimEvent.h:89
float FSimEvent::weight ( void  ) const

Method to return the event weight.

Definition at line 31 of file FSimEvent.cc.

References weight_.

Referenced by cuy.ValElement::__init__(), cuy.additionElement::__init__(), cuy.superimposeElement::__init__(), cuy.graphElement::__init__(), and FamosManager::reconstruct().

31  {
32  return weight_;
33 }
double weight_
Definition: FSimEvent.h:67

Member Data Documentation

edm::EventID FSimEvent::id_
private

Definition at line 66 of file FSimEvent.h.

Referenced by fill(), and id().

double FSimEvent::weight_
private

Definition at line 67 of file FSimEvent.h.

Referenced by weight().