#include <DataFormats/HepMCCandidate/interface/GenParticle.h>
Public Member Functions | |
GenParticle * | clone () const |
return a clone | |
GenParticle (Charge q, const PolarLorentzVector &p4, const Point &vtx, int pdgId, int status, bool integerCharge) | |
constrocturo from values | |
GenParticle (Charge q, const LorentzVector &p4, const Point &vtx, int pdgId, int status, bool integerCharge) | |
constrocturo from values | |
GenParticle (const Particle &p) | |
default constructor | |
GenParticle () | |
default constructor | |
virtual | ~GenParticle () |
destructor | |
Private Member Functions | |
bool | overlap (const Candidate &) const |
checp overlap with another candidate |
Definition at line 21 of file GenParticle.h.
reco::GenParticle::GenParticle | ( | ) | [inline] |
reco::GenParticle::GenParticle | ( | const Particle & | p | ) | [inline] |
default constructor
Definition at line 26 of file GenParticle.h.
00026 : 00027 CompositeRefCandidateT<GenParticleRefVector>(p) { }
GenParticle::GenParticle | ( | Charge | q, | |
const LorentzVector & | p4, | |||
const Point & | vtx, | |||
int | pdgId, | |||
int | status, | |||
bool | integerCharge | |||
) |
constrocturo from values
Definition at line 6 of file GenParticle.cc.
00007 : 00008 CompositeRefCandidateT<GenParticleRefVector>( q, p4, vtx, pdgId, status, integerCharge ) { 00009 }
GenParticle::GenParticle | ( | Charge | q, | |
const PolarLorentzVector & | p4, | |||
const Point & | vtx, | |||
int | pdgId, | |||
int | status, | |||
bool | integerCharge | |||
) |
constrocturo from values
Definition at line 11 of file GenParticle.cc.
00012 : 00013 CompositeRefCandidateT<GenParticleRefVector>( q, p4, vtx, pdgId, status, integerCharge ) { 00014 }
GenParticle::~GenParticle | ( | ) | [virtual] |
GenParticle * GenParticle::clone | ( | void | ) | const [virtual] |
return a clone
Reimplemented from reco::CompositeRefCandidateT< D >.
Definition at line 22 of file GenParticle.cc.
References GenParticle().
00022 { 00023 return new GenParticle( * this ); 00024 }
checp overlap with another candidate
Reimplemented from reco::CompositeRefCandidateT< D >.
Definition at line 18 of file GenParticle.cc.