CMS 3D CMS Logo

PixelTrackExtractor.cc
Go to the documentation of this file.
1 #include "PixelTrackExtractor.h"
2 
5 #include "TrackSelector.h"
10 
11 using namespace edm;
12 using namespace std;
13 using namespace reco;
14 using namespace muonisolation;
16 
17 PixelTrackExtractor::PixelTrackExtractor(const ParameterSet& par, edm::ConsumesCollector&& iC)
18  : theFieldToken(iC.esConsumes()),
19  theTrackCollectionToken(iC.consumes<TrackCollection>(par.getParameter<edm::InputTag>("inputTrackCollection"))),
20  theDepositLabel(par.getUntrackedParameter<string>("DepositLabel")),
21  theDiff_r(par.getParameter<double>("Diff_r")),
22  theDiff_z(par.getParameter<double>("Diff_z")),
23  theDR_Max(par.getParameter<double>("DR_Max")),
24  theDR_Veto(par.getParameter<double>("DR_Veto")),
25  theBeamlineOption(par.getParameter<string>("BeamlineOption")),
26  theBeamSpotToken(iC.mayConsume<BeamSpot>(par.getParameter<edm::InputTag>("BeamSpotLabel"))),
27  theNHits_Min(par.getParameter<unsigned int>("NHits_Min")),
28  theChi2Ndof_Max(par.getParameter<double>("Chi2Ndof_Max")),
29  theChi2Prob_Min(par.getParameter<double>("Chi2Prob_Min")),
30  thePt_Min(par.getParameter<double>("Pt_Min")),
31  thePropagateTracksToRadius(par.getParameter<bool>("PropagateTracksToRadius")),
32  theReferenceRadius(par.getParameter<double>("ReferenceRadius")),
33  theVetoLeadingTrack(par.getParameter<bool>("VetoLeadingTrack")),
34  thePtVeto_Min(par.getParameter<double>("PtVeto_Min")),
35  theDR_VetoPt(par.getParameter<double>("DR_VetoPt"))
36 {}
37 
39  const edm::EventSetup& evSetup,
40  const reco::Track& track) const {
41  Direction dir(track.eta(), track.phi());
42  return reco::IsoDeposit::Vetos(1, veto(dir));
43 }
44 
47  result.vetoDir = dir;
48  result.dR = theDR_Veto;
49  return result;
50 }
51 
54  return Direction(tk.eta(), tk.phi());
55  }
56 
57  // this should represent a cylinder in global frame at R=refRadius cm, roughly where mid-layer of pixels is
58  double psRadius = theReferenceRadius;
59  double tkDxy = tk.dxy();
60  double s2D = fabs(tk.dxy()) < psRadius ? sqrt(psRadius * psRadius - tkDxy * tkDxy) : 0;
61 
62  // the field we get from the caller is already in units of GeV/cm
63  double dPhi = -s2D * tk.charge() * bz / tk.pt();
64 
65  return Direction(tk.eta(), tk.phi() + dPhi);
66 }
67 
69  static const std::string metname = "MuonIsolation|PixelTrackExtractor";
70 
71  auto const& bField = eventSetup.getData(theFieldToken);
72  double bz = bField.inInverseGeV(GlobalPoint(0., 0., 0.)).z();
73 
75  IsoDeposit deposit(muonDir);
77  deposit.setVeto(veto(muonDir));
78 
80 
82  event.getByToken(theTrackCollectionToken, tracksH);
83  // const TrackCollection tracks = *(tracksH.product());
84  LogTrace(metname) << "***** TRACK COLLECTION SIZE: " << tracksH->size();
85 
86  double vtx_z = muon.vz();
87  LogTrace(metname) << "***** Muon vz: " << vtx_z;
88  reco::TrackBase::Point beamPoint(0, 0, 0);
89 
90  if (theBeamlineOption == "BeamSpotFromEvent") {
91  //pick beamSpot
94 
95  event.getByToken(theBeamSpotToken, beamSpotH);
96 
97  if (beamSpotH.isValid()) {
98  beamPoint = beamSpotH->position();
99  LogTrace(metname) << "Extracted beam point at " << beamPoint << std::endl;
100  }
101  }
102 
103  LogTrace(metname) << "Using beam point at " << beamPoint << std::endl;
104 
106  TrackSelector::Range(vtx_z - theDiff_z, vtx_z + theDiff_z), theDiff_r, muonDir, theDR_Max, beamPoint);
107 
108  pars.nHitsMin = theNHits_Min;
109  pars.chi2NdofMax = theChi2Ndof_Max;
110  pars.chi2ProbMin = theChi2Prob_Min;
111  pars.ptMin = thePt_Min;
112 
113  TrackSelector selection(pars);
114  TrackSelector::result_type sel_tracks = selection(*tracksH);
115  LogTrace(metname) << "all tracks: " << tracksH->size() << " selected: " << sel_tracks.size();
116 
117  double maxPt = -1;
118  Direction maxPtDir;
119  TrackSelector::result_type::const_iterator tkI = sel_tracks.begin();
120  for (; tkI != sel_tracks.end(); ++tkI) {
121  const reco::Track* tk = *tkI;
122  LogTrace(metname) << "This track has: pt= " << tk->pt() << ", eta= " << tk->eta() << ", phi= " << tk->phi();
123  Direction dirTrk(directionAtPresetRadius(*tk, bz));
124  deposit.addDeposit(dirTrk, tk->pt());
125  double tkDr = (muonDir - dirTrk).deltaR;
126  double tkPt = tk->pt();
127  if (theVetoLeadingTrack && tkPt > thePtVeto_Min && tkDr < theDR_VetoPt && maxPt < tkPt) {
128  maxPt = tkPt;
129  maxPtDir = dirTrk;
130  }
131  }
132  if (maxPt > 0) {
133  deposit.setVeto(veto(maxPtDir));
134  LogTrace(metname) << " Set track veto the leading track with pt " << maxPt << " in direction (eta,phi) "
135  << maxPtDir.eta() << ", " << maxPtDir.phi();
136  }
137 
138  return deposit;
139 }
reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const override
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
double theReferenceRadius
If set to true will compare track eta-phi at ...
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:82
const Point & position() const
position
Definition: BeamSpot.h:59
double theChi2Ndof_Max
trk.numberOfValidHits >= theNHits_Min
virtual reco::IsoDeposit::Vetos vetos(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const
const std::string metname
double theDR_Veto
Maximum cone angle for deposits.
std::list< const reco::Track * > result_type
Definition: TrackSelector.h:16
selection
main part
Definition: corrVsCorr.py:100
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:19
#define LogTrace(id)
bool thePropagateTracksToRadius
min track pt to include into iso deposit
double pt() const
track transverse momentum
Definition: TrackBase.h:637
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
int charge() const
track electric charge
Definition: TrackBase.h:596
double thePtVeto_Min
will veto leading track if
T sqrt(T t)
Definition: SSEVec.h:19
edm::EDGetTokenT< reco::BeamSpot > theBeamSpotToken
"NONE", "BeamSpotFromEvent"
double theDR_Max
z distance to vertex
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:132
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:649
edm::EDGetTokenT< reco::TrackCollection > theTrackCollectionToken
double thePt_Min
ChiSquaredProbability(trk.chi2,trk.ndof) > theChi2Prob_Min.
math::XYZPoint Point
point in the space
Definition: TrackBase.h:80
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:652
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > theFieldToken
maxPt
Definition: PV_cfg.py:224
double theDiff_z
transverse distance to vertex
bool isValid() const
Definition: HandleBase.h:70
std::string theBeamlineOption
Veto cone angle.
std::vector< AlignmentParameters * > Parameters
Definition: Utilities.h:32
std::vector< Veto > Vetos
Definition: IsoDeposit.h:65
fixed size matrix
HLT enums.
double theDR_VetoPt
.. it is above this threshold
unsigned int theNHits_Min
BeamSpot name.
muonisolation::Range< float > Range
Definition: TrackSelector.h:15
double theChi2Prob_Min
trk.normalizedChi2 < theChi2Ndof_Max
reco::isodeposit::Direction directionAtPresetRadius(const reco::Track &tk, double bz) const
Definition: event.py:1
double dxy() const
dxy parameter. (This is the transverse impact parameter w.r.t. to (0,0,0) ONLY if refPoint is close t...
Definition: TrackBase.h:608