CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Public Attributes | Static Public Attributes
EgammaTowerIsolationNew< NC > Class Template Reference

#include <EgammaTowerIsolation.h>

Classes

struct  Sum
 

Public Member Functions

void compute (bool et, Sum &sum, reco::Candidate const &cand, CaloTowerDetId const *first, CaloTowerDetId const *last) const
 
void compute (bool et, Sum &sum, reco::SuperCluster const &sc, CaloTowerDetId const *first, CaloTowerDetId const *last) const
 
 EgammaTowerIsolationNew ()
 
 EgammaTowerIsolationNew (float extRadius[NC], float intRadius[NC], CaloTowerCollection const &towers)
 
void initSoa ()
 
void setRadius (float const extRadius[NC], float const intRadius[NC])
 
 ~EgammaTowerIsolationNew ()
 

Public Attributes

float * eta
 
float extRadius2_ [NCuts]
 
float * h2
 
float * he
 
uint32_t * id
 
float intRadius2_ [NCuts]
 
float maxEta
 
uint32_t * mem = 0
 
const uint32_t nt
 
float * phi
 
float * st
 

Static Public Attributes

static unsigned int NCuts = NC
 

Detailed Description

template<unsigned int NC>
class EgammaTowerIsolationNew< NC >

Definition at line 36 of file EgammaTowerIsolation.h.

Constructor & Destructor Documentation

template<unsigned int NC>
EgammaTowerIsolationNew< NC >::EgammaTowerIsolationNew ( )
inline
template<unsigned int NC>
EgammaTowerIsolationNew< NC >::EgammaTowerIsolationNew ( float  extRadius[NC],
float  intRadius[NC],
CaloTowerCollection const &  towers 
)
inline

Definition at line 113 of file EgammaTowerIsolation.h.

References KineDebug3::count(), MillePedeFileConverter_cfg::e, EgammaTowerIsolationNew< NC >::eta, electronEcalRecHitIsolationLcone_cfi::extRadius, EgammaTowerIsolationNew< NC >::extRadius2_, EgammaTowerIsolationNew< NC >::h2, EgammaTowerIsolationNew< NC >::he, mps_fire::i, EgammaTowerIsolationNew< NC >::initSoa(), electronHcalTowerIsolationLcone_cfi::intRadius, EgammaTowerIsolationNew< NC >::intRadius2_, dqmiolumiharvest::j, dqmdumpme::k, EgammaTowerIsolationNew< NC >::NCuts, EgammaTowerIsolationNew< NC >::nt, EgammaTowerIsolationNew< NC >::phi, and EgammaTowerIsolationNew< NC >::st.

116  : maxEta(*std::max_element(extRadius, extRadius + NC)), nt(towers.size()) {
117  if (nt == 0)
118  return;
119  initSoa();
120 
121 #ifdef ETISTATDEBUG
122  etiStat::Count::count.create++;
123 #endif
124 
125  for (std::size_t i = 0; i != NCuts; ++i) {
128  }
129 
130  // sort in eta (kd-tree anoverkill,does not vectorize...)
131  uint32_t index[nt];
132 #ifdef __clang__
133  std::vector<float> e(nt);
134 #else
135  float e[nt];
136 #endif
137  for (std::size_t k = 0; k != nt; ++k) {
138  e[k] = towers[k].eta();
139  index[k] = k;
140  std::push_heap(index, index + k + 1, [&e](uint32_t i, uint32_t j) { return e[i] < e[j]; });
141  }
142  std::sort_heap(index, index + nt, [&e](uint32_t i, uint32_t j) { return e[i] < e[j]; });
143 
144  for (std::size_t i = 0; i != nt; ++i) {
145  auto j = index[i];
146  eta[i] = towers[j].eta();
147  phi[i] = towers[j].phi();
148  id[i] = towers[j].id();
149  st[i] = 1.f / std::cosh(eta[i]); // std::sin(towers[j].theta()); //;
150  he[i] = towers[j].hadEnergy();
151  h2[i] = towers[j].hadEnergyHeOuterLayer();
152  }
153 }
static unsigned int NCuts
template<unsigned int NC>
EgammaTowerIsolationNew< NC >::~EgammaTowerIsolationNew ( )
inline

Definition at line 54 of file EgammaTowerIsolation.h.

References EgammaTowerIsolationNew< NC >::mem.

54 { delete[] mem; }

Member Function Documentation

template<unsigned int NC>
void EgammaTowerIsolationNew< NC >::compute ( bool  et,
Sum sum,
reco::Candidate const &  cand,
CaloTowerDetId const *  first,
CaloTowerDetId const *  last 
) const
inline

Definition at line 56 of file EgammaTowerIsolation.h.

References EgHLTOffHistBins_cfi::et, dqmdumpme::first, reco::Candidate::get(), dqmdumpme::last, and SimDataFormats::CaloAnalysis::sc.

