CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
muonisolation::PixelTrackExtractor Class Reference

#include <PixelTrackExtractor.h>

Inheritance diagram for muonisolation::PixelTrackExtractor:
reco::isodeposit::IsoDepositExtractor

Public Member Functions

reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const override
 
void fillVetos (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackCollection &track) override
 
 PixelTrackExtractor ()
 
 PixelTrackExtractor (const edm::ParameterSet &par, edm::ConsumesCollector &&iC)
 
virtual reco::IsoDeposit::Vetos vetos (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const
 
 ~PixelTrackExtractor () override
 
- Public Member Functions inherited from reco::isodeposit::IsoDepositExtractor
virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackBaseRef &track) const
 make single IsoDeposit based on trackRef as input More...
 
virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Candidate &track) const
 
virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::CandidateBaseRef &track) const
 make single IsoDeposit based on a CandidateBaseRef as input More...
 
virtual std::vector< reco::IsoDepositdeposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const
 
virtual std::vector< reco::IsoDepositdeposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackBaseRef &track) const
 
virtual std::vector< reco::IsoDepositdeposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Candidate &track) const
 
virtual std::vector< reco::IsoDepositdeposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::CandidateBaseRef &track) const
 
virtual void initEvent (const edm::Event &, const edm::EventSetup &)
 perform some constly initialization More...
 
virtual ~IsoDepositExtractor ()
 Destructor. More...
 

Private Member Functions

reco::isodeposit::Direction directionAtPresetRadius (const reco::Track &tk, double bz) const
 
reco::IsoDeposit::Veto veto (const reco::IsoDeposit::Direction &dir) const
 

Private Attributes

std::string theBeamlineOption
 Veto cone angle. More...
 
edm::EDGetTokenT< reco::BeamSpottheBeamSpotToken
 "NONE", "BeamSpotFromEvent" More...
 
double theChi2Ndof_Max
 trk.numberOfValidHits >= theNHits_Min More...
 
double theChi2Prob_Min
 trk.normalizedChi2 < theChi2Ndof_Max More...
 
std::string theDepositLabel
 Track Collection Token. More...
 
double theDiff_r
 name for deposit More...
 
double theDiff_z
 transverse distance to vertex More...
 
double theDR_Max
 z distance to vertex More...
 
double theDR_Veto
 Maximum cone angle for deposits. More...
 
double theDR_VetoPt
 .. it is above this threshold More...
 
unsigned int theNHits_Min
 BeamSpot name. More...
 
bool thePropagateTracksToRadius
 min track pt to include into iso deposit More...
 
double thePt_Min
 ChiSquaredProbability(trk.chi2,trk.ndof) > theChi2Prob_Min. More...
 
double thePtVeto_Min
 will veto leading track if More...
 
double theReferenceRadius
 If set to true will compare track eta-phi at ... More...
 
edm::EDGetTokenT< reco::TrackCollectiontheTrackCollectionToken
 
bool theVetoLeadingTrack
 ... this radius More...
 

Detailed Description

Definition at line 18 of file PixelTrackExtractor.h.

Constructor & Destructor Documentation

muonisolation::PixelTrackExtractor::PixelTrackExtractor ( )
inline

Definition at line 20 of file PixelTrackExtractor.h.

20 {};
PixelTrackExtractor::PixelTrackExtractor ( const edm::ParameterSet par,
edm::ConsumesCollector &&  iC 
)

Definition at line 21 of file PixelTrackExtractor.cc.

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")),
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 {}
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
EDGetTokenT< ProductType > mayConsume(edm::InputTag const &tag)
double theReferenceRadius
If set to true will compare track eta-phi at ...
double theChi2Ndof_Max
trk.numberOfValidHits >= theNHits_Min
double theDR_Veto
Maximum cone angle for deposits.
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
bool thePropagateTracksToRadius
min track pt to include into iso deposit
double thePtVeto_Min
will veto leading track if
edm::EDGetTokenT< reco::BeamSpot > theBeamSpotToken
"NONE", "BeamSpotFromEvent"
double theDR_Max
z distance to vertex
edm::EDGetTokenT< reco::TrackCollection > theTrackCollectionToken
double thePt_Min
ChiSquaredProbability(trk.chi2,trk.ndof) > theChi2Prob_Min.
std::string theDepositLabel
Track Collection Token.
double theDiff_z
transverse distance to vertex
std::string theBeamlineOption
Veto cone angle.
double theDR_VetoPt
.. it is above this threshold
unsigned int theNHits_Min
BeamSpot name.
double theChi2Prob_Min
trk.normalizedChi2 < theChi2Ndof_Max
muonisolation::PixelTrackExtractor::~PixelTrackExtractor ( )
inlineoverride

