#include <DataFormats/V0Candidate/interface/V0Candidate.h>
Public Member Functions | |
void | setVertex (const Vertex &vtxIn) |
V0Candidate (Charge q, const LorentzVector &p4, const Point &vtx=Point(0, 0, 0)) | |
V0Candidate () | |
const Vertex & | vertex () const |
vertex position | |
const Vertex::CovarianceMatrix | vtxCovariance () |
Private Attributes | |
Vertex | recoVertex |
Definition at line 8 of file V0Candidate.h.
reco::V0Candidate::V0Candidate | ( | ) | [inline] |
reco::V0Candidate::V0Candidate | ( | Charge | q, | |
const LorentzVector & | p4, | |||
const Point & | vtx = Point( 0, 0, 0 ) | |||
) | [inline] |
Definition at line 5 of file V0Candidate.cc.
References reco::Vertex::position(), recoVertex, and reco::Particle::setVertex().
00005 { 00006 recoVertex = vtxIn; 00007 Particle::setVertex( vtxIn.position() ); 00008 }
const Vertex& reco::V0Candidate::vertex | ( | ) | const [inline] |
vertex position
Reimplemented from reco::Particle.
Definition at line 18 of file V0Candidate.h.
References recoVertex.
00018 { return recoVertex; }
const Vertex::CovarianceMatrix reco::V0Candidate::vtxCovariance | ( | ) | [inline] |
Definition at line 19 of file V0Candidate.h.
References reco::Vertex::covariance(), and recoVertex.
00019 { 00020 return recoVertex.covariance(); 00021 }
Vertex reco::V0Candidate::recoVertex [private] |
Definition at line 27 of file V0Candidate.h.
Referenced by setVertex(), vertex(), and vtxCovariance().