57  {
58  reco::SuperCluster const& sc = *cand.get<reco::SuperClusterRef>().get();
59  return compute(et, sum, sc, first, last);
60  }
void compute(bool et, Sum &sum, reco::Candidate const &cand, CaloTowerDetId const *first, CaloTowerDetId const *last) const
template<unsigned int NC>
void EgammaTowerIsolationNew< NC >::compute ( bool  et,
Sum sum,
reco::SuperCluster const &  sc,
CaloTowerDetId const *  first,
CaloTowerDetId const *  last 
) const
inline

Definition at line 156 of file EgammaTowerIsolation.h.

References KineDebug3::count(), reco::deltaR2(), EgammaTowerIsolationNew< NC >::eta, reco::CaloCluster::eta(), EgammaTowerIsolationNew< NC >::extRadius2_, spr::find(), EgammaTowerIsolationNew< NC >::Sum::h2, EgammaTowerIsolationNew< NC >::h2, EgammaTowerIsolationNew< NC >::Sum::h2BC, EgammaTowerIsolationNew< NC >::Sum::he, EgammaTowerIsolationNew< NC >::he, EgammaTowerIsolationNew< NC >::Sum::heBC, mps_fire::i, EgammaTowerIsolationNew< NC >::intRadius2_, dqmiolumiharvest::j, EgammaTowerIsolationNew< NC >::maxEta, min(), EgammaTowerIsolationNew< NC >::NCuts, EgammaTowerIsolationNew< NC >::nt, EgammaTowerIsolationNew< NC >::phi, reco::CaloCluster::phi(), EgammaTowerIsolationNew< NC >::st, and groupFilesInBlocks::tt.

157  {
158  if (nt == 0)
159  return;
160 
161 #ifdef ETISTATDEBUG
162  etiStat::Count::count.comp++;
163 #endif
164 
165  float candEta = sc.eta();
166  float candPhi = sc.phi();
167 
168  auto lb = std::lower_bound(eta, eta + nt, candEta - maxEta);
169  auto ub = std::upper_bound(lb, eta + nt, candEta + maxEta);
170  uint32_t il = lb - eta;
171  uint32_t iu = std::min(nt, uint32_t(ub - eta + 1));
172 
173 #ifdef ETISTATDEBUG
174  etiStat::Count::count.span += (iu - il);
175 #endif
176 
177  // should be restricted in eta....
178  for (std::size_t i = il; i != iu; ++i) {
179  float dr2 = reco::deltaR2(candEta, candPhi, eta[i], phi[i]);
180  float tt = et ? st[i] : 1.f;
181  for (std::size_t j = 0; j != NCuts; ++j) {
182  if (dr2 < extRadius2_[j]) {
183  if (dr2 >= intRadius2_[j]) {
184  sum.he[j] += he[i] * tt;
185  sum.h2[j] += h2[i] * tt;
186  }
187  if (std::find(first, last, id[i]) == last) {
188  sum.heBC[j] += he[i] * tt;
189  sum.h2BC[j] += h2[i] * tt;
190  }
191  }
192  }
193  }
194 }
float phi() const
Momentum azimuthal angle. Note this is taken from the first SimTrack only.
Definition: SimCluster.h:140
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
static unsigned int NCuts
T min(T a, T b)
Definition: MathUtil.h:58
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
float eta() const
Momentum pseudorapidity. Note this is taken from the simtrack before the calorimeter.
Definition: SimCluster.h:148
template<unsigned int NC>
void EgammaTowerIsolationNew< NC >::initSoa ( )
inline
template<unsigned int NC>
void EgammaTowerIsolationNew< NC >::setRadius ( float const  extRadius[NC],
float const  intRadius[NC] 
)
inline

Member Data Documentation

template<unsigned int NC>
float* EgammaTowerIsolationNew< NC >::eta
template<unsigned int NC>
float EgammaTowerIsolationNew< NC >::extRadius2_[NCuts]
template<unsigned int NC>
float* EgammaTowerIsolationNew< NC >::h2
template<unsigned int NC>
float* EgammaTowerIsolationNew< NC >::he
template<unsigned int NC>
uint32_t* EgammaTowerIsolationNew< NC >::id

Definition at line 84 of file EgammaTowerIsolation.h.

template<unsigned int NC>
float EgammaTowerIsolationNew< NC >::intRadius2_[NCuts]
template<unsigned int NC>
float EgammaTowerIsolationNew< NC >::maxEta
template<unsigned int NC>
uint32_t* EgammaTowerIsolationNew< NC >::mem = 0
template<unsigned int NC>
unsigned int EgammaTowerIsolationNew< NC >::NCuts = NC
static
template<unsigned int NC>
const uint32_t EgammaTowerIsolationNew< NC >::nt
template<unsigned int NC>
float* EgammaTowerIsolationNew< NC >::phi
template<unsigned int NC>
float* EgammaTowerIsolationNew< NC >::st