CMS 3D CMS Logo

GenericSimClusterMapper.cc
Go to the documentation of this file.
3 
5 
8 
9 #ifdef PFLOW_DEBUG
10 #define LOGVERB(x) edm::LogVerbatim(x)
11 #define LOGWARN(x) edm::LogWarning(x)
12 #define LOGERR(x) edm::LogError(x)
13 #define LOGDRESSED(x) edm::LogInfo(x)
14 #else
15 #define LOGVERB(x) LogTrace(x)
16 #define LOGWARN(x) edm::LogWarning(x)
17 #define LOGERR(x) edm::LogError(x)
18 #define LOGDRESSED(x) LogDebug(x)
19 #endif
20 
22 
24  const std::vector<bool>& rechitMask,
25  const std::vector<bool>& seedable,
27  const SimClusterCollection& simClusters = *_simClusterH;
28  auto const& hits = *input;
29 
30  // for quick indexing back to hit energy
31  std::unordered_map<uint32_t, size_t> detIdToIndex(hits.size());
32  for (uint32_t i = 0; i < hits.size(); ++i) {
33  detIdToIndex[hits[i].detId()] = i;
34  auto ref = makeRefhit(input, i);
35  }
36 
37  for (const auto& sc : simClusters) {
38  output.emplace_back();
39  reco::PFCluster& back = output.back();
41  double energy = 0.0, highest_energy = 0.0;
42  auto hitsAndFractions = sc.hits_and_fractions();
43  for (const auto& hAndF : hitsAndFractions) {
44  auto itr = detIdToIndex.find(hAndF.first);
45  if (itr == detIdToIndex.end())
46  continue; // hit wasn't saved in reco
47  auto ref = makeRefhit(input, itr->second);
48  const double hit_energy = hAndF.second * ref->energy();
49  energy += hit_energy;
50  back.addRecHitFraction(reco::PFRecHitFraction(ref, hAndF.second));
51  if (hit_energy > highest_energy || highest_energy == 0.0) {
52  highest_energy = hit_energy;
53  seed = ref;
54  }
55  }
56  if (!back.hitsAndFractions().empty()) {
57  back.setSeed(seed->detId());
58  back.setEnergy(energy);
60  } else {
61  back.setSeed(-1);
62  back.setEnergy(0.f);
63  }
64  }
65 }
reco::PFClusterCollection
std::vector< PFCluster > PFClusterCollection
collection of PFCluster objects
Definition: PFClusterFwd.h:9
reco::CaloCluster::setSeed
void setSeed(const DetId &id)
Definition: CaloCluster.h:146
SimClusterCollection
std::vector< SimCluster > SimClusterCollection
Definition: SimClusterFwd.h:8
mps_fire.i
i
Definition: mps_fire.py:428
input
static const std::string input
Definition: EdmProvDump.cc:48
MessageLogger.h
hfClusterShapes_cfi.hits
hits
Definition: hfClusterShapes_cfi.py:5
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
reco::PFRecHitFraction
Fraction of a PFRecHit (rechits can be shared between several PFCluster's)
Definition: PFRecHitFraction.h:18
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:72
reco::CaloCluster::setCorrectedEnergy
void setCorrectedEnergy(double cenergy)
Definition: CaloCluster.h:137
edm::Handle
Definition: AssociativeIterator.h:50
edm::Ref
Definition: AssociativeIterator.h:58
InitialClusteringStepBase::makeRefhit
reco::PFRecHitRef makeRefhit(const edm::Handle< reco::PFRecHitCollection > &h, const unsigned i) const
Definition: InitialClusteringStepBase.h:103
fileCollector.seed
seed
Definition: fileCollector.py:127
SimCluster.h
GenericSimClusterMapper::updateEvent
void updateEvent(const edm::Event &) final
Definition: GenericSimClusterMapper.cc:21
HCALHighEnergyHPDFilter_cfi.energy
energy
Definition: HCALHighEnergyHPDFilter_cfi.py:5
GenericSimClusterMapper::_simClusterH
edm::Handle< SimClusterCollection > _simClusterH
Definition: GenericSimClusterMapper.h:30
GenericSimClusterMapper::_simClusterToken
edm::EDGetTokenT< SimClusterCollection > _simClusterToken
Definition: GenericSimClusterMapper.h:29
Event.h
reco::CaloCluster::hitsAndFractions
const std::vector< std::pair< DetId, float > > & hitsAndFractions() const
Definition: CaloCluster.h:210
GenericSimClusterMapper::buildClusters
void buildClusters(const edm::Handle< reco::PFRecHitCollection > &, const std::vector< bool > &, const std::vector< bool > &, reco::PFClusterCollection &) override
Definition: GenericSimClusterMapper.cc:23
GenericSimClusterMapper.h
itr
std::vector< std::pair< float, float > >::iterator itr
Definition: HGCDigitizer.cc:29
reco::PFCluster::addRecHitFraction
void addRecHitFraction(const reco::PFRecHitFraction &frac)
add a given fraction of the rechit
Definition: PFCluster.cc:33
reco::CaloCluster::setEnergy
void setEnergy(double energy)
Definition: CaloCluster.h:136
HGCalDetId.h
ev
bool ev
Definition: Hydjet2Hadronizer.cc:95
reco::PFCluster
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
Definition: PFCluster.h:42
edm::Event
Definition: Event.h:73