CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
HGCDigitizer Class Reference

#include <HGCDigitizer.h>

Public Types

typedef std::tuple< int, uint32_t, float > HGCCaloHitTuple_t
 

Public Member Functions

void accumulate (edm::Event const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
 handle SimHit accumulation More...
 
void accumulate (PileUpEventPrincipal const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
 
void accumulate (edm::Handle< edm::PCaloHitContainer > const &hits, int bxCrossing, const HGCalGeometry *geom, CLHEP::HepRandomEngine *hre)
 
void accumulate_forPreMix (edm::Event const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
 
void accumulate_forPreMix (PileUpEventPrincipal const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
 
void accumulate_forPreMix (edm::Handle< edm::PCaloHitContainer > const &hits, int bxCrossing, const HGCalGeometry *geom, CLHEP::HepRandomEngine *hre)
 
void accumulate_forPreMix (const PHGCSimAccumulator &simAccumulator, const bool minbiasFlag)
 
std::string digiCollection ()
 
void finalizeEvent (edm::Event &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
 
 HGCDigitizer (const edm::ParameterSet &ps, edm::ConsumesCollector &iC)
 
void initializeEvent (edm::Event const &e, edm::EventSetup const &c)
 actions at the start/end of event More...
 
 ~HGCDigitizer ()=default
 

Static Public Member Functions

static bool orderByDetIdThenTime (const HGCCaloHitTuple_t &a, const HGCCaloHitTuple_t &b)
 

Private Member Functions

void checkPosition (const HGCalDigiCollection *digis) const
 
uint32_t getType () const
 
void resetPUSimHitDataAccumulator ()
 
void resetSimHitDataAccumulator ()
 

Private Attributes

std::array< double, 4 > averageOccupancies_
 
const double bxTime_
 
std::vector< float > cce_
 
const std::string digiCollection_
 
const int digitizationType_
 
double ev_per_eh_pair_
 
const edm::ESGetToken< CaloGeometry, CaloGeometryRecordgeomToken_
 
edm::ESWatcher< CaloGeometryRecordgeomWatcher_
 
const HGCalGeometrygHGCal_ = nullptr
 
const std::string hitCollection_
 
std::unordered_map< uint32_t, bool > hitOrder_monitor
 
std::unordered_map< uint32_t, std::vector< std::pair< float, float > > > hitRefs_bx0
 
const std::string hitsProducer_
 
const edm::EDGetTokenT< std::vector< PCaloHit > > hitToken_
 
const int maxSimHitsAccTime_
 
uint32_t nEvents_
 
std::unordered_map< uint32_t, std::vector< std::tuple< float, float, float > > > PhitRefs_bx0
 
const bool premixStage1_
 
const double premixStage1MaxCharge_
 
const double premixStage1MinCharge_
 
std::unique_ptr< hgc::HGCPUSimHitDataAccumulatorpusimHitAccumulator_
 
std::unique_ptr< hgc::HGCSimHitDataAccumulatorsimHitAccumulator_
 
std::unique_ptr< HGCDigitizerBasetheDigitizer_
 
const float tofDelay_
 
std::unordered_set< DetIdvalidIds_
 
const uint32_t verbosity_
 

Static Private Attributes

static const unsigned int maxBx_ = 14
 
static const unsigned int thisBx_ = 9
 

Detailed Description

Definition at line 29 of file HGCDigitizer.h.

Member Typedef Documentation

◆ HGCCaloHitTuple_t

typedef std::tuple<int, uint32_t, float> HGCDigitizer::HGCCaloHitTuple_t

Definition at line 35 of file HGCDigitizer.h.

Constructor & Destructor Documentation

◆ HGCDigitizer()

HGCDigitizer::HGCDigitizer ( const edm::ParameterSet ps,
edm::ConsumesCollector iC 
)

Definition at line 229 of file HGCDigitizer.cc.

References cce_, get, edm::ParameterSet::getParameter(), crabTemplate::pluginName, AlCaHLTBitMon_QueryRunRegistry::string, edm::swap(), groupFilesInBlocks::temp, and theDigitizer_.

232  digiCollection_(ps.getParameter<std::string>("digiCollection")),
233  digitizationType_(ps.getParameter<uint32_t>("digitizationType")),
234  premixStage1_(ps.getParameter<bool>("premixStage1")),
235  premixStage1MinCharge_(ps.getParameter<double>("premixStage1MinCharge")),
236  premixStage1MaxCharge_(ps.getParameter<double>("premixStage1MaxCharge")),
237  maxSimHitsAccTime_(ps.getParameter<uint32_t>("maxSimHitsAccTime")),
238  bxTime_(ps.getParameter<double>("bxTime")),
239  hitsProducer_(ps.getParameter<std::string>("hitsProducer")),
240  hitCollection_(ps.getParameter<std::string>("hitCollection")),
241  hitToken_(iC.consumes<std::vector<PCaloHit>>(edm::InputTag(hitsProducer_, hitCollection_))),
242  geomToken_(iC.esConsumes()),
243  verbosity_(ps.getUntrackedParameter<uint32_t>("verbosity", 0)),
244  tofDelay_(ps.getParameter<double>("tofDelay")),
245  averageOccupancies_(occupancyGuesses),
246  nEvents_(1) {
247  //configure from cfg
248 
249  const auto& myCfg_ = ps.getParameter<edm::ParameterSet>("digiCfg");
250 
251  if (myCfg_.existsAs<edm::ParameterSet>("chargeCollectionEfficiencies")) {
252  cce_.clear();
253  const auto& temp = myCfg_.getParameter<edm::ParameterSet>("chargeCollectionEfficiencies")
254  .getParameter<std::vector<double>>("values");
255  for (double cce : temp) {
256  cce_.emplace_back(cce);
257  }
258  } else {
259  std::vector<float>().swap(cce_);
260  }
261 
262  auto const& pluginName = ps.getParameter<std::string>("digitizer");
264 }
const std::string hitsProducer_
Definition: HGCDigitizer.h:101
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
uint32_t nEvents_
Definition: HGCDigitizer.h:126
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
std::vector< float > cce_
Definition: HGCDigitizer.h:131
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110
const edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_
Definition: HGCDigitizer.h:113
std::unordered_map< uint32_t, HGCCellInfo > HGCSimHitDataAccumulator
const std::string digiCollection_
Definition: HGCDigitizer.h:84
const double premixStage1MaxCharge_
Definition: HGCDigitizer.h:95
void swap(Association< C > &lhs, Association< C > &rhs)
Definition: Association.h:117
T getUntrackedParameter(std::string const &, T const &) const
const double premixStage1MinCharge_
Definition: HGCDigitizer.h:93
const uint32_t verbosity_
Definition: HGCDigitizer.h:119
const int maxSimHitsAccTime_
Definition: HGCDigitizer.h:98
const bool premixStage1_
Definition: HGCDigitizer.h:90
const edm::EDGetTokenT< std::vector< PCaloHit > > hitToken_
Definition: HGCDigitizer.h:103
std::array< double, 4 > averageOccupancies_
Definition: HGCDigitizer.h:125
const float tofDelay_
Definition: HGCDigitizer.h:122
const double bxTime_
Definition: HGCDigitizer.h:99
#define get
std::unique_ptr< hgc::HGCSimHitDataAccumulator > simHitAccumulator_
Definition: HGCDigitizer.h:81
std::unique_ptr< hgc::HGCPUSimHitDataAccumulator > pusimHitAccumulator_
Definition: HGCDigitizer.h:82
const int digitizationType_
Definition: HGCDigitizer.h:87
const std::string hitCollection_
Definition: HGCDigitizer.h:102
std::unordered_map< uint32_t, HGCCellHitInfo > HGCPUSimHitDataAccumulator

◆ ~HGCDigitizer()

HGCDigitizer::~HGCDigitizer ( )
default

Member Function Documentation

◆ accumulate() [1/3]

void HGCDigitizer::accumulate ( edm::Event const &  e,
edm::EventSetup const &  c,
CLHEP::HepRandomEngine *  hre 
)

handle SimHit accumulation

Definition at line 362 of file HGCDigitizer.cc.

References MillePedeFileConverter_cfg::e, Exception, gHGCal_, hitCollection_, hfClusterShapes_cfi::hits, hitsProducer_, and hitToken_.

Referenced by HGCDigiProducer::accumulate(), and accumulate().

362  {
363  //get inputs
365  if (!hits.isValid()) {
366  edm::LogError("HGCDigitizer") << " @ accumulate : can't find " << hitCollection_ << " collection of "
367  << hitsProducer_;
368  return;
369  }
370 
371  //accumulate in-time the main event
372  if (nullptr != gHGCal_) {
373  accumulate(hits, 0, gHGCal_, hre);
374  } else {
375  throw cms::Exception("BadConfiguration") << "HGCDigitizer is not producing EE, FH, or BH digis!";
376  }
377 }
const std::string hitsProducer_
Definition: HGCDigitizer.h:101
Log< level::Error, false > LogError
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
const edm::EDGetTokenT< std::vector< PCaloHit > > hitToken_
Definition: HGCDigitizer.h:103
void accumulate(edm::Event const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
handle SimHit accumulation
const std::string hitCollection_
Definition: HGCDigitizer.h:102

◆ accumulate() [2/3]

void HGCDigitizer::accumulate ( PileUpEventPrincipal const &  e,
edm::EventSetup const &  c,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 401 of file HGCDigitizer.cc.

References accumulate(), MillePedeFileConverter_cfg::e, Exception, gHGCal_, hitCollection_, hfClusterShapes_cfi::hits, and hitsProducer_.

403  {
404  //get inputs
407  e.getByLabel(hitTag, hits);
408 
409  if (!hits.isValid()) {
410  edm::LogError("HGCDigitizer") << " @ accumulate : can't find " << hitCollection_ << " collection of "
411  << hitsProducer_;
412  return;
413  }
414 
415  //accumulate for the simulated bunch crossing
416  if (nullptr != gHGCal_) {
417  accumulate(hits, e.bunchCrossing(), gHGCal_, hre);
418  } else {
419  throw cms::Exception("BadConfiguration") << "HGCDigitizer is not producing EE, FH, or BH digis!";
420  }
421 }
const std::string hitsProducer_
Definition: HGCDigitizer.h:101
Log< level::Error, false > LogError
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
void accumulate(edm::Event const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
handle SimHit accumulation
const std::string hitCollection_
Definition: HGCDigitizer.h:102

◆ accumulate() [3/3]

void HGCDigitizer::accumulate ( edm::Handle< edm::PCaloHitContainer > const &  hits,
int  bxCrossing,
const HGCalGeometry geom,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 545 of file HGCDigitizer.cc.

References bxTime_, ALCARECOTkAlJpsiMuMu_cff::charge, TauDecayModes::dec, relativeConstraints::empty, mps_fire::end, f, first, relativeConstraints::geom, hitRefs_bx0, hfClusterShapes_cfi::hits, mps_fire::i, l1ctLayer2EG_cff::id, createfilelist::int, dqmiolumiharvest::j, hgceeDigitizer_cfi::keV2fC, maxBx_, orderByDetIdThenTime(), edm::second(), simHitAccumulator_, findQualityFiles::size, jetsAK4_CHS_cff::sort, theDigitizer_, thisBx_, tofDelay_, pfDeepBoostedJetPreprocessParams_cfi::upper_bound, validIds_, trackerHitRTTI::vector, and verbosity_.

548  {
549  if (nullptr == geom)
550  return;
551 
552  //configuration to apply for the computation of time-of-flight
553  auto weightToAbyEnergy = theDigitizer_->toaModeByEnergy();
554  auto tdcForToAOnset = theDigitizer_->tdcForToAOnset();
555  auto keV2fC = theDigitizer_->keV2fC();
556 
557  //create list of tuples (pos in container, RECO DetId, time) to be sorted first
558  int nchits = (int)hits->size();
559 
560  std::vector<HGCCaloHitTuple_t> hitRefs;
561  hitRefs.reserve(nchits);
562  for (int i = 0; i < nchits; ++i) {
563  const auto& the_hit = hits->at(i);
564  DetId id = simToReco(geom, the_hit.id());
565 
566  if (verbosity_ > 0) {
567  edm::LogVerbatim("HGCDigitizer") << "HGCDigitizer::i/p " << std::hex << the_hit.id() << " o/p " << id.rawId()
568  << std::dec;
569  }
570 
571  if (0 != id.rawId()) {
572  hitRefs.emplace_back(i, id.rawId(), (float)the_hit.time());
573  }
574  }
575 
576  std::sort(hitRefs.begin(), hitRefs.end(), this->orderByDetIdThenTime);
577  //loop over sorted hits
578  nchits = hitRefs.size();
579  for (int i = 0; i < nchits; ++i) {
580  const int hitidx = std::get<0>(hitRefs[i]);
581  const uint32_t id = std::get<1>(hitRefs[i]);
582 
583  //get the data for this cell, if not available then we skip it
584 
585  if (!validIds_.count(id))
586  continue;
587  HGCSimHitDataAccumulator::iterator simHitIt = simHitAccumulator_->emplace(id, HGCCellInfo()).first;
588 
589  if (id == 0)
590  continue; // to be ignored at RECO level
591 
592  const float toa = std::get<2>(hitRefs[i]);
593  const PCaloHit& hit = hits->at(hitidx);
594  const float charge = hit.energy() * 1e6 * keV2fC;
595 
596  //hit time: [time()]=ns + delay
597  //accumulate in 15 buckets of 25ns (9 pre-samples, 1 in-time, 5 post-samples)
598  const float tof = toa + tofDelay_;
599  const int itime = std::floor(tof / bxTime_) + 9;
600 
601  //no need to add bx crossing - tof comes already corrected from the mixing module
602  //itime += bxCrossing;
603  //itime += 9;
604 
605  if (itime < 0 || itime > (int)maxBx_)
606  continue;
607 
608  //check if time index is ok and store energy
609  if (itime >= (int)simHitIt->second.hit_info[0].size())
610  continue;
611 
612  (simHitIt->second).hit_info[0][itime] += charge;
613 
614  //for time-of-arrival: save the time-sorted list of timestamps with cumulative charge just above threshold
615  //working version with pileup only for in-time hits
616  int waferThickness = getCellThickness(geom, id);
617  bool orderChanged = false;
618  if (itime == (int)thisBx_) {
619  //if start empty => just add charge and time
620  if (hitRefs_bx0[id].empty()) {
621  hitRefs_bx0[id].emplace_back(charge, tof);
622 
623  } else if (tof <= hitRefs_bx0[id].back().second) {
624  //find position to insert new entry preserving time sorting
625  std::vector<std::pair<float, float>>::iterator findPos =
627  hitRefs_bx0[id].end(),
628  std::pair<float, float>(0.f, tof),
629  [](const auto& i, const auto& j) { return i.second <= j.second; });
630 
631  std::vector<std::pair<float, float>>::iterator insertedPos = findPos;
632  if (findPos->second == tof) {
633  //just merge timestamps with exact timing
634  findPos->first += charge;
635  } else {
636  //insert new element cumulating the charge
637  insertedPos = hitRefs_bx0[id].insert(findPos,
638  (findPos == hitRefs_bx0[id].begin())
639  ? std::pair<float, float>(charge, tof)
640  : std::pair<float, float>((findPos - 1)->first + charge, tof));
641  }
642 
643  //cumulate the charge of new entry for all elements that follow in the sorted list
644  //and resize list accounting for cases when the inserted element itself crosses the threshold
645  for (std::vector<std::pair<float, float>>::iterator step = insertedPos; step != hitRefs_bx0[id].end(); ++step) {
646  if (step != insertedPos)
647  step->first += charge;
648  // resize the list stopping with the first timeStamp with cumulative charge above threshold
649  if (step->first > tdcForToAOnset[waferThickness - 1] && step->second != hitRefs_bx0[id].back().second) {
651  hitRefs_bx0[id].end(),
652  std::pair<float, float>(0.f, step->second),
653  [](const auto& i, const auto& j) { return i.second < j.second; }) -
654  hitRefs_bx0[id].begin());
655  for (auto stepEnd = step + 1; stepEnd != hitRefs_bx0[id].end(); ++stepEnd)
656  stepEnd->first += charge;
657  break;
658  }
659  }
660 
661  orderChanged = true;
662  } else {
663  //add new entry at the end of the list
664  if (hitRefs_bx0[id].back().first <= tdcForToAOnset[waferThickness - 1]) {
665  hitRefs_bx0[id].emplace_back(hitRefs_bx0[id].back().first + charge, tof);
666  }
667  }
668  }
669  float accChargeForToA = hitRefs_bx0[id].empty() ? 0.f : hitRefs_bx0[id].back().first;
670  //now compute the firing ToA through the interpolation of the consecutive time-stamps at threshold
671  if (weightToAbyEnergy)
672  (simHitIt->second).hit_info[1][itime] += charge * tof;
673  else if (accChargeForToA > tdcForToAOnset[waferThickness - 1] &&
674  ((simHitIt->second).hit_info[1][itime] == 0 || orderChanged == true)) {
675  float fireTDC = hitRefs_bx0[id].back().second;
676  if (hitRefs_bx0[id].size() > 1) {
677  float chargeBeforeThr = (hitRefs_bx0[id].end() - 2)->first;
678  float tofchargeBeforeThr = (hitRefs_bx0[id].end() - 2)->second;
679 
680  float deltaQ = accChargeForToA - chargeBeforeThr;
681  float deltaTOF = fireTDC - tofchargeBeforeThr;
682  fireTDC = (tdcForToAOnset[waferThickness - 1] - chargeBeforeThr) * deltaTOF / deltaQ + tofchargeBeforeThr;
683  }
684  (simHitIt->second).hit_info[1][itime] = fireTDC;
685  }
686  }
687  hitRefs.clear();
688 }
size
Write out results.
Log< level::Info, true > LogVerbatim
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110
U second(std::pair< T, U > const &p)
static const unsigned int maxBx_
Definition: HGCDigitizer.h:129
const uint32_t verbosity_
Definition: HGCDigitizer.h:119
double f[11][100]
std::unordered_set< DetId > validIds_
Definition: HGCDigitizer.h:115
static const unsigned int thisBx_
Definition: HGCDigitizer.h:130
Definition: DetId.h:17
const float tofDelay_
Definition: HGCDigitizer.h:122
std::unordered_map< uint32_t, std::vector< std::pair< float, float > > > hitRefs_bx0
Definition: HGCDigitizer.h:132
const double bxTime_
Definition: HGCDigitizer.h:99
step
Definition: StallMonitor.cc:98
std::unique_ptr< hgc::HGCSimHitDataAccumulator > simHitAccumulator_
Definition: HGCDigitizer.h:81
static bool orderByDetIdThenTime(const HGCCaloHitTuple_t &a, const HGCCaloHitTuple_t &b)
Definition: HGCDigitizer.h:36

◆ accumulate_forPreMix() [1/4]

void HGCDigitizer::accumulate_forPreMix ( edm::Event const &  e,
edm::EventSetup const &  c,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 341 of file HGCDigitizer.cc.

References MillePedeFileConverter_cfg::e, Exception, gHGCal_, hitCollection_, hfClusterShapes_cfi::hits, hitsProducer_, and hitToken_.

Referenced by HGCDigiProducer::accumulate(), accumulate_forPreMix(), PreMixingHGCalWorker::addPileups(), and PreMixingHGCalWorker::addSignals().

343  {
344  //get inputs
345 
347  if (!hits.isValid()) {
348  edm::LogError("HGCDigitizer") << " @ accumulate_minbias : can't find " << hitCollection_ << " collection of "
349  << hitsProducer_;
350  return;
351  }
352 
353  //accumulate in-time the main event
354  if (nullptr != gHGCal_) {
356  } else {
357  throw cms::Exception("BadConfiguration") << "HGCDigitizer is not producing EE, FH, or BH digis!";
358  }
359 }
const std::string hitsProducer_
Definition: HGCDigitizer.h:101
Log< level::Error, false > LogError
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
const edm::EDGetTokenT< std::vector< PCaloHit > > hitToken_
Definition: HGCDigitizer.h:103
void accumulate_forPreMix(edm::Event const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
const std::string hitCollection_
Definition: HGCDigitizer.h:102

◆ accumulate_forPreMix() [2/4]

void HGCDigitizer::accumulate_forPreMix ( PileUpEventPrincipal const &  e,
edm::EventSetup const &  c,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 380 of file HGCDigitizer.cc.

References accumulate_forPreMix(), MillePedeFileConverter_cfg::e, Exception, gHGCal_, hitCollection_, hfClusterShapes_cfi::hits, and hitsProducer_.

382  {
385  e.getByLabel(hitTag, hits);
386 
387  if (!hits.isValid()) {
388  edm::LogError("HGCDigitizer") << " @ accumulate : can't find " << hitCollection_ << " collection of "
389  << hitsProducer_;
390  return;
391  }
392 
393  if (nullptr != gHGCal_) {
394  accumulate_forPreMix(hits, e.bunchCrossing(), gHGCal_, hre);
395  } else {
396  throw cms::Exception("BadConfiguration") << "HGCDigitizer is not producing EE, FH, or BH digis!";
397  }
398 }
const std::string hitsProducer_
Definition: HGCDigitizer.h:101
Log< level::Error, false > LogError
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
void accumulate_forPreMix(edm::Event const &e, edm::EventSetup const &c, CLHEP::HepRandomEngine *hre)
const std::string hitCollection_
Definition: HGCDigitizer.h:102

◆ accumulate_forPreMix() [3/4]

void HGCDigitizer::accumulate_forPreMix ( edm::Handle< edm::PCaloHitContainer > const &  hits,
int  bxCrossing,
const HGCalGeometry geom,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 424 of file HGCDigitizer.cc.

References bxTime_, ALCARECOTkAlJpsiMuMu_cff::charge, relativeConstraints::empty, mps_fire::end, f, relativeConstraints::geom, hgceeDigitizer_cfi::hitCollection, hfClusterShapes_cfi::hits, mps_fire::i, l1ctLayer2EG_cff::id, createfilelist::int, dqmiolumiharvest::j, hgceeDigitizer_cfi::keV2fC, maxBx_, orderByDetIdThenTime(), PhitRefs_bx0, push_back(), pusimHitAccumulator_, jetsAK4_CHS_cff::sort, theDigitizer_, thisBx_, tofDelay_, pfDeepBoostedJetPreprocessParams_cfi::upper_bound, and validIds_.

427  {
428  if (nullptr == geom)
429  return;
430 
431  auto keV2fC = theDigitizer_->keV2fC();
432  auto tdcForToAOnset = theDigitizer_->tdcForToAOnset();
433 
434  int nchits = (int)hits->size();
435  int count_thisbx = 0;
436  std::vector<HGCCaloHitTuple_t> hitRefs;
437  hitRefs.reserve(nchits);
438  for (int i = 0; i < nchits; ++i) {
439  const auto& the_hit = hits->at(i);
440  DetId id = simToReco(geom, the_hit.id());
441  // to be written the verbosity block
442  if (id.rawId() != 0) {
443  hitRefs.emplace_back(i, id.rawId(), (float)the_hit.time());
444  }
445  }
446  std::sort(hitRefs.begin(), hitRefs.end(), this->orderByDetIdThenTime);
447 
448  nchits = hitRefs.size();
449  for (int i = 0; i < nchits; ++i) {
450  const int hitidx = std::get<0>(hitRefs[i]);
451  const uint32_t id = std::get<1>(hitRefs[i]);
452  if (!validIds_.count(id))
453  continue;
454 
455  if (id == 0)
456  continue;
457 
458  const float toa = std::get<2>(hitRefs[i]);
459  const PCaloHit& hit = hits->at(hitidx);
460  const float charge = hit.energy() * 1e6 * keV2fC; // * getCCE(geom, id, cce_);
461 
462  const float tof = toa + tofDelay_;
463  const int itime = std::floor(tof / bxTime_) + 9;
464 
465  if (itime < 0 || itime > (int)maxBx_)
466  continue;
467 
468  if (itime >= (int)(maxBx_ + 1))
469  continue;
470 
471  int waferThickness = getCellThickness(geom, id);
472  if (itime == (int)thisBx_) {
473  ++count_thisbx;
474  if (PhitRefs_bx0[id].empty()) {
475  PhitRefs_bx0[id].emplace_back(charge, charge, tof);
476  } else if (tof > std::get<2>(PhitRefs_bx0[id].back())) {
477  PhitRefs_bx0[id].emplace_back(charge, charge + std::get<1>(PhitRefs_bx0[id].back()), tof);
478  } else if (tof == std::get<2>(PhitRefs_bx0[id].back())) {
479  std::get<0>(PhitRefs_bx0[id].back()) += charge;
480  std::get<1>(PhitRefs_bx0[id].back()) += charge;
481  } else {
482  //find position to insert new entry preserving time sorting
483  auto findPos = std::upper_bound(PhitRefs_bx0[id].begin(),
484  PhitRefs_bx0[id].end(),
485  hit_timeStamp(charge, 0.f, tof),
486  [](const auto& i, const auto& j) { return std::get<2>(i) <= std::get<2>(j); });
487 
488  auto insertedPos = findPos;
489 
490  if (tof == std::get<2>(*(findPos - 1))) {
491  std::get<0>(*(findPos - 1)) += charge;
492  std::get<1>(*(findPos - 1)) += charge;
493 
494  } else {
495  insertedPos = PhitRefs_bx0[id].insert(findPos,
496  (findPos == PhitRefs_bx0[id].begin())
497  ? hit_timeStamp(charge, charge, tof)
498  : hit_timeStamp(charge, charge + std::get<1>(*(findPos - 1)), tof));
499  }
500  //cumulate the charge of new entry for all elements that follow in the sorted list
501  //and resize list accounting for cases when the inserted element itself crosses the threshold
502 
503  for (auto step = insertedPos; step != PhitRefs_bx0[id].end(); ++step) {
504  if (step != insertedPos)
505  std::get<1>(*(step)) += charge;
506 
507  // resize the list stopping with the first timeStamp with cumulative charge above threshold
508  if (std::get<1>(*step) > tdcForToAOnset[waferThickness - 1] &&
509  std::get<2>(*step) != std::get<2>(PhitRefs_bx0[id].back())) {
510  PhitRefs_bx0[id].resize(
512  PhitRefs_bx0[id].end(),
513  hit_timeStamp(charge, 0.f, std::get<2>(*step)),
514  [](const auto& i, const auto& j) { return std::get<2>(i) < std::get<2>(j); }) -
515  PhitRefs_bx0[id].begin());
516  for (auto stepEnd = step + 1; stepEnd != PhitRefs_bx0[id].end(); ++stepEnd)
517  std::get<1>(*stepEnd) += charge;
518  break;
519  }
520  }
521  }
522  }
523  }
524 
525  for (const auto& hitCollection : PhitRefs_bx0) {
526  const uint32_t detectorId = hitCollection.first;
527  auto simHitIt = pusimHitAccumulator_->emplace(detectorId, HGCCellHitInfo()).first;
528 
529  for (const auto& hit_timestamp : PhitRefs_bx0[detectorId]) {
530  (simHitIt->second).PUhit_info[1][thisBx_].push_back(std::get<2>(hit_timestamp));
531  (simHitIt->second).PUhit_info[0][thisBx_].push_back(std::get<0>(hit_timestamp));
532  }
533  }
534 
535  if (nchits == 0) {
536  HGCPUSimHitDataAccumulator::iterator simHitIt = pusimHitAccumulator_->emplace(0, HGCCellHitInfo()).first;
537  (simHitIt->second).PUhit_info[1][9].push_back(0.0);
538  (simHitIt->second).PUhit_info[0][9].push_back(0.0);
539  }
540  hitRefs.clear();
541  PhitRefs_bx0.clear();
542 }
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110
static const unsigned int maxBx_
Definition: HGCDigitizer.h:129
std::unordered_map< uint32_t, std::vector< std::tuple< float, float, float > > > PhitRefs_bx0
Definition: HGCDigitizer.h:133
double f[11][100]
std::unordered_set< DetId > validIds_
Definition: HGCDigitizer.h:115
static const unsigned int thisBx_
Definition: HGCDigitizer.h:130
Definition: DetId.h:17
deadvectors [0] push_back({0.0175431, 0.538005, 6.80997, 13.29})
const float tofDelay_
Definition: HGCDigitizer.h:122
const double bxTime_
Definition: HGCDigitizer.h:99
std::tuple< float, float, float > hit_timeStamp
Definition: HGCDigitizer.cc:28
step
Definition: StallMonitor.cc:98
static bool orderByDetIdThenTime(const HGCCaloHitTuple_t &a, const HGCCaloHitTuple_t &b)
Definition: HGCDigitizer.h:36
std::unique_ptr< hgc::HGCPUSimHitDataAccumulator > pusimHitAccumulator_
Definition: HGCDigitizer.h:82

◆ accumulate_forPreMix() [4/4]

void HGCDigitizer::accumulate_forPreMix ( const PHGCSimAccumulator simAccumulator,
const bool  minbiasFlag 
)

Definition at line 689 of file HGCDigitizer.cc.

References gHGCal_, hitOrder_monitor, hitRefs_bx0, premixStage1MaxCharge_, premixStage1MinCharge_, pusimHitAccumulator_, simHitAccumulator_, theDigitizer_, and thisBx_.

689  {
690  //configuration to apply for the computation of time-of-flight
691  auto weightToAbyEnergy = theDigitizer_->toaModeByEnergy();
692  auto tdcForToAOnset = theDigitizer_->tdcForToAOnset();
693 
694  if (nullptr != gHGCal_) {
695  loadSimHitAccumulator_forPreMix(*simHitAccumulator_,
697  gHGCal_,
698  hitRefs_bx0,
699  simAccumulator,
702  !weightToAbyEnergy,
703  tdcForToAOnset,
704  minbiasFlag,
706  thisBx_);
707  }
708 }
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110
const double premixStage1MaxCharge_
Definition: HGCDigitizer.h:95
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
const double premixStage1MinCharge_
Definition: HGCDigitizer.h:93
std::unordered_map< uint32_t, bool > hitOrder_monitor
Definition: HGCDigitizer.h:134
static const unsigned int thisBx_
Definition: HGCDigitizer.h:130
std::unordered_map< uint32_t, std::vector< std::pair< float, float > > > hitRefs_bx0
Definition: HGCDigitizer.h:132
std::unique_ptr< hgc::HGCSimHitDataAccumulator > simHitAccumulator_
Definition: HGCDigitizer.h:81
std::unique_ptr< hgc::HGCPUSimHitDataAccumulator > pusimHitAccumulator_
Definition: HGCDigitizer.h:82

◆ checkPosition()

void HGCDigitizer::checkPosition ( const HGCalDigiCollection digis) const
private

Definition at line 739 of file HGCDigitizer.cc.

References funct::abs(), HGCalTopology::dddConstants(), TauDecayModes::dec, DetId::Forward, HGCalGeometry::getPosition(), gHGCal_, HFNose, DetId::HGCalEE, DetId::HGCalHSc, DetId::HGCalHSi, convertSQLiteXML::ok, PV3DBase< T, PVType, FrameType >::perp(), alignCSCRings::r, HGCalDDDConstants::rangeR(), HGCalDDDConstants::rangeZ(), AlCaHLTBitMon_QueryRunRegistry::string, HGCalGeometry::topology(), heppy_batch::val, HGCalTopology::valid(), z, PV3DBase< T, PVType, FrameType >::z(), and TkClusParameters_cff::zrange.

Referenced by finalizeEvent().

739  {
740  const double tol(0.5);
741  if (nullptr != gHGCal_) {
742  for (const auto& digi : *(digis)) {
743  const DetId& id = digi.id();
744  const GlobalPoint& global = gHGCal_->getPosition(id);
745  double r = global.perp();
746  double z = std::abs(global.z());
747  std::pair<double, double> zrange = gHGCal_->topology().dddConstants().rangeZ(true);
748  std::pair<double, double> rrange = gHGCal_->topology().dddConstants().rangeR(z, true);
749  bool ok = ((r >= rrange.first) && (r <= rrange.second) && (z >= zrange.first) && (z <= zrange.second));
750  std::string ck = (((r < rrange.first - tol) || (r > rrange.second + tol) || (z < zrange.first - tol) ||
751  (z > zrange.second + tol))
752  ? "***** ERROR *****"
753  : "");
754  bool val = gHGCal_->topology().valid(id);
755  if ((!ok) || (!val)) {
756  if (id.det() == DetId::HGCalEE || id.det() == DetId::HGCalHSi) {
757  edm::LogVerbatim("HGCDigitizer") << "Check " << HGCSiliconDetId(id) << " " << global << " R " << r << ":"
758  << rrange.first << ":" << rrange.second << " Z " << z << ":" << zrange.first
759  << ":" << zrange.second << " Flag " << ok << ":" << val << " " << ck;
760  } else if (id.det() == DetId::HGCalHSc) {
761  edm::LogVerbatim("HGCDigitizer") << "Check " << HGCScintillatorDetId(id) << " " << global << " R " << r << ":"
762  << rrange.first << ":" << rrange.second << " Z " << z << ":" << zrange.first
763  << ":" << zrange.second << " Flag " << ok << ":" << val << " " << ck;
764  } else if ((id.det() == DetId::Forward) && (id.subdetId() == static_cast<int>(HFNose))) {
765  edm::LogVerbatim("HGCDigitizer") << "Check " << HFNoseDetId(id) << " " << global << " R " << r << ":"
766  << rrange.first << ":" << rrange.second << " Z " << z << ":" << zrange.first
767  << ":" << zrange.second << " Flag " << ok << ":" << val << " " << ck;
768  } else {
769  edm::LogVerbatim("HGCDigitizer")
770  << "Check " << std::hex << id.rawId() << std::dec << " " << id.det() << ":" << id.subdetId() << " "
771  << global << " R " << r << ":" << rrange.first << ":" << rrange.second << " Z " << z << ":"
772  << zrange.first << ":" << zrange.second << " Flag " << ok << ":" << val << " " << ck;
773  }
774  }
775  }
776  }
777 }
Log< level::Info, true > LogVerbatim
std::pair< double, double > rangeZ(bool reco) const
T perp() const
Definition: PV3DBase.h:69
T z() const
Definition: PV3DBase.h:61
bool valid(const DetId &id) const override
Is this a valid cell id.
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
const HGCalTopology & topology() const
std::pair< double, double > rangeR(double z, bool reco) const
Definition: DetId.h:17
GlobalPoint getPosition(const DetId &id, bool debug=false) const
const HGCalDDDConstants & dddConstants() const
Definition: HGCalTopology.h:98

◆ digiCollection()

std::string HGCDigitizer::digiCollection ( )
inline

Definition at line 76 of file HGCDigitizer.h.

References digiCollection_.

Referenced by finalizeEvent(), HGCDigiProducer::HGCDigiProducer(), and PreMixingHGCalWorker::PreMixingHGCalWorker().

76 { return digiCollection_; }
const std::string digiCollection_
Definition: HGCDigitizer.h:84

◆ finalizeEvent()

void HGCDigitizer::finalizeEvent ( edm::Event e,
edm::EventSetup const &  c,
CLHEP::HepRandomEngine *  hre 
)

Definition at line 297 of file HGCDigitizer.cc.

References averageOccupancies_, checkPosition(), digiCollection(), digitizationType_, MillePedeFileConverter_cfg::e, getType(), gHGCal_, hitOrder_monitor, hitRefs_bx0, heavyIonCSV_trainingSettings::idx, eostools::move(), nEvents_, PhitRefs_bx0, premixStage1_, premixStage1MaxCharge_, premixStage1MinCharge_, pusimHitAccumulator_, simHitAccumulator_, theDigitizer_, and validIds_.

Referenced by HGCDigiProducer::finalizeEvent(), and PreMixingHGCalWorker::put().

297  {
298  hitRefs_bx0.clear();
299  PhitRefs_bx0.clear();
300  hitOrder_monitor.clear();
301 
302  const CaloSubdetectorGeometry* theGeom = static_cast<const CaloSubdetectorGeometry*>(gHGCal_);
303 
304  ++nEvents_;
305 
306  unsigned idx = getType();
307  // release memory for unfilled parts of hash table
308  if (validIds_.size() * averageOccupancies_[idx] > simHitAccumulator_->size()) {
309  simHitAccumulator_->reserve(simHitAccumulator_->size());
310  pusimHitAccumulator_->reserve(simHitAccumulator_->size());
311  }
312  //update occupancy guess
313  const double thisOcc = simHitAccumulator_->size() / ((double)validIds_.size());
315 
316  if (premixStage1_) {
317  auto simRecord = std::make_unique<PHGCSimAccumulator>();
318 
319  if (!pusimHitAccumulator_->empty()) {
320  saveSimHitAccumulator_forPreMix(
322  }
323 
324  e.put(std::move(simRecord), digiCollection());
325 
326  } else {
327  auto digiResult = std::make_unique<HGCalDigiCollection>();
328  theDigitizer_->run(digiResult, *simHitAccumulator_, theGeom, validIds_, digitizationType_, hre);
329  edm::LogVerbatim("HGCDigitizer") << "HGCDigitizer:: finalize event - produced " << digiResult->size()
330  << " hits in det/subdet " << theDigitizer_->det() << "/"
331  << theDigitizer_->subdet();
332 #ifdef EDM_ML_DEBUG
333  checkPosition(&(*digiResult));
334 #endif
335  e.put(std::move(digiResult), digiCollection());
336  }
337 
340 }
Log< level::Info, true > LogVerbatim
uint32_t nEvents_
Definition: HGCDigitizer.h:126
void checkPosition(const HGCalDigiCollection *digis) const
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110
std::unordered_map< uint32_t, HGCCellInfo > HGCSimHitDataAccumulator
const double premixStage1MaxCharge_
Definition: HGCDigitizer.h:95
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
uint32_t getType() const
const double premixStage1MinCharge_
Definition: HGCDigitizer.h:93
std::unordered_map< uint32_t, std::vector< std::tuple< float, float, float > > > PhitRefs_bx0
Definition: HGCDigitizer.h:133
std::unordered_map< uint32_t, bool > hitOrder_monitor
Definition: HGCDigitizer.h:134
std::unordered_set< DetId > validIds_
Definition: HGCDigitizer.h:115
const bool premixStage1_
Definition: HGCDigitizer.h:90
std::array< double, 4 > averageOccupancies_
Definition: HGCDigitizer.h:125
std::unordered_map< uint32_t, std::vector< std::pair< float, float > > > hitRefs_bx0
Definition: HGCDigitizer.h:132
std::unique_ptr< hgc::HGCSimHitDataAccumulator > simHitAccumulator_
Definition: HGCDigitizer.h:81
std::unique_ptr< hgc::HGCPUSimHitDataAccumulator > pusimHitAccumulator_
Definition: HGCDigitizer.h:82
std::string digiCollection()
Definition: HGCDigitizer.h:76
def move(src, dest)
Definition: eostools.py:511
const int digitizationType_
Definition: HGCDigitizer.h:87
std::unordered_map< uint32_t, HGCCellHitInfo > HGCPUSimHitDataAccumulator

◆ getType()

uint32_t HGCDigitizer::getType ( void  ) const
private

Definition at line 718 of file HGCDigitizer.cc.

References DetId::Forward, DetId::HGCalEE, DetId::HGCalHSc, DetId::HGCalHSi, heavyIonCSV_trainingSettings::idx, SiStripPI::max, and theDigitizer_.

Referenced by finalizeEvent(), and initializeEvent().

718  {
720  switch (theDigitizer_->det()) {
721  case DetId::HGCalEE:
722  idx = 0;
723  break;
724  case DetId::HGCalHSi:
725  idx = 1;
726  break;
727  case DetId::HGCalHSc:
728  idx = 2;
729  break;
730  case DetId::Forward:
731  idx = 3;
732  break;
733  default:
734  break;
735  }
736  return idx;
737 }
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110

◆ initializeEvent()

void HGCDigitizer::initializeEvent ( edm::Event const &  e,
edm::EventSetup const &  c 
)

actions at the start/end of event

Definition at line 267 of file HGCDigitizer.cc.

References averageOccupancies_, edm::ESWatcher< T >::check(), Exception, relativeConstraints::geom, geomToken_, geomWatcher_, edm::EventSetup::getData(), getType(), gHGCal_, hitCollection_, heavyIonCSV_trainingSettings::idx, pusimHitAccumulator_, simHitAccumulator_, edm::swap(), theDigitizer_, validIds_, and verbosity_.

Referenced by PreMixingHGCalWorker::initializeEvent(), and HGCDigiProducer::initializeEvent().

267  {
268  if (geomWatcher_.check(es)) {
269  std::unordered_set<DetId>().swap(validIds_);
270 
271  //get geometry
272  CaloGeometry const& geom = es.getData(geomToken_);
273 
274  gHGCal_ =
275  dynamic_cast<const HGCalGeometry*>(geom.getSubdetectorGeometry(theDigitizer_->det(), theDigitizer_->subdet()));
276 
277  int nadded(0);
278  //valid ID lists
279  if (nullptr != gHGCal_) {
280  getValidDetIds(gHGCal_, validIds_);
281  } else {
282  throw cms::Exception("BadConfiguration") << "HGCDigitizer is not producing EE, FH, or BH digis!";
283  }
284 
285  if (verbosity_ > 0)
286  edm::LogInfo("HGCDigitizer") << "Added " << nadded << ":" << validIds_.size() << " detIds without "
287  << hitCollection_ << " in first event processed" << std::endl;
288  }
289 
290  // reserve memory for a full detector
291  unsigned idx = getType();
294 }
std::unique_ptr< HGCDigitizerBase > theDigitizer_
Definition: HGCDigitizer.h:110
const edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_
Definition: HGCDigitizer.h:113
const HGCalGeometry * gHGCal_
Definition: HGCDigitizer.h:116
void swap(Association< C > &lhs, Association< C > &rhs)
Definition: Association.h:117
uint32_t getType() const
edm::ESWatcher< CaloGeometryRecord > geomWatcher_
Definition: HGCDigitizer.h:114
const uint32_t verbosity_
Definition: HGCDigitizer.h:119
std::unordered_set< DetId > validIds_
Definition: HGCDigitizer.h:115
Log< level::Info, false > LogInfo
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
std::array< double, 4 > averageOccupancies_
Definition: HGCDigitizer.h:125
std::unique_ptr< hgc::HGCSimHitDataAccumulator > simHitAccumulator_
Definition: HGCDigitizer.h:81
std::unique_ptr< hgc::HGCPUSimHitDataAccumulator > pusimHitAccumulator_
Definition: HGCDigitizer.h:82
const std::string hitCollection_
Definition: HGCDigitizer.h:102

◆ orderByDetIdThenTime()

static bool HGCDigitizer::orderByDetIdThenTime ( const HGCCaloHitTuple_t a,
const HGCCaloHitTuple_t b 
)
inlinestatic

Definition at line 36 of file HGCDigitizer.h.

References a, and b.

Referenced by accumulate(), and accumulate_forPreMix().

36  {
37  unsigned int detId_a(std::get<1>(a)), detId_b(std::get<1>(b));
38 
39  if (detId_a < detId_b)
40  return true;
41  if (detId_a > detId_b)
42  return false;
43 
44  double time_a(std::get<2>(a)), time_b(std::get<2>(b));
45  if (time_a < time_b)
46  return true;
47 
48  return false;
49  }
double b
Definition: hdecay.h:118
double a
Definition: hdecay.h:119

◆ resetPUSimHitDataAccumulator()

void HGCDigitizer::resetPUSimHitDataAccumulator ( )
private

◆ resetSimHitDataAccumulator()

void HGCDigitizer::resetSimHitDataAccumulator ( )
private

Definition at line 711 of file HGCDigitizer.cc.

References simHitAccumulator_.

711  {
712  for (HGCSimHitDataAccumulator::iterator it = simHitAccumulator_->begin(); it != simHitAccumulator_->end(); it++) {
713  it->second.hit_info[0].fill(0.);
714  it->second.hit_info[1].fill(0.);
715  }
716 }
std::unique_ptr< hgc::HGCSimHitDataAccumulator > simHitAccumulator_
Definition: HGCDigitizer.h:81

Member Data Documentation

◆ averageOccupancies_

std::array<double, 4> HGCDigitizer::averageOccupancies_
private

Definition at line 125 of file HGCDigitizer.h.

Referenced by finalizeEvent(), and initializeEvent().

◆ bxTime_

const double HGCDigitizer::bxTime_
private

Definition at line 99 of file HGCDigitizer.h.

Referenced by accumulate(), and accumulate_forPreMix().

◆ cce_

std::vector<float> HGCDigitizer::cce_
private

Definition at line 131 of file HGCDigitizer.h.

Referenced by HGCDigitizer().

◆ digiCollection_

const std::string HGCDigitizer::digiCollection_
private

Definition at line 84 of file HGCDigitizer.h.

Referenced by digiCollection().

◆ digitizationType_

const int HGCDigitizer::digitizationType_
private

Definition at line 87 of file HGCDigitizer.h.

Referenced by finalizeEvent().

◆ ev_per_eh_pair_

double HGCDigitizer::ev_per_eh_pair_
private

Definition at line 100 of file HGCDigitizer.h.

◆ geomToken_

const edm::ESGetToken<CaloGeometry, CaloGeometryRecord> HGCDigitizer::geomToken_
private

Definition at line 113 of file HGCDigitizer.h.

Referenced by initializeEvent().

◆ geomWatcher_

edm::ESWatcher<CaloGeometryRecord> HGCDigitizer::geomWatcher_
private

Definition at line 114 of file HGCDigitizer.h.

Referenced by initializeEvent().

◆ gHGCal_

const HGCalGeometry* HGCDigitizer::gHGCal_ = nullptr
private

◆ hitCollection_

const std::string HGCDigitizer::hitCollection_
private

Definition at line 102 of file HGCDigitizer.h.

Referenced by accumulate(), accumulate_forPreMix(), and initializeEvent().

◆ hitOrder_monitor

std::unordered_map<uint32_t, bool> HGCDigitizer::hitOrder_monitor
private

Definition at line 134 of file HGCDigitizer.h.

Referenced by accumulate_forPreMix(), and finalizeEvent().

◆ hitRefs_bx0

std::unordered_map<uint32_t, std::vector<std::pair<float, float> > > HGCDigitizer::hitRefs_bx0
private

Definition at line 132 of file HGCDigitizer.h.

Referenced by accumulate(), accumulate_forPreMix(), and finalizeEvent().

◆ hitsProducer_

const std::string HGCDigitizer::hitsProducer_
private

Definition at line 101 of file HGCDigitizer.h.

Referenced by accumulate(), and accumulate_forPreMix().

◆ hitToken_

const edm::EDGetTokenT<std::vector<PCaloHit> > HGCDigitizer::hitToken_
private

Definition at line 103 of file HGCDigitizer.h.

Referenced by accumulate(), and accumulate_forPreMix().

◆ maxBx_

const unsigned int HGCDigitizer::maxBx_ = 14
staticprivate

Definition at line 129 of file HGCDigitizer.h.

Referenced by accumulate(), and accumulate_forPreMix().

◆ maxSimHitsAccTime_

const int HGCDigitizer::maxSimHitsAccTime_
private

Definition at line 98 of file HGCDigitizer.h.

◆ nEvents_

uint32_t HGCDigitizer::nEvents_
private

Definition at line 126 of file HGCDigitizer.h.

Referenced by finalizeEvent().

◆ PhitRefs_bx0

std::unordered_map<uint32_t, std::vector<std::tuple<float, float, float> > > HGCDigitizer::PhitRefs_bx0
private

Definition at line 133 of file HGCDigitizer.h.

Referenced by accumulate_forPreMix(), and finalizeEvent().

◆ premixStage1_

const bool HGCDigitizer::premixStage1_
private

Definition at line 90 of file HGCDigitizer.h.

Referenced by finalizeEvent().

◆ premixStage1MaxCharge_

const double HGCDigitizer::premixStage1MaxCharge_
private

Definition at line 95 of file HGCDigitizer.h.

Referenced by accumulate_forPreMix(), and finalizeEvent().

◆ premixStage1MinCharge_

const double HGCDigitizer::premixStage1MinCharge_
private

Definition at line 93 of file HGCDigitizer.h.

Referenced by accumulate_forPreMix(), and finalizeEvent().

◆ pusimHitAccumulator_

std::unique_ptr<hgc::HGCPUSimHitDataAccumulator> HGCDigitizer::pusimHitAccumulator_
private

Definition at line 82 of file HGCDigitizer.h.

Referenced by accumulate_forPreMix(), finalizeEvent(), and initializeEvent().

◆ simHitAccumulator_

std::unique_ptr<hgc::HGCSimHitDataAccumulator> HGCDigitizer::simHitAccumulator_
private

◆ theDigitizer_

std::unique_ptr<HGCDigitizerBase> HGCDigitizer::theDigitizer_
private

◆ thisBx_

const unsigned int HGCDigitizer::thisBx_ = 9
staticprivate

Definition at line 130 of file HGCDigitizer.h.

Referenced by accumulate(), and accumulate_forPreMix().

◆ tofDelay_

const float HGCDigitizer::tofDelay_
private

Definition at line 122 of file HGCDigitizer.h.

Referenced by accumulate(), and accumulate_forPreMix().

◆ validIds_

std::unordered_set<DetId> HGCDigitizer::validIds_
private

Definition at line 115 of file HGCDigitizer.h.

Referenced by accumulate(), accumulate_forPreMix(), finalizeEvent(), and initializeEvent().

◆ verbosity_

const uint32_t HGCDigitizer::verbosity_
private

Definition at line 119 of file HGCDigitizer.h.

Referenced by accumulate(), and initializeEvent().