CMS 3D CMS Logo

TrackToCandidate.h
Go to the documentation of this file.
1 #ifndef RecoAlgos_TrackToCandidate_h
2 #define RecoAlgos_TrackToCandidate_h
9 
10 namespace converter {
11 
18  const reco::Track& trk = *trkRef;
19  c.setCharge(trk.charge());
20  c.setVertex(trk.vertex());
21  const reco::Track::Vector& p = trk.momentum();
22  double t = sqrt(massSqr_ + p.mag2());
23  c.setP4(reco::Candidate::LorentzVector(p.x(), p.y(), p.z(), t));
24  c.setTrack(trkRef);
25  c.setPdgId(particle_.pdgId());
26  }
27  };
28 
29  namespace helper {
30  template <>
31  struct CandConverter<reco::Track> {
33  };
34  } // namespace helper
35 
36 } // namespace converter
37 
38 #endif
Definition: helper.py:1
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
int charge() const
track electric charge
Definition: TrackBase.h:596
void convert(reco::TrackRef trkRef, reco::RecoChargedCandidate &c) const
T sqrt(T t)
Definition: SSEVec.h:23
const Point & vertex() const
reference point on the track. This method is DEPRECATED, please use referencePoint() instead ...
Definition: TrackBase.h:676
TrackToCandidate(const edm::ParameterSet &cfg, edm::ConsumesCollector iC)
int pdgId() const
PDG id.
Definition: PdtEntry.cc:5
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
const Vector & momentum() const
track momentum vector
Definition: TrackBase.h:664
reco::RecoChargedCandidate Candidate
fixed size matrix
reco::TrackCollection Components
math::XYZVector Vector
spatial vector
Definition: TrackBase.h:77