CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
TSToSimTSAssociatorByEnergyScoreImpl Class Reference

#include <TSToSimTSAssociatorByEnergyScoreImpl.h>

Inheritance diagram for TSToSimTSAssociatorByEnergyScoreImpl:
hgcal::TracksterToSimTracksterAssociatorBaseImpl

Public Member Functions

hgcal::RecoToSimCollectionSimTracksters associateRecoToSim (const edm::Handle< ticl::TracksterCollection > &tCH, const edm::Handle< reco::CaloClusterCollection > &lCCH, const edm::Handle< ticl::TracksterCollection > &sTCH) const override
 Associate a Trackster to SimClusters. More...
 
hgcal::SimToRecoCollectionSimTracksters associateSimToReco (const edm::Handle< ticl::TracksterCollection > &tCH, const edm::Handle< reco::CaloClusterCollection > &lCCH, const edm::Handle< ticl::TracksterCollection > &sTCH) const override
 Associate a SimCluster to Tracksters. More...
 
 TSToSimTSAssociatorByEnergyScoreImpl (edm::EDProductGetter const &, bool, std::shared_ptr< hgcal::RecHitTools >, const std::unordered_map< DetId, const HGCRecHit * > *)
 
- Public Member Functions inherited from hgcal::TracksterToSimTracksterAssociatorBaseImpl
 TracksterToSimTracksterAssociatorBaseImpl ()
 Constructor. More...
 
virtual ~TracksterToSimTracksterAssociatorBaseImpl ()
 Destructor. More...
 

Private Member Functions

hgcal::association makeConnections (const edm::Handle< ticl::TracksterCollection > &tCH, const edm::Handle< reco::CaloClusterCollection > &lCCH, const edm::Handle< ticl::TracksterCollection > &sTCH) const
 

Private Attributes

const bool hardScatterOnly_
 
const std::unordered_map
< DetId, const HGCRecHit * > * 
hitMap_
 
unsigned layers_
 
edm::EDProductGetter const * productGetter_
 
std::shared_ptr
< hgcal::RecHitTools
recHitTools_
 

Detailed Description

Definition at line 66 of file TSToSimTSAssociatorByEnergyScoreImpl.h.

Constructor & Destructor Documentation

TSToSimTSAssociatorByEnergyScoreImpl::TSToSimTSAssociatorByEnergyScoreImpl ( edm::EDProductGetter const &  productGetter,
bool  hardScatterOnly,
std::shared_ptr< hgcal::RecHitTools recHitTools,
const std::unordered_map< DetId, const HGCRecHit * > *  hitMap 
)
explicit

Definition at line 5 of file TSToSimTSAssociatorByEnergyScoreImpl.cc.

References layers_, and recHitTools_.

10  : hardScatterOnly_(hardScatterOnly), recHitTools_(recHitTools), hitMap_(hitMap), productGetter_(&productGetter) {
11  layers_ = recHitTools_->lastLayerBH();
12 }
std::shared_ptr< hgcal::RecHitTools > recHitTools_
EDProductGetter const * productGetter(std::atomic< void const * > const &iCache)
const std::unordered_map< DetId, const HGCRecHit * > * hitMap_

Member Function Documentation

hgcal::RecoToSimCollectionSimTracksters TSToSimTSAssociatorByEnergyScoreImpl::associateRecoToSim ( const edm::Handle< ticl::TracksterCollection > &  tCH,
const edm::Handle< reco::CaloClusterCollection > &  lCCH,
const edm::Handle< ticl::TracksterCollection > &  sTCH 
) const
overridevirtual

Associate a Trackster to SimClusters.

Reimplemented from hgcal::TracksterToSimTracksterAssociatorBaseImpl.

Definition at line 436 of file TSToSimTSAssociatorByEnergyScoreImpl.cc.

References edm::AssociationMap< Tag >::insert(), electronStore::links, LogDebug, makeConnections(), and productGetter_.

