Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
#include "Calibration/IsolatedParticles/interface/DebugInfo.h"
#include "Calibration/IsolatedParticles/interface/FindCaloHit.h"
#include "Calibration/IsolatedParticles/interface/FindEtaPhi.h"
#include "Calibration/IsolatedParticles/interface/FindDistCone.h"
#include "Calibration/IsolatedParticles/interface/MatrixHCALDetIds.h"
#include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"

#include <algorithm>
#include <iostream>
#include <sstream>

namespace spr {

  //*** Returns energy in NxN Hcal towers
  template <typename T>
  double eHCALmatrix(const HcalTopology* topology,
                     const DetId& det0,
                     edm::Handle<T>& hits,
                     int ieta,
                     int iphi,
                     bool includeHO,
                     bool algoNew,
                     double hbThr,
                     double heThr,
                     double hfThr,
                     double hoThr,
                     double tMin,
                     double tMax,
                     int useRaw,
                     bool debug) {
    std::vector<typename T::const_iterator> hit;
    HcalDetId hcid0(det0.rawId());
    HcalDetId hcid(hcid0.subdet(), hcid0.ieta(), hcid0.iphi(), 1);
    DetId det(hcid.rawId());
    if (debug)
      edm::LogVerbatim("IsoTrack") << "Inside eHCALmatrix " << 2 * ieta + 1 << "X" << 2 * iphi + 1 << " AlgoNew "
                                   << algoNew << " Inclusion of HO Flag " << includeHO;
    double energySum = 0.0;
    if (algoNew) {
      energySum = spr::energyHCALmatrixNew(
          topology, det, hits, ieta, iphi, includeHO, hbThr, heThr, hfThr, hoThr, tMin, tMax, useRaw, debug);
    } else {
      edm::LogVerbatim("IsoTrack") << "eHCALmatrix:: Algorithm New = " << algoNew
                                   << " not supported - call directly spr::energyHCALmatrix ";
      //       energySum = spr::energyHCALmatrix(topology, det, hits, ieta, iphi, includeHO, hbThr, heThr, hfThr, hoThr, tMin, tMax, useRaw, debug);
    }

    if (debug)
      edm::LogVerbatim("IsoTrack") << "eHCALmatrix::Total energy " << energySum;
    return energySum;
  }

  template <typename T>
  double eHCALmatrix(const HcalTopology* topology,
                     const DetId& det0,
                     edm::Handle<T>& hits,
                     int ietaE,
                     int ietaW,
                     int iphiN,
                     int iphiS,
                     bool includeHO,
                     double hbThr,
                     double heThr,
                     double hfThr,
                     double hoThr,
                     double tMin,
                     double tMax,
                     int useRaw,
                     bool debug) {
    HcalDetId hcid0(det0.rawId());
    HcalDetId hcid(hcid0.subdet(), hcid0.ieta(), hcid0.iphi(), 1);
    DetId det(hcid.rawId());
    if (debug)
      edm::LogVerbatim("IsoTrack") << "Inside eHCALmatrix " << ietaE + ietaW + 1 << "X" << iphiN + iphiS + 1
                                   << " Inclusion of HO Flag " << includeHO;

    return spr::energyHCALmatrixTotal(topology,
                                      det,
                                      hits,
                                      ietaE,
                                      ietaW,
                                      iphiN,
                                      iphiS,
                                      includeHO,
                                      hbThr,
                                      heThr,
                                      hfThr,
                                      hoThr,
                                      tMin,
                                      tMax,
                                      useRaw,
                                      debug);
  }