Definition at line 23 of file PixelTrackExtractor.h.

23 {}

Member Function Documentation

IsoDeposit PixelTrackExtractor::deposit ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::Track track 
) const
overridevirtual

make single IsoDeposit based on track as input purely virtual: have to implement in concrete implementations

Note, this can be reset below if theVetoLeadingTrack is set and conditions are met

Implements reco::isodeposit::IsoDepositExtractor.

Definition at line 71 of file PixelTrackExtractor.cc.

References reco::IsoDeposit::addCandEnergy(), reco::IsoDeposit::addDeposit(), pwdgSkimBPark_cfi::beamSpot, Calorimetry_cff::bField, PbPb_ZMuSkimMuonDPG_cff::deltaR, directionAtPresetRadius(), reco::isodeposit::Direction::eta(), reco::TrackBase::eta(), edm::EventSetup::get(), MagneticField::inInverseGeV(), edm::HandleBase::isValid(), LogTrace, MuonErrorMatrixAnalyzer_cfi::maxPt, metname, reco::isodeposit::Direction::phi(), reco::TrackBase::phi(), reco::BeamSpot::position(), reco::TrackBase::pt(), corrVsCorr::selection, reco::IsoDeposit::setVeto(), AlCaHLTBitMon_QueryRunRegistry::string, theBeamlineOption, theBeamSpotToken, theChi2Ndof_Max, theChi2Prob_Min, theDiff_r, theDiff_z, theDR_Max, theDR_VetoPt, theNHits_Min, thePt_Min, thePtVeto_Min, theTrackCollectionToken, theVetoLeadingTrack, veto(), reco::TrackBase::vz(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by fillVetos().

71  {
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 }
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:82
double theChi2Ndof_Max
trk.numberOfValidHits >= theNHits_Min
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
const std::string metname
std::list< const reco::Track * > result_type
Definition: TrackSelector.h:16
selection
main part
Definition: corrVsCorr.py:100
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:614
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:19
GlobalVector inInverseGeV(const GlobalPoint &gp) const
Field value ad specified global point, in 1/Gev.
Definition: MagneticField.h:36
reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const override
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:617
vector< ParameterSet > Parameters
double thePtVeto_Min
will veto leading track if
edm::EDGetTokenT< reco::BeamSpot > theBeamSpotToken
"NONE", "BeamSpotFromEvent"
double pt() const
track transverse momentum
Definition: TrackBase.h:602
T z() const
Definition: PV3DBase.h:61
double theDR_Max
z distance to vertex
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:132
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
bool isValid() const
Definition: HandleBase.h:70
#define LogTrace(id)
double theDiff_z
transverse distance to vertex
std::string theBeamlineOption
Veto cone angle.
reco::isodeposit::Direction directionAtPresetRadius(const reco::Track &tk, double bz) const
double theDR_VetoPt
.. it is above this threshold
unsigned int theNHits_Min
BeamSpot name.
muonisolation::Range< float > Range
Definition: TrackSelector.h:15
const Point & position() const
position
Definition: BeamSpot.h:59
double theChi2Prob_Min
trk.normalizedChi2 < theChi2Ndof_Max
Direction PixelTrackExtractor::directionAtPresetRadius ( const reco::Track tk,
double  bz 
) const
private

Definition at line 55 of file PixelTrackExtractor.cc.

References reco::TrackBase::charge(), HLT_2018_cff::dPhi, reco::TrackBase::dxy(), reco::TrackBase::eta(), reco::TrackBase::phi(), reco::TrackBase::pt(), mathSSE::sqrt(), thePropagateTracksToRadius, and theReferenceRadius.

Referenced by deposit(), and fillVetos().

55  {
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 }
double theReferenceRadius
If set to true will compare track eta-phi at ...
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:614
bool thePropagateTracksToRadius
min track pt to include into iso deposit
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:617
T sqrt(T t)
Definition: SSEVec.h:19
double pt() const
track transverse momentum
Definition: TrackBase.h:602
int charge() const
track electric charge
Definition: TrackBase.h:575
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:587
void muonisolation::PixelTrackExtractor::fillVetos ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::TrackCollection tracks 
)
inlineoverridevirtual