439  {
441  const auto& links = makeConnections(tCH, lCCH, sTCH);
442 
443  const auto& stsInTrackster = std::get<0>(links);
444  for (size_t tsId = 0; tsId < stsInTrackster.size(); ++tsId) {
445  for (auto& stPair : stsInTrackster[tsId]) {
446  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "Trackster Id:\t" << tsId << "\tSimTrackster id:\t"
447  << stPair.first << "\tscore:\t" << stPair.second << "\n";
448  // Fill AssociationMap
449  returnValue.insert(edm::Ref<ticl::TracksterCollection>(tCH, tsId), // Ref to TS
450  std::make_pair(edm::Ref<ticl::TracksterCollection>(sTCH, stPair.first),
451  stPair.second) // Pair <Ref to ST, score>
452  );
453  }
454  }
455  return returnValue;
456 }
hgcal::association makeConnections(const edm::Handle< ticl::TracksterCollection > &tCH, const edm::Handle< reco::CaloClusterCollection > &lCCH, const edm::Handle< ticl::TracksterCollection > &sTCH) const
#define LogDebug(id)
hgcal::SimToRecoCollectionSimTracksters TSToSimTSAssociatorByEnergyScoreImpl::associateSimToReco ( const edm::Handle< ticl::TracksterCollection > &  tCH,
const edm::Handle< reco::CaloClusterCollection > &  lCCH,
const edm::Handle< ticl::TracksterCollection > &  sTCH 
) const
overridevirtual

Associate a SimCluster to Tracksters.

Reimplemented from hgcal::TracksterToSimTracksterAssociatorBaseImpl.

Definition at line 458 of file TSToSimTSAssociatorByEnergyScoreImpl.cc.

References edm::AssociationMap< Tag >::insert(), electronStore::links, makeConnections(), and productGetter_.

461  {
463  const auto& links = makeConnections(tCH, lCCH, sTCH);
464  const auto& tssInSimTrackster = std::get<1>(links);
465  for (size_t stId = 0; stId < tssInSimTrackster.size(); ++stId) {
466  for (auto& tsPair : tssInSimTrackster[stId].tracksterIdToEnergyAndScore) {
467  returnValue.insert(
468  edm::Ref<ticl::TracksterCollection>(sTCH, stId), // Ref to ST
469  std::make_pair(edm::Ref<ticl::TracksterCollection>(tCH, tsPair.first), // Pair <Ref to TS,
470  std::make_pair(tsPair.second.first, tsPair.second.second)) // pair <energy, score> >
471  );
472  }
473  }
474  return returnValue;
475 }
hgcal::association makeConnections(const edm::Handle< ticl::TracksterCollection > &tCH, const edm::Handle< reco::CaloClusterCollection > &lCCH, const edm::Handle< ticl::TracksterCollection > &sTCH) const
hgcal::association TSToSimTSAssociatorByEnergyScoreImpl::makeConnections ( const edm::Handle< ticl::TracksterCollection > &  tCH,
const edm::Handle< reco::CaloClusterCollection > &  lCCH,
const edm::Handle< ticl::TracksterCollection > &  sTCH 
) const
private

Definition at line 14 of file TSToSimTSAssociatorByEnergyScoreImpl.cc.

References SplitLinear::begin, c, relativeConstraints::empty, dataset::end, relval_parameters_module::energy, validate-o2o-wbm::f, spr::find(), for(), HLT_FULL_cff::fraction, hitMap_, mps_fire::i, dqmdumpme::last, LogDebug, funct::pow(), edm::Handle< T >::product(), tier0::unique(), and beam_dqm_sourceclient-live_cfg::vertices.

Referenced by associateRecoToSim(), and associateSimToReco().

