CMS 3D CMS Logo

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