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
//
// HcalNoiseHPD.cc
//
//   description: container class of HPD information for analyzing HCAL Noise
//
//   author: J.P. Chou, Brown
//
//

#include "DataFormats/METReco/interface/HcalNoiseHPD.h"

using namespace reco;

// default constructor
HcalNoiseHPD::HcalNoiseHPD()
    : idnumber_(0),
      totalZeros_(0),
      maxZeros_(0),
      bigCharge_(HBHEDataFrame::MAXSAMPLES, 0.0),
      big5Charge_(HBHEDataFrame::MAXSAMPLES, 0.0) {
  // reserve some space, so that there's no reallocation issues
  rechits_.reserve(19);
  calotowers_.reserve(19);
}

// destructor
HcalNoiseHPD::~HcalNoiseHPD() {}

// accessors
int HcalNoiseHPD::idnumber(void) const { return idnumber_; }

const std::vector<float> HcalNoiseHPD::bigCharge(void) const { return bigCharge_; }

float HcalNoiseHPD::bigChargeTotal(void) const {
  float total = 0;
  for (unsigned int i = 0; i < bigCharge_.size(); i++) {
    total += bigCharge_[i];
  }
  return total;
}

float HcalNoiseHPD::bigChargeHighest2TS(unsigned int firstts) const {
  float total = 0;
  for (unsigned int i = firstts; i < firstts + 2 && i < bigCharge_.size(); i++)
    total += bigCharge_[i];
  return total;
}

float HcalNoiseHPD::bigChargeHighest3TS(unsigned int firstts) const {
  float total = 0;
  for (unsigned int i = firstts; i < firstts + 3 && i < bigCharge_.size(); i++)
    total += bigCharge_[i];
  return total;
}

const std::vector<float> HcalNoiseHPD::big5Charge(void) const { return big5Charge_; }

float HcalNoiseHPD::big5ChargeTotal(void) const {
  float total = 0;
  for (unsigned int i = 0; i < big5Charge_.size(); i++) {
    total += big5Charge_[i];
  }
  return total;
}

float HcalNoiseHPD::big5ChargeHighest2TS(unsigned int firstts) const {
  float total = 0;
  for (unsigned int i = firstts; i < firstts + 2 && i < big5Charge_.size(); i++)
    total += big5Charge_[i];
  return total;
}

float HcalNoiseHPD::big5ChargeHighest3TS(unsigned int firstts) const {
  float total = 0;
  for (unsigned int i = firstts; i < firstts + 2 && i < big5Charge_.size(); i++)
    total += big5Charge_[i];
  return total;
}

int HcalNoiseHPD::totalZeros(void) const { return totalZeros_; }

int HcalNoiseHPD::maxZeros(void) const { return maxZeros_; }

const edm::RefVector<HBHERecHitCollection> HcalNoiseHPD::recHits(void) const { return rechits_; }

float HcalNoiseHPD::recHitEnergy(const float threshold) const {
  double total = 0.0;
  for (edm::RefVector<HBHERecHitCollection>::const_iterator it = rechits_.begin(); it != rechits_.end(); ++it) {
    const float energy = (*it)->eraw();
    if (energy >= threshold)
      total += energy;
  }
  return total;
}

float HcalNoiseHPD::recHitEnergyFailR45(const float threshold) const {
  double total = 0.0;
  for (edm::RefVector<HBHERecHitCollection>::const_iterator it = rechits_.begin(); it != rechits_.end(); ++it) {
    const float energy = (*it)->eraw();
    if ((*it)->flagField(HcalCaloFlagLabels::HBHETS4TS5Noise) && !(*it)->flagField(HcalCaloFlagLabels::HBHEOOTPU))
      if (energy >= threshold)
        total += energy;
  }
  return total;
}

float HcalNoiseHPD::minRecHitTime(const float threshold) const {
  float mintime = 9999999;
  for (edm::RefVector<HBHERecHitCollection>::const_iterator it = rechits_.begin(); it != rechits_.end(); ++it) {
    if ((*it)->energy() < threshold)
      continue;
    float time = (*it)->time();
    if (mintime > time)
      mintime = time;
  }
  return mintime;
}

float HcalNoiseHPD::maxRecHitTime(const float threshold) const {
  float maxtime = -9999999;
  for (edm::RefVector<HBHERecHitCollection>::const_iterator it = rechits_.begin(); it != rechits_.end(); ++it) {
    if ((*it)->energy() < threshold)
      continue;
    float time = (*it)->time();
    if (maxtime < time)
      maxtime = time;
  }
  return maxtime;
}

int HcalNoiseHPD::numRecHits(const float threshold) const {
  int count = 0;
  for (edm::RefVector<HBHERecHitCollection>::const_iterator it = rechits_.begin(); it != rechits_.end(); ++it) {
    // Exclude uncollapsed QIE11 channels
    if (CaloRecHitAuxSetter::getBit((*it)->auxPhase1(), HBHERecHitAuxSetter::OFF_TDC_TIME) &&
        !CaloRecHitAuxSetter::getBit((*it)->auxPhase1(), HBHERecHitAuxSetter::OFF_COMBINED))
      continue;
    if ((*it)->eraw() >= threshold)
      ++count;
  }
  return count;
}

int HcalNoiseHPD::numRecHitsFailR45(const float threshold) const {
  int count = 0;
  for (edm::RefVector<HBHERecHitCollection>::const_iterator it = rechits_.begin(); it != rechits_.end(); ++it)
    if ((*it)->flagField(HcalCaloFlagLabels::HBHETS4TS5Noise) && !(*it)->flagField(HcalCaloFlagLabels::HBHEOOTPU))
      if ((*it)->eraw() >= threshold)
        ++count;
  return count;
}

const edm::RefVector<CaloTowerCollection> HcalNoiseHPD::caloTowers(void) const { return calotowers_; }

double HcalNoiseHPD::caloTowerHadE(void) const {
  double total = 0;
  for (edm::RefVector<CaloTowerCollection>::const_iterator it = calotowers_.begin(); it != calotowers_.end(); ++it)
    total += (*it)->hadEnergy();
  return total;
}

double HcalNoiseHPD::caloTowerEmE(void) const {
  double total = 0;
  for (edm::RefVector<CaloTowerCollection>::const_iterator it = calotowers_.begin(); it != calotowers_.end(); ++it)
    total += (*it)->emEnergy();
  return total;
}

double HcalNoiseHPD::caloTowerTotalE(void) const {
  double total = 0;
  for (edm::RefVector<CaloTowerCollection>::const_iterator it = calotowers_.begin(); it != calotowers_.end(); ++it)
    total += (*it)->emEnergy() + (*it)->hadEnergy();
  return total;
}

double HcalNoiseHPD::caloTowerEmFraction(void) const {
  double h = 0, e = 0;
  for (edm::RefVector<CaloTowerCollection>::const_iterator it = calotowers_.begin(); it != calotowers_.end(); ++it) {
    e += (*it)->emEnergy();
    h += (*it)->hadEnergy();
  }
  return (e + h) != 0 ? e / (e + h) : 999.;
}