17  {
18  // Get collections
19  const auto& tracksters = *tCH.product();
20  const auto& layerClusters = *lCCH.product();
21  const auto& simTracksters = *sTCH.product();
22  auto nTracksters = tracksters.size();
23 
24  //There shouldn't be any SimTrackster without vertices, but maybe they will be added later.
25  auto nSimTracksters = simTracksters.size();
26  std::vector<size_t> sTIndices;
27  for (unsigned int stId = 0; stId < nSimTracksters; ++stId) {
28  if (simTracksters[stId].vertices().empty()) {
29  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
30  << "Excluding SimTrackster " << stId << " witH no vertices!" << std::endl;
31  continue;
32  }
33  sTIndices.emplace_back(stId);
34  }
35  nSimTracksters = sTIndices.size();
36 
37  // Initialize tssInSimTrackster. It contains the simTracksterOnLayer structure for all CaloParticles in each layer and
38  // among other the information to compute the SimTrackster-To-Trackster score. It is one of the two objects that
39  // build the output of the makeConnections function.
40  // tssInSimTrackster[stId]
41  hgcal::simTracksterToTrackster tssInSimTrackster;
42  tssInSimTrackster.resize(nSimTracksters);
43  for (unsigned int i = 0; i < nSimTracksters; ++i) {
44  tssInSimTrackster[i].simTracksterId = i;
45  tssInSimTrackster[i].energy = 0.f;
46  tssInSimTrackster[i].lcs_and_fractions.clear();
47  }
48 
49  // Fill lcToSimTracksterId_Map and update tssInSimTrackster
50  // The lcToSimTracksterId_Map is used to connect a LayerCluster, via its id (key), with all the SimTracksters that
51  // contributed to that LayerCluster by storing the SimTrackster id and the fraction of the LayerCluster's energy
52  // in which the SimTrackster contributed.
53  std::unordered_map<int, std::vector<hgcal::lcInfoInTrackster>> lcToSimTracksterId_Map;
54  for (const auto& stId : sTIndices) {
55  const auto& lcs = simTracksters[stId].vertices();
56  int lcInSimTst = 0;
57  for (const auto& lcId : lcs) {
58  const auto fraction = 1.f / simTracksters[stId].vertex_multiplicity(lcInSimTst++);
59 
60  const auto lc_find_it = lcToSimTracksterId_Map.find(lcId);
61  if (lc_find_it == lcToSimTracksterId_Map.end()) {
62  lcToSimTracksterId_Map[lcId] = std::vector<hgcal::lcInfoInTrackster>();
63  }
64  lcToSimTracksterId_Map[lcId].emplace_back(stId, fraction);
65 
66  tssInSimTrackster[stId].energy += fraction * layerClusters[lcId].energy();
67  tssInSimTrackster[stId].lcs_and_fractions.emplace_back(lcId, fraction);
68  }
69  } // end of loop over SimTracksters
70 
71 #ifdef EDM_ML_DEBUG
72  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
73  << "tssInSimTrackster INFO (Only SimTrackster filled at the moment)" << std::endl;
74  for (size_t st = 0; st < tssInSimTrackster.size(); ++st) {
75  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "For SimTrackster Idx: " << st << " we have: " << std::endl;
76  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
77  << "\tSimTracksterIdx:\t" << tssInSimTrackster[st].simTracksterId << std::endl;
78  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "\tEnergy:\t" << tssInSimTrackster[st].energy << std::endl;
79  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "\t# of clusters:\t" << layerClusters.size() << std::endl;
80  double tot_energy = 0.;
81  for (auto const& lcaf : tssInSimTrackster[st].lcs_and_fractions) {
82  const auto lcEn = lcaf.second * layerClusters[lcaf.first].energy();
83  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
84  << "\tLC/fraction/energy: " << (uint32_t)lcaf.first << "/" << lcaf.second << "/" << lcEn << std::endl;
85  tot_energy += lcEn;
86  }
87  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "\tTot Sum lcaf: " << tot_energy << std::endl;
88  for (auto const& ts : tssInSimTrackster[st].tracksterIdToEnergyAndScore) {
89  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
90  << "\ttsIdx/energy/score: " << ts.first << "/" << ts.second.first << "/" << ts.second.second << std::endl;
91  }
92  }
93 
94  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "lcToSimTracksterId_Map INFO" << std::endl;
95  for (auto const& lc : lcToSimTracksterId_Map) {
96  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
97  << "For lcId: " << (uint32_t)lc.first
98  << " we have found the following connections with SimTracksters:" << std::endl;
99  for (auto const& st : lc.second) {
100  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
101  << "\tSimTrackster Id: " << st.clusterId << " with fraction: " << st.fraction
102  << " and energy: " << st.fraction * layerClusters[lc.first].energy() << std::endl;
103  }
104  }
105 #endif
106 
107  // Fill stsInTrackster and update tssInSimTrackster
108  // this contains the ids of the simTracksters contributing with at least one
109  // hit to the Trackster. To be returned since this contains the information
110  // to compute the Trackster-To-SimTrackster score.
111  hgcal::tracksterToSimTrackster stsInTrackster; // tsId->(stId,score)
112  stsInTrackster.resize(nTracksters);
113 
114  for (unsigned int tsId = 0; tsId < nTracksters; ++tsId) {
115  for (unsigned int i = 0; i < tracksters[tsId].vertices().size(); ++i) {
116  const auto lcId = tracksters[tsId].vertices(i);
117  const auto lcFractionInTs = 1.f / tracksters[tsId].vertex_multiplicity(i);
118 
119  const auto lc_find_in_ST = lcToSimTracksterId_Map.find(lcId);
120 
121  if (lc_find_in_ST != lcToSimTracksterId_Map.end()) {
122  //Loops through all the simTracksters that contain the layer cluster under study
123  //Here is time to update the tssInSimTrackster and connect the SimTrackster with all
124  //the Tracksters that have the current layer cluster matched.
125  for (const auto& st : lc_find_in_ST->second) {
126  //tssInSimTrackster[simTracksterId][layerclusterId]-> (energy,score)
127  //ST_i - > TS_j, TS_k, ...
128  tssInSimTrackster[st.clusterId].tracksterIdToEnergyAndScore[tsId].first +=
129  lcFractionInTs * st.fraction * layerClusters[lcId].energy();
130  //TS_i -> ST_j, ST_k, ...
131  stsInTrackster[tsId].emplace_back(st.clusterId, 0.f);
132  }
133  }
134  } // End loop over LayerClusters in Trackster
135  } // End of loop over Tracksters
136 
137 #ifdef EDM_ML_DEBUG
138  for (unsigned int tsId = 0; tsId < nTracksters; ++tsId) {
139  for (const auto& lcId : tracksters[tsId].vertices()) {
140  const auto& hits_and_fractions = layerClusters[lcId].hitsAndFractions();
141  unsigned int numberOfHitsInLC = hits_and_fractions.size();
142 
143  // This vector will store, for each hit in the Layercluster, the index of
144  // the SimTrackster that contributed the most, in terms of energy, to it.
145  // Special values are:
146  //
147  // -2 --> the reconstruction fraction of the RecHit is 0 (used in the past to monitor Halo Hits)
148  // -3 --> same as before with the added condition that no SimTrackster has been linked to this RecHit
149  // -1 --> the reco fraction is >0, but no SimTrackster has been linked to it
150  // >=0 --> index of the linked SimTrackster
151  std::vector<int> hitsToSimTracksterId(numberOfHitsInLC);
152  // This will store the index of the SimTrackster linked to the LayerCluster that has the largest number of hits in common.
153  int maxSTId_byNumberOfHits = -1;
154  // This will store the maximum number of shared hits between a LayerCluster and a SimTrackster
155  unsigned int maxSTNumberOfHitsInLC = 0;
156  // This will store the index of the SimTrackster linked to the LayerCluster that has the largest energy in common.
157  int maxSTId_byEnergy = -1;
158  // This will store the maximum number of shared energy between a LayerCluster and a SimTrackster
159  float maxEnergySharedLCandST = 0.f;
160  // This will store the fraction of the LayerCluster energy shared with the best(energy) SimTrackster: e_shared/lc_energy
161  float energyFractionOfLCinST = 0.f;
162  // This will store the fraction of the SimTrackster energy shared with the Trackster: e_shared/sc_energy
163  float energyFractionOfSTinLC = 0.f;
164  std::unordered_map<unsigned, unsigned> occurrencesSTinLC;
165  unsigned int numberOfNoiseHitsInLC = 0;
166  std::unordered_map<unsigned, float> STEnergyInLC;
167 
168  const auto lc_find_in_ST = lcToSimTracksterId_Map.find(lcId);
169  for (unsigned int hitId = 0; hitId < numberOfHitsInLC; hitId++) {
170  const auto rhFraction = hits_and_fractions[hitId].second;
171  // if the fraction is zero or the hit does not belong to any SimTrackster,
172  // set the SimTrackster Id for the hit to -1; this will
173  // contribute to the number of noise hits
174 
175  // MR Remove the case in which the fraction is 0, since this could be a
176  // real hit that has been marked as halo.
177  if (rhFraction == 0.) {
178  hitsToSimTracksterId[hitId] = -2;
179  }
180  //Now check if there are SimTracksters linked to this rechit of the layercluster
181  if (lc_find_in_ST == lcToSimTracksterId_Map.end()) {
182  hitsToSimTracksterId[hitId] -= 1;
183  } else {
184  auto maxSTEnergyInLC = 0.f;
185  auto maxSTId = -1;
186  //Loop through all the linked SimTracksters
187  for (const auto& st : lc_find_in_ST->second) {
188  const auto stId = st.clusterId;
189  STEnergyInLC[stId] += st.fraction * layerClusters[lcId].energy();
190  // Keep track of which SimTrackster contributed the most, in terms
191  // of energy, to this specific Layer Cluster.
192  if (STEnergyInLC[stId] > maxSTEnergyInLC) {
193  maxSTEnergyInLC = STEnergyInLC[stId];
194  maxSTId = stId;
195  }
196  }
197  hitsToSimTracksterId[hitId] = maxSTId;
198  }
199  } // End loop over hits on a LayerCluster
200 
201  for (const auto& c : hitsToSimTracksterId) {
202  if (c < 0) {
203  numberOfNoiseHitsInLC++;
204  } else {
205  occurrencesSTinLC[c]++;
206  }
207  }
208 
209  for (const auto& c : occurrencesSTinLC) {
210  if (c.second > maxSTNumberOfHitsInLC) {
211  maxSTId_byNumberOfHits = c.first;
212  maxSTNumberOfHitsInLC = c.second;
213  }
214  }
215 
216  for (const auto& c : STEnergyInLC) {
217  if (c.second > maxEnergySharedLCandST) {
218  maxSTId_byEnergy = c.first;
219  maxEnergySharedLCandST = c.second;
220  }
221  }
222 
223  float totalSTEnergyOnLayer = 0.f;
224  if (maxSTId_byEnergy >= 0) {
225  totalSTEnergyOnLayer = tssInSimTrackster[maxSTId_byEnergy].energy;
226  energyFractionOfSTinLC = maxEnergySharedLCandST / totalSTEnergyOnLayer;
227  if (tracksters[tsId].raw_energy() > 0.f) {
228  energyFractionOfLCinST = maxEnergySharedLCandST / tracksters[tsId].raw_energy();
229  }
230  }
231 
232  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
233  << std::setw(12) << "TracksterID:\t" << std::setw(12) << "layerCluster\t" << std::setw(10) << "lc energy\t"
234  << std::setw(5) << "nhits\t" << std::setw(12) << "noise hits\t" << std::setw(22) << "maxSTId_byNumberOfHits\t"
235  << std::setw(8) << "nhitsST\t" << std::setw(13) << "maxSTId_byEnergy\t" << std::setw(20)
236  << "maxEnergySharedLCandST\t" << std::setw(22) << "totalSTEnergyOnLayer\t" << std::setw(22)
237  << "energyFractionOfLCinST\t" << std::setw(25) << "energyFractionOfSTinLC\t"
238  << "\n";
239  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
240  << std::setw(12) << tsId << "\t" << std::setw(12) << lcId << "\t" << std::setw(10)
241  << tracksters[tsId].raw_energy() << "\t" << std::setw(5) << numberOfHitsInLC << "\t" << std::setw(12)
242  << numberOfNoiseHitsInLC << "\t" << std::setw(22) << maxSTId_byNumberOfHits << "\t" << std::setw(8)
243  << maxSTNumberOfHitsInLC << "\t" << std::setw(13) << maxSTId_byEnergy << "\t" << std::setw(20)
244  << maxEnergySharedLCandST << "\t" << std::setw(22) << totalSTEnergyOnLayer << "\t" << std::setw(22)
245  << energyFractionOfLCinST << "\t" << std::setw(25) << energyFractionOfSTinLC << "\n";
246  } // End of loop over LayerClusters in Trackster
247  } // End of loop over Tracksters
248 
249  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
250  << "Improved tssInSimTrackster INFO (Now containing the linked tracksters id and energy - score still empty)"
251  << std::endl;
252  for (size_t st = 0; st < tssInSimTrackster.size(); ++st) {
253  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "For SimTrackster Idx: " << st << " we have: " << std::endl;
254  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
255  << " SimTracksterIdx: " << tssInSimTrackster[st].simTracksterId << std::endl;
256  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "\tEnergy:\t" << tssInSimTrackster[st].energy << std::endl;
257  double tot_energy = 0.;
258  for (auto const& lcaf : tssInSimTrackster[st].lcs_and_fractions) {
259  const auto lcEn = lcaf.second * layerClusters[lcaf.first].energy();
260  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
261  << "\tLC/fraction/energy: " << (uint32_t)lcaf.first << "/" << lcaf.second << "/" << lcEn << std::endl;
262  tot_energy += lcEn;
263  }
264  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "\tTot Sum lcaf: " << tot_energy << std::endl;
265  for (auto const& ts : tssInSimTrackster[st].tracksterIdToEnergyAndScore) {
266  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
267  << "\ttsIdx/energy/score: " << ts.first << "/" << ts.second.first << "/" << ts.second.second << std::endl;
268  }
269  }
270 
271  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "Improved lcToSimTracksterId_Map INFO" << std::endl;
272  for (auto const& lc : lcToSimTracksterId_Map) {
273  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
274  << "For lcId: " << (uint32_t)lc.first
275  << " we have found the following connections with SimTracksters:" << std::endl;
276  for (auto const& st : lc.second) {
277  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
278  << " SimTrackster Id: " << st.clusterId << " with fraction: " << st.fraction
279  << " and energy: " << st.fraction * layerClusters[lc.first].energy() << std::endl;
280  }
281  }
282 #endif
283 
284  // Update stsInTrackster; compute the score Trackster-to-SimTrackster,
285  // together with the returned AssociationMap
286  for (unsigned int tsId = 0; tsId < nTracksters; ++tsId) {
287  // The SimTracksters contributing to the Trackster's LayerClusters should already be unique.
288  // find the unique SimTracksters id contributing to the Trackster's LayerClusters
289  std::sort(stsInTrackster[tsId].begin(), stsInTrackster[tsId].end());
290  auto last = std::unique(stsInTrackster[tsId].begin(), stsInTrackster[tsId].end());
291  stsInTrackster[tsId].erase(last, stsInTrackster[tsId].end());
292 
293  // If a reconstructed Trackster has energy 0 but is linked to a
294  // SimTrackster, assigned score 1
295  if (tracksters[tsId].raw_energy() == 0. && !stsInTrackster[tsId].empty()) {
296  for (auto& stPair : stsInTrackster[tsId]) {
297  stPair.second = 1.;
298  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
299  << "TracksterId:\t " << tsId << "\tST id:\t" << stPair.first << "\tscore\t " << stPair.second << "\n";
300  }
301  continue;
302  }
303 
304  float invTracksterEnergyWeight = 0.f;
305  for (unsigned int i = 0; i < tracksters[tsId].vertices().size(); ++i) {
306  const auto lcId = tracksters[tsId].vertices(i);
307  const auto lcFractionInTs = 1.f / tracksters[tsId].vertex_multiplicity(i);
308 
309  const auto& hits_and_fractions = layerClusters[lcId].hitsAndFractions();
310  // Compute the correct normalization
311  for (auto const& haf : hits_and_fractions) {
312  invTracksterEnergyWeight += std::pow(lcFractionInTs * haf.second * hitMap_->at(haf.first)->energy(), 2);
313  }
314  }
315  invTracksterEnergyWeight = 1.f / invTracksterEnergyWeight;
316 
317  for (unsigned int i = 0; i < tracksters[tsId].vertices().size(); ++i) {
318  const auto lcId = tracksters[tsId].vertices(i);
319  const auto lcFractionInTs = 1.f / tracksters[tsId].vertex_multiplicity(i);
320 
321  const bool lcWithST = (lcToSimTracksterId_Map.find(lcId) != lcToSimTracksterId_Map.end());
322 
323  float lcEnergyWeight = pow(layerClusters[lcId].energy(), 2);
324 
325  for (auto& stPair : stsInTrackster[tsId]) {
326  float stFraction = 0.f;
327  if (lcWithST) {
328  const auto findLCIt = std::find(lcToSimTracksterId_Map[lcId].begin(),
329  lcToSimTracksterId_Map[lcId].end(),
330  hgcal::lcInfoInTrackster{stPair.first, 0.f});
331  if (findLCIt != lcToSimTracksterId_Map[lcId].end()) {
332  stFraction = findLCIt->fraction;
333  }
334  }
335  stPair.second +=
336  (lcFractionInTs - stFraction) * (lcFractionInTs - stFraction) * lcEnergyWeight * invTracksterEnergyWeight;
337 #ifdef EDM_ML_DEBUG
338  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
339  << "lcId:\t" << (uint32_t)lcId << "\ttracksterId:\t" << tsId << "\ttsFraction,stFraction:\t"
340  << lcFractionInTs << ", " << stFraction << "\tlcEnergyWeight:\t" << lcEnergyWeight << "\tcurrent score:\t"
341  << stPair.second << "\tinvTracksterEnergyWeight:\t" << invTracksterEnergyWeight << "\n";
342 #endif
343  }
344  } // End of loop over LayerClusters in Trackster
345 
346 #ifdef EDM_ML_DEBUG
347  if (stsInTrackster[tsId].empty())
348  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "trackster Id:\t" << tsId << "\tST id:\t-1"
349  << "\tscore\t-1\n";
350 #endif
351  } // End of loop over Tracksters
352 
353  // Compute the SimTrackster-To-Trackster score
354  for (const auto& stId : sTIndices) {
355  float invSTEnergyWeight = 0.f;
356 
357  const unsigned int STNumberOfLCs = tssInSimTrackster[stId].lcs_and_fractions.size();
358  if (STNumberOfLCs == 0)
359  continue;
360 
361 #ifdef EDM_ML_DEBUG
362  int tsWithMaxEnergyInST = -1;
363  //energy of the most energetic TS from all that were linked to ST
364  float maxEnergyTSinST = 0.f;
365  float STenergy = tssInSimTrackster[stId].energy;
366  //most energetic TS from all TSs linked to ST over ST energy.
367  float STEnergyFractionInTS = 0.f;
368  for (const auto& ts : tssInSimTrackster[stId].tracksterIdToEnergyAndScore) {
369  if (ts.second.first > maxEnergyTSinST) {
370  maxEnergyTSinST = ts.second.first;
371  tsWithMaxEnergyInST = ts.first;
372  }
373  }
374  if (STenergy > 0.f)
375  STEnergyFractionInTS = maxEnergyTSinST / STenergy;
376 
377  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
378  << std::setw(12) << "simTrackster\t" << std::setw(15) << "st total energy\t" << std::setw(15)
379  << "stEnergyOnLayer\t" << std::setw(14) << "STNhitsOnLayer\t" << std::setw(18) << "tsWithMaxEnergyInST\t"
380  << std::setw(15) << "maxEnergyTSinST\t" << std::setw(20) << "STEnergyFractionInTS"
381  << "\n";
382  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
383  << std::setw(12) << stId << "\t" << std::setw(15) << simTracksters[stId].raw_energy() << "\t" << std::setw(15)
384  << STenergy << "\t" << std::setw(14) << STNumberOfLCs << "\t" << std::setw(18) << tsWithMaxEnergyInST << "\t"
385  << std::setw(15) << maxEnergyTSinST << "\t" << std::setw(20) << STEnergyFractionInTS << "\n";
386 #endif
387 
388  // Compute the correct normalization
389  for (auto const& lcaf : tssInSimTrackster[stId].lcs_and_fractions) {
390  invSTEnergyWeight += std::pow(lcaf.second * layerClusters[lcaf.first].energy(), 2);
391  }
392  invSTEnergyWeight = 1.f / invSTEnergyWeight;
393 
394  for (unsigned int i = 0; i < STNumberOfLCs; ++i) {
395  auto& st_lcId = tssInSimTrackster[stId].lcs_and_fractions[i].first;
396  auto& st_lcFraction = tssInSimTrackster[stId].lcs_and_fractions[i].second;
397 
398  if (st_lcFraction == 0.f)
399  continue; // hopefully this should never happen
400  float lcEnergyWeight = pow(layerClusters[st_lcId].energy(), 2);
401  for (auto& tsPair : tssInSimTrackster[stId].tracksterIdToEnergyAndScore) {
402  unsigned int tsId = tsPair.first;
403 
404  for (unsigned int i = 0; i < tracksters[tsId].vertices().size(); ++i) {
405  const auto tsFraction = 1.f / tracksters[tsId].vertex_multiplicity(i);
406 
407  tsPair.second.second +=
408  (tsFraction - st_lcFraction) * (tsFraction - st_lcFraction) * lcEnergyWeight * invSTEnergyWeight;
409 #ifdef EDM_ML_DEBUG
410  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
411  << "STLCId:\t" << (uint32_t)st_lcId << "\tTracksterId:\t" << tsId << "\t"
412  << "tsFraction, stFraction:\t" << tsFraction << ", " << st_lcFraction << "\t"
413  << "lcEnergyWeight:\t" << lcEnergyWeight << "\t"
414  << "current score:\t" << tsPair.second.second << "\t"
415  << "invSTEnergyWeight:\t" << invSTEnergyWeight << "\n";
416 #endif
417  } // End of loop over Trackster's LayerClusters
418  } // End of loop over Tracksters linked to hits of this SimTrackster
419  } // End of loop over hits of SimTrackster on a Layer
420 #ifdef EDM_ML_DEBUG
421  if (tssInSimTrackster[stId].tracksterIdToEnergyAndScore.empty())
422  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl") << "ST Id:\t" << stId << "\tTS id:\t-1 "
423  << "\tscore\t-1\n";
424 
425  for (const auto& tsPair : tssInSimTrackster[stId].tracksterIdToEnergyAndScore) {
426  LogDebug("TSToSimTSAssociatorByEnergyScoreImpl")
427  << "ST Id: \t" << stId << "\t TS id: \t" << tsPair.first << "\t score \t" << tsPair.second.second
428  << "\t shared energy:\t" << tsPair.second.first << "\t shared energy fraction:\t"
429  << (tsPair.second.first / STenergy) << "\n";
430  }
431 #endif
432  } // End loop over SimTrackster indices
433  return {stsInTrackster, tssInSimTrackster};
434 }
const edm::EventSetup & c
def unique
Definition: tier0.py:24
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
std::vector< std::vector< std::pair< unsigned int, float > > > tracksterToSimTrackster
std::vector< hgcal::simTracksterOnLayer > simTracksterToTrackster
for(Iditer=Id.begin();Iditer!=Id.end();Iditer++)
T const * product() const
Definition: Handle.h:70
string end
Definition: dataset.py:937
const std::unordered_map< DetId, const HGCRecHit * > * hitMap_
tuple last
Definition: dqmdumpme.py:56
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
#define LogDebug(id)

Member Data Documentation

const bool TSToSimTSAssociatorByEnergyScoreImpl::hardScatterOnly_
private

Definition at line 84 of file TSToSimTSAssociatorByEnergyScoreImpl.h.

const std::unordered_map<DetId, const HGCRecHit *>* TSToSimTSAssociatorByEnergyScoreImpl::hitMap_
private

Definition at line 86 of file TSToSimTSAssociatorByEnergyScoreImpl.h.

Referenced by makeConnections().

unsigned TSToSimTSAssociatorByEnergyScoreImpl::layers_
private
edm::EDProductGetter const* TSToSimTSAssociatorByEnergyScoreImpl::productGetter_
private
std::shared_ptr<hgcal::RecHitTools> TSToSimTSAssociatorByEnergyScoreImpl::recHitTools_
private