#include <TxyCalculator.h>
Public Member Functions | |
int | getNumAllTracks (double ptCut) |
int | getNumLocalTracks (const reco::SuperClusterRef p, double detaCut, double ptCut) |
double | getTxy (const reco::SuperClusterRef p, double x, double y) |
TxyCalculator (const edm::Event &iEvent, const edm::EventSetup &iSetup, edm::InputTag trackLabel) | |
Private Member Functions | |
double | calcDphi (double phi1_, double phi2_) |
double | dRDistance (double eta1, double phi1, double eta2, double phi2) |
Private Attributes | |
edm::Handle < reco::TrackCollection > | recCollection |
Definition at line 25 of file TxyCalculator.h.
TxyCalculator::TxyCalculator | ( | const edm::Event & | iEvent, |
const edm::EventSetup & | iSetup, | ||
edm::InputTag | trackLabel | ||
) |
Definition at line 13 of file TxyCalculator.cc.
References edm::Event::getByLabel().
{ // Get reconstructed tracks iEvent.getByLabel(trackLabel, recCollection); // !! }
double TxyCalculator::calcDphi | ( | double | phi1_, |
double | phi2_ | ||
) | [inline, private] |
double TxyCalculator::dRDistance | ( | double | eta1, |
double | phi1, | ||
double | eta2, | ||
double | phi2 | ||
) | [inline, private] |
Definition at line 35 of file TxyCalculator.h.
References calcDphi(), and mathSSE::sqrt().
int TxyCalculator::getNumAllTracks | ( | double | ptCut | ) |
Definition at line 20 of file TxyCalculator.cc.
References ExpressReco_HICollisions_FallBack::pt, and dt_offlineAnalysis_common_cff::reco.
{ using namespace edm; using namespace reco; int nTracks = 0; for(reco::TrackCollection::const_iterator recTrack = recCollection->begin(); recTrack!= recCollection->end(); recTrack++) { double pt = recTrack->pt(); if ( pt > ptCut) nTracks = nTracks +1; } return nTracks; }
int TxyCalculator::getNumLocalTracks | ( | const reco::SuperClusterRef | p, |
double | detaCut, | ||
double | ptCut | ||
) |
Definition at line 38 of file TxyCalculator.cc.
References ExpressReco_HICollisions_FallBack::pt, and dt_offlineAnalysis_common_cff::reco.
{ using namespace edm; using namespace reco; int nTracks = 0; double eta1 = p->eta(); double phi1 = p->phi(); for(reco::TrackCollection::const_iterator recTrack = recCollection->begin(); recTrack!= recCollection->end(); recTrack++) { double pt = recTrack->pt(); if ( (pt > ptCut) && ( fabs(eta1 - recTrack->eta()) < detaCut) && ( fabs(calcDphi(recTrack->phi(),phi1)) < 3.141592/2. ) ) nTracks= nTracks +1; } return nTracks; }
double TxyCalculator::getTxy | ( | const reco::SuperClusterRef | p, |
double | x, | ||
double | y | ||
) |
Definition at line 58 of file TxyCalculator.cc.
References ExpressReco_HICollisions_FallBack::pt, and dt_offlineAnalysis_common_cff::reco.
Referenced by HiEgammaIsolationProducer::produce().
{ using namespace edm; using namespace reco; /* if(!recCollection) { LogError("TxyCalculator") << "Error! The track container is not found."; return -100; } */ double eta1 = p->eta(); double phi1 = p->phi(); float txy = 0; for(reco::TrackCollection::const_iterator recTrack = recCollection->begin(); recTrack!= recCollection->end(); recTrack++) { double pt = recTrack->pt(); double eta2 = recTrack->eta(); double phi2 = recTrack->phi(); if(dRDistance(eta1,phi1,eta2,phi2) >= 0.1 * x) continue; if(pt > y * 0.4) txy = txy + 1; } return txy; }
Definition at line 58 of file TxyCalculator.h.