CMS 3D CMS Logo

RecoChargedCandidate.h
Go to the documentation of this file.
1 #ifndef RecoCandidate_RecoChargedCandidate_h
2 #define RecoCandidate_RecoChargedCandidate_h
3 
12 
13 namespace reco {
14 
16  public:
20  RecoChargedCandidate( Charge q , const LorentzVector & p4, const Point & vtx = Point( 0, 0, 0 ),
21  int pdgId = 0, int status = 0 ) :
22  RecoCandidate( q, p4, vtx, pdgId, status ) { }
24  RecoChargedCandidate( Charge q , const PolarLorentzVector & p4, const Point & vtx = Point( 0, 0, 0 ),
25  int pdgId = 0, int status = 0 ) :
26  RecoCandidate( q, p4, vtx, pdgId, status ) { }
28  ~RecoChargedCandidate() override;
30  RecoChargedCandidate * clone() const override;
32  void setTrack( const reco::TrackRef & r ) { track_ = r; }
34  reco::TrackRef track() const override;
35 
36  private:
38  bool overlap( const Candidate & ) const override;
41  };
42 
43 }
44 
45 #endif
reco::TrackRef track_
reference to a track
int pdgId() const final
PDG identifier.
int Charge
electric charge type
Definition: Candidate.h:35
bool overlap(const Candidate &) const override
check overlap with another candidate
RecoChargedCandidate(Charge q, const LorentzVector &p4, const Point &vtx=Point(0, 0, 0), int pdgId=0, int status=0)
constructor from values
~RecoChargedCandidate() override
destructor
reco::TrackRef track() const override
reference to a track
const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:99
RecoChargedCandidate(Charge q, const PolarLorentzVector &p4, const Point &vtx=Point(0, 0, 0), int pdgId=0, int status=0)
constructor from values
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
fixed size matrix
Structure Point Contains parameters of Gaussian fits to DMRs.
Definition: DMRtrends.cc:55
int status() const final
status word
RecoChargedCandidate * clone() const override
returns a clone of the candidate
void setTrack(const reco::TrackRef &r)
set reference to track
RecoChargedCandidate()
default constructor
math::XYZPoint Point
point in the space
Definition: LeafCandidate.h:27
math::PtEtaPhiMLorentzVector PolarLorentzVector
Lorentz vector.
Definition: Candidate.h:39