  // NxN method modified to return rechit vectors for hitmaps
  template <typename T>
  double eHCALmatrix(const HcalTopology* topology,
                     const DetId& det0,
                     edm::Handle<T>& hits,
                     int ieta,
                     int iphi,
                     int& nRecHits,
                     std::vector<int>& RH_ieta,
                     std::vector<int>& RH_iphi,
                     std::vector<double>& RH_ene,
                     std::set<int>& uniqueIdset,
                     int useRaw) {
    bool debug = false;
    bool includeHO = false;
    HcalDetId hcid0(det0.rawId());
    HcalDetId hcid(hcid0.subdet(), hcid0.ieta(), hcid0.iphi(), 1);
    DetId det(hcid.rawId());

    std::vector<typename T::const_iterator> hit;
    spr::hitHCALmatrix(topology, det, hits, ieta, iphi, hit, includeHO, debug);

    nRecHits = -99;
    double energySum = 0.0;
    for (unsigned int ihit = 0; ihit < hit.size(); ihit++) {
      energySum += spr::getEnergy(hit[ihit], useRaw);
      int eta(-99);
      int phi(-99);
      // Get eta phi for counting unique cells
      spr::getEtaPhi(hit[ihit], eta, phi);
      // Put eta phi in vectors
      RH_ieta.push_back(hit[ihit]->id().ieta());
      RH_iphi.push_back(hit[ihit]->id().iphi());
      RH_ene.push_back(hit[ihit]->energy());
      int uniqueEtaPhiId = 100 * eta + phi;
      uniqueIdset.insert(uniqueEtaPhiId);
    }
    nRecHits = uniqueIdset.size();
    return energySum;
  }

  // NxN method modified to return rechit vectors for hitmaps
  // and hottest cell info
  template <typename T>
  double eHCALmatrix(const CaloGeometry* geo,
                     const HcalTopology* topology,
                     const DetId& det0,
                     edm::Handle<T>& hits,
                     int ieta,
                     int iphi,
                     int& nRecHits,
                     std::vector<int>& RH_ieta,
                     std::vector<int>& RH_iphi,
                     std::vector<double>& RH_ene,
                     GlobalPoint& gPosHotCell,
                     int useRaw) {
    bool debug = false;
    bool includeHO = false;
    HcalDetId hcid0(det0.rawId());
    HcalDetId hcid(hcid0.subdet(), hcid0.ieta(), hcid0.iphi(), 1);
    DetId det(hcid.rawId());

    std::vector<typename T::const_iterator> hit;
    spr::hitHCALmatrix(topology, det, hits, ieta, iphi, hit, includeHO, debug);
    double energyMax = -99.;
    int hottestIndex = -99;

    nRecHits = -99;
    double energySum = 0.0;
    std::set<int> uniqueIdset;

    for (unsigned int ihit = 0; ihit < hit.size(); ihit++) {
      // Sum energy getting hottest cell for later
      double energy = getEnergy(hit.at(ihit), useRaw);
      if (energy > energyMax) {
        energyMax = energy;
        hottestIndex = ihit;
      }
      energySum += energy;
      int eta(-99);
      int phi(-99);
      // Get eta phi for counting unique cells
      spr::getEtaPhi(hit[ihit], eta, phi);
      // Put eta phi in vectors
      RH_ieta.push_back(hit[ihit]->id().ieta());
      RH_iphi.push_back(hit[ihit]->id().iphi());
      RH_ene.push_back(hit[ihit]->energy());
      int uniqueEtaPhiId = 100 * eta + phi;
      uniqueIdset.insert(uniqueEtaPhiId);
    }

    // Get dist from center of cluster to hottest cell:
    if (hottestIndex != -99) {
      gPosHotCell = spr::getGpos(geo, hit.at(hottestIndex));
    }

    nRecHits = uniqueIdset.size();
    return energySum;
  }

  template <typename T>
  double eHCALmatrix(const CaloGeometry* geo,
                     const HcalTopology* topology,
                     const DetId& det0,
                     edm::Handle<T>& hits,
                     int ieta,
                     int iphi,
                     HcalDetId& hotCell,
                     bool includeHO,
                     int useRaw,
                     bool debug) {
    HcalDetId hcid0(det0.rawId());
    HcalDetId hcid(hcid0.subdet(), hcid0.ieta(), hcid0.iphi(), 1);
    DetId det(hcid.rawId());

    std::vector<typename T::const_iterator> hit;
    spr::hitHCALmatrix(topology, det, hits, ieta, iphi, hit, includeHO, debug);

    double energySum(0);
    for (unsigned int ihit = 0; ihit < hit.size(); ihit++)
      energySum += getEnergy(hit.at(ihit), useRaw);

    // Get hotCell ID
    hotCell = getHotCell(hit, includeHO, useRaw, debug);
    return energySum;
  }

