CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
JetTracksAssociationDRVertex.cc
Go to the documentation of this file.
1 // Associate jets with tracks by simple "dR" criteria
2 // Fedor Ratnikov (UMd), Aug. 28, 2007
3 
5 
8 
11 
12 
14 : mDeltaR2Threshold (fDr*fDr)
15 {}
16 
18  const std::vector <edm::RefToBase<reco::Jet> >& fJets,
19  const std::vector <reco::TrackRef>& fTracks) const
20 {
21  // cache tracks kinematics
22  std::vector <math::RhoEtaPhiVector> trackP3s;
23  trackP3s.reserve (fTracks.size());
24  for (unsigned i = 0; i < fTracks.size(); ++i) {
25  const reco::Track* track = &*(fTracks[i]);
26  trackP3s.push_back (math::RhoEtaPhiVector (track->p(),track->eta(), track->phi()));
27  }
28  //loop on jets and associate
29  for (unsigned j = 0; j < fJets.size(); ++j) {
30  reco::TrackRefVector assoTracks;
31  const reco::Jet* jet = &*(fJets[j]);
32  double jetEta = jet->eta();
33  double jetPhi = jet->phi();
34  for (unsigned t = 0; t < fTracks.size(); ++t) {
35  double dR2 = deltaR2 (jetEta, jetPhi, trackP3s[t].eta(), trackP3s[t].phi());
36  if (dR2 < mDeltaR2Threshold) assoTracks.push_back (fTracks[t]);
37  }
38  reco::JetTracksAssociation::setValue (fAssociation, fJets[j], assoTracks);
39  }
40 }
double p() const
momentum vector magnitude
Definition: TrackBase.h:602
int i
Definition: DBlmapReader.cc:9
Base class for all types of Jets.
Definition: Jet.h:20
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:632
RhoEtaPhiVectorD RhoEtaPhiVector
spatial vector with cylindrical internal representation using pseudorapidity
Definition: Vector3D.h:32
virtual double eta() const
momentum pseudorapidity
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:638
bool setValue(Container &, const reco::JetBaseRef &, reco::TrackRefVector)
associate jet with value. Returns false and associate nothing if jet is already associated ...
double mDeltaR2Threshold
fidutial dR between track in the vertex and jet&#39;s reference direction
void produce(reco::JetTracksAssociation::Container *fAssociation, const std::vector< edm::RefToBase< reco::Jet > > &fJets, const std::vector< reco::TrackRef > &fTracks) const
int j
Definition: DBlmapReader.cc:9
double deltaR2(const T1 &t1, const T2 &t2)
Definition: deltaR.h:36
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:62
virtual double phi() const
momentum azimuthal angle