fill vetoes: to exclude deposits at IsoDeposit creation stage check concrete extractors if it's no-op !

Implements reco::isodeposit::IsoDepositExtractor.

Definition at line 25 of file PixelTrackExtractor.h.

References deposit(), DeadROC_duringRun::dir, directionAtPresetRadius(), ev, HLT_2018_cff::track, veto(), and vetos().

25 {}
reco::IsoDeposit::Veto PixelTrackExtractor::veto ( const reco::IsoDeposit::Direction dir) const
private
reco::IsoDeposit::Vetos PixelTrackExtractor::vetos ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::Track track 
) const
virtual

Definition at line 41 of file PixelTrackExtractor.cc.

References DeadROC_duringRun::dir, reco::TrackBase::eta(), reco::TrackBase::phi(), and veto().

Referenced by fillVetos().

43  {
44  Direction dir(track.eta(), track.phi());
45  return reco::IsoDeposit::Vetos(1, veto(dir));
46 }
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:614
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:617
std::vector< Veto > Vetos
Definition: IsoDeposit.h:65

Member Data Documentation

std::string muonisolation::PixelTrackExtractor::theBeamlineOption
private

Veto cone angle.

Definition at line 48 of file PixelTrackExtractor.h.

Referenced by deposit().

edm::EDGetTokenT<reco::BeamSpot> muonisolation::PixelTrackExtractor::theBeamSpotToken
private

"NONE", "BeamSpotFromEvent"

Definition at line 49 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::theChi2Ndof_Max
private

trk.numberOfValidHits >= theNHits_Min

Definition at line 51 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::theChi2Prob_Min
private

trk.normalizedChi2 < theChi2Ndof_Max

Definition at line 52 of file PixelTrackExtractor.h.

Referenced by deposit().

std::string muonisolation::PixelTrackExtractor::theDepositLabel
private

Track Collection Token.

Definition at line 43 of file PixelTrackExtractor.h.

double muonisolation::PixelTrackExtractor::theDiff_r
private

name for deposit

Definition at line 44 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::theDiff_z
private

transverse distance to vertex

Definition at line 45 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::theDR_Max
private

z distance to vertex

Definition at line 46 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::theDR_Veto
private

Maximum cone angle for deposits.

Definition at line 47 of file PixelTrackExtractor.h.

Referenced by veto().

double muonisolation::PixelTrackExtractor::theDR_VetoPt
private

.. it is above this threshold

Definition at line 60 of file PixelTrackExtractor.h.

Referenced by deposit().

unsigned int muonisolation::PixelTrackExtractor::theNHits_Min
private

BeamSpot name.

Definition at line 50 of file PixelTrackExtractor.h.

Referenced by deposit().

bool muonisolation::PixelTrackExtractor::thePropagateTracksToRadius
private

min track pt to include into iso deposit

Definition at line 55 of file PixelTrackExtractor.h.

Referenced by directionAtPresetRadius().

double muonisolation::PixelTrackExtractor::thePt_Min
private

ChiSquaredProbability(trk.chi2,trk.ndof) > theChi2Prob_Min.

Definition at line 53 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::thePtVeto_Min
private

will veto leading track if

Definition at line 59 of file PixelTrackExtractor.h.

Referenced by deposit().

double muonisolation::PixelTrackExtractor::theReferenceRadius
private

If set to true will compare track eta-phi at ...

Definition at line 56 of file PixelTrackExtractor.h.

Referenced by directionAtPresetRadius().

edm::EDGetTokenT<reco::TrackCollection> muonisolation::PixelTrackExtractor::theTrackCollectionToken
private

Definition at line 42 of file PixelTrackExtractor.h.

Referenced by deposit().

bool muonisolation::PixelTrackExtractor::theVetoLeadingTrack
private

... this radius

Definition at line 58 of file PixelTrackExtractor.h.

Referenced by deposit().