CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EgammaTrackExtractor.cc
Go to the documentation of this file.
2 
22 
23 using namespace edm;
24 using namespace std;
25 using namespace reco;
26 using namespace egammaisolation;
28 
29 EgammaTrackExtractor::EgammaTrackExtractor( const ParameterSet& par, edm::ConsumesCollector & iC ) :
30  theTrackCollectionToken(iC.consumes<View<Track> >(par.getParameter<edm::InputTag>("inputTrackCollection"))),
31  theDepositLabel(par.getUntrackedParameter<std::string>("DepositLabel")),
32  theDiff_r(par.getParameter<double>("Diff_r")),
33  theDiff_z(par.getParameter<double>("Diff_z")),
34  theDR_Max(par.getParameter<double>("DR_Max")),
35  theDR_Veto(par.getParameter<double>("DR_Veto")),
36  theBeamlineOption(par.getParameter<std::string>("BeamlineOption")),
37  theBeamSpotToken(iC.mayConsume<reco::BeamSpot>(par.getParameter<edm::InputTag>("BeamSpotLabel"))),
38  theNHits_Min(par.getParameter<unsigned int>("NHits_Min")),
39  theChi2Ndof_Max(par.getParameter<double>("Chi2Ndof_Max")),
40  theChi2Prob_Min(par.getParameter<double>("Chi2Prob_Min")),
41  thePt_Min(par.getParameter<double>("Pt_Min")),
42  dzOptionString(par.getParameter<std::string>("dzOption"))
43 {
44  if( ! dzOptionString.compare("dz") ) dzOption = EgammaTrackSelector::dz;
45  else if( ! dzOptionString.compare("vz") ) dzOption = EgammaTrackSelector::vz;
46  else if( ! dzOptionString.compare("bs") ) dzOption = EgammaTrackSelector::bs;
47  else if( ! dzOptionString.compare("vtx") )dzOption = EgammaTrackSelector::vtx;
49 
50 }
51 
53  const edm::EventSetup & evSetup, const reco::Track & track) const
54 {
55  reco::isodeposit::Direction dir(track.eta(),track.phi());
56  return reco::IsoDeposit::Vetos(1,veto(dir));
57 }
58 
60 {
62  result.vetoDir = dir;
63  result.dR = theDR_Veto;
64  return result;
65 }
66 
67 IsoDeposit EgammaTrackExtractor::deposit(const Event & event, const EventSetup & eventSetup, const Candidate & candTk) const
68 {
69  static std::string metname = "EgammaIsolationAlgos|EgammaTrackExtractor";
70 
72  double dzCut=0;
73 
74  reco::TrackBase::Point beamPoint(0,0, 0);
75  if (theBeamlineOption.compare("BeamSpotFromEvent") == 0){
76  //pick beamSpot
79 
80  event.getByToken(theBeamSpotToken,beamSpotH);
81 
82  if (beamSpotH.isValid()){
83  beamPoint = beamSpotH->position();
84  }
85  }
86 
87  Handle<View<Track> > tracksH;
88  event.getByToken(theTrackCollectionToken, tracksH);
89 
90  if( candTk.isElectron() ){
91  const reco::GsfElectron* elec = dynamic_cast<const reco::GsfElectron*>(&candTk);
92  candDir = reco::isodeposit::Direction(elec->gsfTrack()->eta(), elec->gsfTrack()->phi());
93  } else {
94  candDir = reco::isodeposit::Direction(candTk.eta(), candTk.phi());
95  }
96 
97  IsoDeposit deposit(candDir );
98  deposit.setVeto( veto(candDir) );
99  deposit.addCandEnergy(candTk.et());
100 
101  View<Track>::const_iterator itrTr = tracksH->begin();
102  View<Track>::const_iterator trEnd = tracksH->end();
103  for (itrTr = tracksH->begin();itrTr != trEnd; ++itrTr) {
104 
105  if(candDir.deltaR( reco::isodeposit::Direction(itrTr->eta(),itrTr->phi()) ) > theDR_Max )
106  continue;
107 
108  if(itrTr->normalizedChi2() > theChi2Ndof_Max)
109  continue;
110 
111  if(itrTr->pt() < thePt_Min)
112  continue;
113 
114  if(theChi2Prob_Min > 0 && ChiSquaredProbability(itrTr->chi2(), itrTr->ndof()) < theChi2Prob_Min )
115  continue;
116 
117  if(theNHits_Min > 0 && itrTr->numberOfValidHits() < theNHits_Min)
118  continue;
119 
120  if( candTk.isElectron() ){
121  const reco::GsfElectron* elec = dynamic_cast<const reco::GsfElectron*>(&candTk);
122  switch(dzOption) {
123  case EgammaTrackSelector::dz : dzCut = elec->gsfTrack()->dz() - itrTr->dz() ; break;
124  case EgammaTrackSelector::vz : dzCut = elec->gsfTrack()->vz() - itrTr->vz() ; break;
125  case EgammaTrackSelector::bs : dzCut = elec->gsfTrack()->dz(beamPoint) - itrTr->dz(beamPoint) ; break;
126  case EgammaTrackSelector::vtx: dzCut = itrTr->dz(elec->gsfTrack()->vertex()) ; break;
127  default: dzCut = elec->gsfTrack()->vz() - itrTr->vz() ; break;
128  }
129  } else {
130  switch(dzOption) {
131  case EgammaTrackSelector::dz : dzCut = (*itrTr).dz() - candTk.vertex().z() ; break;
132  case EgammaTrackSelector::vz : dzCut = (*itrTr).vz() - candTk.vertex().z() ; break;
133  case EgammaTrackSelector::bs : dzCut = (*itrTr).dz(beamPoint) - candTk.vertex().z() ; break;
134  case EgammaTrackSelector::vtx: dzCut = (*itrTr).dz(candTk.vertex()); break;
135  default : dzCut = (*itrTr).vz() - candTk.vertex().z(); break;
136  }
137  }
138 
139  if(fabs(dzCut) > theDiff_z)
140  continue;
141 
142  if(fabs(itrTr->dxy(beamPoint) ) > theDiff_r)
143  continue;
144 
145  deposit.addDeposit(reco::isodeposit::Direction(itrTr->eta(), itrTr->phi()), itrTr->pt());
146 
147  }
148 
149  return deposit;
150 }
double theDR_Veto
Maximum cone angle for deposits.
edm::EDGetTokenT< edm::View< reco::Track > > theTrackCollectionToken
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
virtual reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const
std::string dzOptionString
Endcap requirements to determine if isolated for selective filling.
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:80
virtual double et() const =0
transverse energy
const std::string metname
virtual float eta() const =0
momentum pseudorapidity
virtual float phi() const =0
momentum azimuthal angle
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:137
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
double theChi2Prob_Min
trk.normalizedChi2 &lt; theChi2Ndof_Max
double theDiff_r
minimum candidate et
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:23
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:139
double thePt_Min
ChiSquaredProbability(trk.chi2,trk.ndof) &gt; theChi2Prob_Min.
tuple result
Definition: query.py:137
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:139
float ChiSquaredProbability(double chiSquared, double nrDOF)
virtual const Point & vertex() const =0
vertex position
math::XYZPoint Point
point in the space
Definition: TrackBase.h:74
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
bool isValid() const
Definition: HandleBase.h:76
double theDiff_z
transverse distance to vertex
unsigned int theNHits_Min
BeamSpot name.
virtual reco::IsoDeposit::Vetos vetos(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const
std::vector< Veto > Vetos
Definition: IsoDeposit.h:63
edm::EDGetTokenT< reco::BeamSpot > theBeamSpotToken
double theDR_Max
z distance to vertex
dbl *** dir
Definition: mlp_gen.cc:35
double theChi2Ndof_Max
trk.numberOfValidHits &gt;= theNHits_Min
virtual bool isElectron() const =0
std::string theBeamlineOption
Veto cone angle.
double deltaR(const Direction &dir2) const
virtual GsfTrackRef gsfTrack() const
reference to a GsfTrack
Definition: GsfElectron.h:169