CMS 3D CMS Logo

IsolatedPixelTrackCandidate.cc
Go to the documentation of this file.
2 
3 using namespace reco;
4 
5 IsolatedPixelTrackCandidate::IsolatedPixelTrackCandidate(const IsolatedPixelTrackCandidate& right) : RecoCandidate(right), track_(right.track_), l1tauJet_(right.l1tauJet_) {
6  maxPtPxl_ = right.maxPtPxl_;
7  sumPtPxl_ = right.sumPtPxl_;
8  enIn_ = right.enIn_;
9  enOut_ = right.enOut_;
10  nhitIn_ = right.nhitIn_;
11  nhitOut_ = right.nhitOut_;
12  etaPhiEcal_= right.etaPhiEcal_;
13  etaEcal_ = right.etaEcal_;
14  phiEcal_ = right.phiEcal_;
15 }
16 
18 
19 
21  return new IsolatedPixelTrackCandidate( * this );
22 }
23 
25  return track_;
26 }
27 
29  return l1tauJet_;
30 }
31 
33  return l1ttauJet_;
34 }
35 
37  const RecoCandidate * o = dynamic_cast<const RecoCandidate *>( & c );
38  return ( o != nullptr && checkOverlap( track(), o->track() ) );
39 }
40 
41 std::pair<int,int> IsolatedPixelTrackCandidate::towerIndex() const {
42 
43  int ieta(0), iphi(0), nphi(72), kphi(1);
44  double etas[24]={0.000,0.087,0.174,0.261,0.348,0.435,0.522,0.609,0.696,
45  0.783,0.870,0.957,1.044,1.131,1.218,1.305,1.392,1.479,
46  1.566,1.653,1.740,1.830,1.930,2.043};
47  for (int i=1; i<24; i++) {
48  if (fabs(track_->eta())<=etas[i]) {
49  ieta = (track_->eta() > 0) ? i : -i;
50  if (i > 20) {
51  kphi = 2; nphi = 36;
52  }
53  break;
54  }
55  }
56 
57  const double dphi=M_PI/36.; //0.087266462;
58  double phi = track_->phi();
59  if (phi < 0) phi += (2*M_PI);
60  double delta = phi+(kphi*dphi);
61  for (int i=0; i<nphi; i++) {
62  if (delta<=(kphi*(i+1)*dphi)) {
63  iphi = kphi*i + 1;
64  break;
65  }
66  }
67 
68  return std::pair<int,int>(ieta,iphi);
69 
70 }
dbl * delta
Definition: mlp_gen.cc:36
double enOut_
energy in outer cone around L1 tau jet
bool checkOverlap(const R &r1, const R &r2) const
check if two components overlap
Definition: RecoCandidate.h:69
reco::TrackRef track_
reference to a Track
l1t::TauRef l1ttauJet_
reference to a S2 L1 tau jet
IsolatedPixelTrackCandidate * clone() const override
returns a clone of the candidate
virtual reco::TrackRef track() const
reference to a Track
double sumPtPxl_
Pt sum of other pixel tracks in the cone around the candidate.
double maxPtPxl_
highest Pt of other pixel tracks in the cone around the candidate
int nhitIn_
number of hits in inner cone
bool overlap(const Candidate &) const override
check overlap with another candidate
#define M_PI
virtual l1t::TauRef l1ttau() const
get reference to L1 tau jet from lt1
virtual l1extra::L1JetParticleRef l1tau() const
get reference to L1 tau jet
int nhitOut_
number of hits in inner cone
reco::TrackRef track() const override
refrence to a Track
double enIn_
energy in inner cone around L1 tau jet
fixed size matrix
l1extra::L1JetParticleRef l1tauJet_
reference to a L1 tau jet
double phi() const final
momentum azimuthal angle
std::pair< int, int > towerIndex() const
get index of tower which track is hitting