  template <typename T>
  double energyHCALmatrixNew(const HcalTopology* topology,
                             const DetId& det,
                             edm::Handle<T>& hits,
                             int ieta,
                             int iphi,
                             bool includeHO,
                             double hbThr,
                             double heThr,
                             double hfThr,
                             double hoThr,
                             double tMin,
                             double tMax,
                             int useRaw,
                             bool debug) {
    std::vector<DetId> dets(1, det);
    std::vector<DetId> vdets = spr::matrixHCALIds(dets, topology, ieta, iphi, includeHO, false);
    if (debug) {
      edm::LogVerbatim("IsoTrack") << "matrixHCALIds::Total number of cells found is " << vdets.size();
      spr::debugHcalDets(0, vdets);
    }
    return spr::energyHCAL(vdets, hits, hbThr, heThr, hfThr, hoThr, tMin, tMax, useRaw, debug);
  }

  template <typename T>
  double energyHCALmatrixTotal(const HcalTopology* topology,
                               const DetId& det,
                               edm::Handle<T>& hits,
                               int ietaE,
                               int ietaW,
                               int iphiN,
                               int iphiS,
                               bool includeHO,
                               double hbThr,
                               double heThr,
                               double hfThr,
                               double hoThr,
                               double tMin,
                               double tMax,
                               int useRaw,
                               bool debug) {
    std::vector<DetId> dets(1, det);
    std::vector<DetId> vdets = spr::matrixHCALIds(dets, topology, ietaE, ietaW, iphiN, iphiS, includeHO, debug);
    return spr::energyHCAL(vdets, hits, hbThr, heThr, hfThr, hoThr, tMin, tMax, useRaw, debug);
  }

  template <typename T>
  void hitHCALmatrix(const HcalTopology* topology,
                     const DetId& det,
                     edm::Handle<T>& hits,
                     int ieta,
                     int iphi,
                     std::vector<typename T::const_iterator>& hitlist,
                     bool includeHO,
                     bool debug) {
    std::vector<DetId> dets(1, det);
    std::vector<DetId> vdets = spr::matrixHCALIds(dets, topology, ieta, iphi, includeHO, debug);
    spr::hitsHCAL(vdets, hits, hitlist, debug);
  }

  template <typename T>
  void hitHCALmatrixTotal(const HcalTopology* topology,
                          const DetId& det,
                          edm::Handle<T>& hits,
                          int ietaE,
                          int ietaW,
                          int iphiN,
                          int iphiS,
                          std::vector<typename T::const_iterator>& hitlist,
                          bool includeHO,
                          bool debug) {
    std::vector<DetId> dets(1, det);
    std::vector<DetId> vdets = spr::matrixHCALIds(dets, topology, ietaE, ietaW, iphiN, iphiS, includeHO, debug);
    spr::hitsHCAL(vdets, hits, hitlist, debug);
  }

  template <typename T>
  double energyHCAL(std::vector<DetId>& vdets,
                    edm::Handle<T>& hits,
                    double hbThr,
                    double heThr,
                    double hfThr,
                    double hoThr,
                    double tMin,
                    double tMax,
                    int useRaw,
                    bool debug) {
    int khit = 0;
    double energySum = 0;
    unsigned int maxsize = vdets.size();
    for (unsigned int i = 0; i < maxsize; i++) {
      std::vector<typename T::const_iterator> hit = spr::findHit(hits, vdets[i]);
      double energy = 0;
      int subdet = ((HcalDetId)(vdets[i].rawId())).subdet();
      double eThr = spr::eHCALThreshold(subdet, hbThr, heThr, hfThr, hoThr);
      for (unsigned int ihit = 0; ihit < hit.size(); ihit++) {
        if (hit[ihit] != hits->end()) {
          khit++;
          if (debug)
            edm::LogVerbatim("IsoTrack") << "energyHCAL:: Hit " << khit << " " << (HcalDetId)vdets[i] << " E "
                                         << hit[ihit]->energy() << " t " << hit[ihit]->time();
          if (hit[ihit]->time() > tMin && hit[ihit]->time() < tMax) {
            energy += getRawEnergy(hit[ihit], useRaw);
          }
        }
      }
      if (energy > eThr)
        energySum += energy;
    }

    if (debug)
      edm::LogVerbatim("IsoTrack") << "energyHCAL::Total Energy " << energySum << " from " << khit << " hits";
    return energySum;
  }

