1 #ifndef EgammaTowerIsolation_h
2 #define EgammaTowerIsolation_h
35 template <
unsigned int NC>
47 constexpr
static unsigned int NCuts = NC;
59 return compute(et, sum, sc, first, last);
64 void setRadius(
float const extRadius[NC],
float const intRadius[NC]) {
65 for (std::size_t
i = 0;
i !=
NCuts; ++
i) {
69 maxEta = *std::max_element(extRadius, extRadius + NC);
85 uint32_t*
mem =
nullptr;
87 mem =
new uint32_t[
nt * 6];
93 id = (uint32_t*)(
st) +
nt;
102 std::atomic<uint32_t>
create = 0;
103 std::atomic<uint32_t>
comp = 0;
104 std::atomic<uint32_t> span = 0;
112 template <
unsigned int NC>
116 :
maxEta(*std::max_element(extRadius, extRadius + NC)),
nt(towers.
size()) {
125 for (std::size_t
i = 0;
i !=
NCuts; ++
i) {
133 std::vector<float>
e(
nt);
137 for (std::size_t
k = 0;
k !=
nt; ++
k) {
138 e[
k] = towers[
k].eta();
140 std::push_heap(index, index +
k + 1, [&e](uint32_t
i, uint32_t
j) {
return e[
i] < e[
j]; });
142 std::sort_heap(index, index +
nt, [&e](uint32_t
i, uint32_t
j) {
return e[
i] < e[
j]; });
144 for (std::size_t i = 0; i !=
nt; ++
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]);
150 he[
i] = towers[
j].hadEnergy();
151 h2[
i] = towers[
j].hadEnergyHeOuterLayer();
155 template <
unsigned int NC>
156 template <
typename I>
166 float candEta = sc.
eta();
167 float candPhi = sc.
phi();
171 uint32_t il = lb -
eta;
172 uint32_t iu =
std::min(
nt, uint32_t(ub - eta + 1));
179 for (std::size_t
i = il;
i != iu; ++
i) {
181 float tt = et ? st[
i] : 1.f;
182 for (std::size_t
j = 0;
j != NCuts; ++
j) {
183 if (dr2 < extRadius2_[
j]) {
184 if (dr2 >= intRadius2_[j]) {
188 if (
std::find(first, last,
id[i]) == last) {
207 return getSum(
true, sc, detIdToExclude);
211 return getSum(
false, sc, detIdToExclude);
214 const std::vector<CaloTowerDetId>* detIdToExclude =
nullptr)
const {
215 return getSum(
true, *sc, detIdToExclude);
218 return getSum(
false, *sc, detIdToExclude);
double getTowerESum(const reco::Candidate *cand, const std::vector< CaloTowerDetId > *detIdToExclude=nullptr) const
double getSum(bool et, reco::SuperCluster const &sc, const std::vector< CaloTowerDetId > *detIdToExclude) const
EgammaTowerIsolationNew()
__host__ __device__ constexpr RandomIt upper_bound(RandomIt first, RandomIt last, const T &value, Compare comp={})
static constexpr unsigned int NCuts
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
double eta() const
pseudorapidity of cluster centroid
~EgammaTowerIsolationNew()
double getTowerEtSum(reco::SuperCluster const *sc, const std::vector< CaloTowerDetId > *detIdToExclude=nullptr) const
void setRadius(float const extRadius[NC], float const intRadius[NC])
const std::complex< double > I
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
double getTowerESum(reco::SuperCluster const *sc, const std::vector< CaloTowerDetId > *detIdToExclude=nullptr) const
__host__ __device__ constexpr RandomIt lower_bound(RandomIt first, RandomIt last, const T &value, Compare comp={})
T get() const
get a component
EgammaTowerIsolation(float extRadiusI, float intRadiusI, float etLow, signed int depth, const CaloTowerCollection *towers)
double phi() const
azimuthal angle of cluster centroid
tuple size
Write out results.
void compute(bool et, Sum &sum, reco::Candidate const &cand, I first, I last) const
double getTowerEtSum(const reco::Candidate *cand, const std::vector< CaloTowerDetId > *detIdToExclude=nullptr) const