  template <typename T>
  void energyHCALCell(HcalDetId detID,
                      edm::Handle<T>& hits,
                      std::vector<std::pair<double, int> >& energyCell,
                      int maxDepth,
                      double hbThr,
                      double heThr,
                      double hfThr,
                      double hoThr,
                      double tMin,
                      double tMax,
                      int useRaw,
                      int depthHE,
                      bool debug) {
    energyCell.clear();
    int subdet = detID.subdet();
    double eThr = spr::eHCALThreshold(subdet, hbThr, heThr, hfThr, hoThr);
    bool hbhe = (detID.ietaAbs() == 16);
    if (debug)
      edm::LogVerbatim("IsoTrack") << "energyHCALCell: input ID " << detID << " MaxDepth " << maxDepth
                                   << " Threshold (E) " << eThr << " (T) " << tMin << ":" << tMax;
    for (int i = 0; i < maxDepth; i++) {
      HcalSubdetector subdet0 = (hbhe) ? ((i + 1 >= depthHE) ? HcalEndcap : HcalBarrel) : detID.subdet();
      HcalDetId hcid(subdet0, detID.ieta(), detID.iphi(), i + 1);
      DetId det(hcid.rawId());
      std::vector<typename T::const_iterator> hit = spr::findHit(hits, det);
      double energy(0);
      for (unsigned int ihit = 0; ihit < hit.size(); ++ihit) {
        if (hit[ihit]->time() > tMin && hit[ihit]->time() < tMax)
          energy += getRawEnergy(hit[ihit], useRaw);
        if (debug)
          edm::LogVerbatim("IsoTrack") << "energyHCALCell:: Hit[" << ihit << "] " << hcid << " E "
                                       << hit[ihit]->energy() << " t " << hit[ihit]->time();
      }
      if (debug)
        edm::LogVerbatim("IsoTrack") << "energyHCALCell:: Cell " << hcid << " E " << energy << " from " << hit.size()
                                     << " threshold " << eThr;
      if (energy > eThr && !(hit.empty())) {
        energyCell.push_back(std::pair<double, int>(energy, i + 1));
      }
    }
    if (debug) {
      edm::LogVerbatim("IsoTrack") << "energyHCALCell:: " << energyCell.size() << " entries from " << maxDepth
                                   << " depths:";
      std::ostringstream st1;
      for (unsigned int i = 0; i < energyCell.size(); ++i) {
        st1 << " [" << i << "] (" << energyCell[i].first << ":" << energyCell[i].second << ")";
      }
      edm::LogVerbatim("IsoTrack") << st1.str();
    }
  }

  template <typename T>
  void hitsHCAL(std::vector<DetId>& vdets,
                edm::Handle<T>& hits,
                std::vector<typename T::const_iterator>& hitlist,
                bool debug) {
    unsigned int maxsize = vdets.size();
    for (unsigned int i = 0; i < maxsize; i++) {
      std::vector<typename T::const_iterator> hit = spr::findHit(hits, vdets[i]);
      hitlist.insert(hitlist.end(), hit.begin(), hit.end());
    }

    if (debug)
      edm::LogVerbatim("IsoTrack") << "hitsHCAL::Number of hits " << hitlist.size();
  }
}  // namespace spr