CMS 3D CMS Logo

CaloParticleDebugger.cc
Go to the documentation of this file.
1 //
2 // Original Author: Marco Rovere
3 // Created: Fri, 10 Nov 2017 14:39:18 GMT
4 //
5 //
6 //
7 // system include files
8 #include <memory>
9 #include <iostream>
10 #include <numeric>
11 #include <algorithm>
12 
13 // user include files
17 
22 
24 
33 
42 
43 
44 //
45 // class declaration
46 //
47 
49  public:
50  explicit CaloParticleDebugger(const edm::ParameterSet&);
51  ~CaloParticleDebugger() override;
52 
53  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
54 
55 
56  private:
57  void beginJob() override;
58  void analyze(const edm::Event&, const edm::EventSetup&) override;
59  void endJob() override;
60  void fillSimHits(std::map<int, float> &,
61  const edm::Event& , const edm::EventSetup &);
68  std::vector<edm::InputTag> collectionTags_;
75  std::vector<edm::EDGetTokenT<std::vector<PCaloHit> > > collectionTagsToken_;
76  // ----------member data ---------------------------
77 };
78 
79 //
80 // constants, enums and typedefs
81 //
82 
83 //
84 // static data member definitions
85 //
86 
87 //
88 // constructors and destructor
89 //
91  : simTracks_(iConfig.getParameter<edm::InputTag>("simTracks")),
92  genParticles_(iConfig.getParameter<edm::InputTag>("genParticles")),
93  simVertices_(iConfig.getParameter<edm::InputTag>("simVertices")),
94  trackingParticles_(iConfig.getParameter<edm::InputTag>("trackingParticles")),
95  caloParticles_(iConfig.getParameter<edm::InputTag>("caloParticles")),
96  simClusters_(iConfig.getParameter<edm::InputTag>("simClusters")),
97  collectionTags_(iConfig.getParameter<std::vector<edm::InputTag> >("collectionTags")) {
99  simTracksToken_ = iC.consumes<std::vector<SimTrack> >(simTracks_);
100  genParticlesToken_ = iC.consumes<std::vector<reco::GenParticle> > (genParticles_);
101  simVerticesToken_ = iC.consumes<std::vector<SimVertex> >(simVertices_);
102  trackingParticlesToken_ = iC.consumes<std::vector<TrackingParticle> >(trackingParticles_);
103  caloParticlesToken_ = iC.consumes<std::vector<CaloParticle> >(caloParticles_);
104  simClustersToken_ = iC.consumes<std::vector<SimCluster> >(simClusters_);
105  for (auto const & collectionTag : collectionTags_) {
106  collectionTagsToken_.push_back(iC.consumes<std::vector<PCaloHit> >(collectionTag));
107  }
108 }
109 
111 
112 
113 //
114 // member functions
115 //
116 
117 // ------------ method called for each event ------------
118 void
120  using namespace edm;
121  using std::begin;
122  using std::end;
123  using std::sort;
124  using std::iota;
125 
128  edm::Handle<std::vector<SimVertex> > simVerticesH;
129  edm::Handle<std::vector<TrackingParticle> > trackingParticlesH;
130  edm::Handle<std::vector<CaloParticle> > caloParticlesH;
132 
133  iEvent.getByToken(simTracksToken_, simTracksH);
134  auto const & tracks = *simTracksH.product();
135  std::vector<int> sorted_tracks_idx(tracks.size());
136  iota(begin(sorted_tracks_idx), end(sorted_tracks_idx), 0);
137  sort(begin(sorted_tracks_idx),
138  end(sorted_tracks_idx),
139  [&tracks] (int i, int j) {
140  return tracks[i].momentum().eta() < tracks[j].momentum().eta();
141  });
142 
143  iEvent.getByToken(genParticlesToken_, genParticlesH);
144  auto const & genParticles = *genParticlesH.product();
145  std::vector<int> sorted_genParticles_idx(genParticles.size());
146  iota(begin(sorted_genParticles_idx), end(sorted_genParticles_idx), 0);
147  sort(begin(sorted_genParticles_idx),
148  end(sorted_genParticles_idx), [&genParticles](int i, int j) {
149  return genParticles[i].momentum().eta() < genParticles[j].momentum().eta();});
150 
151  iEvent.getByToken(simVerticesToken_, simVerticesH);
152  auto const & vertices = *simVerticesH.product();
153  std::vector<int> sorted_vertices_idx(vertices.size());
154  iota(begin(sorted_vertices_idx), end(sorted_vertices_idx), 0);
155  sort(begin(sorted_vertices_idx),
156  end(sorted_vertices_idx), [&vertices](int i, int j){
157  return vertices[i].vertexId() < vertices[j].vertexId();
158  });
159 
160  iEvent.getByToken(trackingParticlesToken_, trackingParticlesH);
161  auto const & trackingpart = *trackingParticlesH.product();
162  std::vector<int> sorted_tp_idx(trackingpart.size());
163  iota(begin(sorted_tp_idx), end(sorted_tp_idx), 0);
164  sort(begin(sorted_tp_idx),
165  end(sorted_tp_idx), [&trackingpart] (int i, int j){
166  return trackingpart[i].eta() < trackingpart[j].eta();
167  });
168 
169  iEvent.getByToken(caloParticlesToken_, caloParticlesH);
170  auto const & calopart = *caloParticlesH.product();
171  std::vector<int> sorted_cp_idx(calopart.size());
172  iota(begin(sorted_cp_idx),
173  end(sorted_cp_idx), 0);
174  sort(begin(sorted_cp_idx),
175  end(sorted_cp_idx), [&calopart](int i, int j){
176  return calopart[i].eta() < calopart[j].eta();});
177 
178  iEvent.getByToken(simClustersToken_, simClustersH);
179  auto const & simclusters = *simClustersH.product();
180  std::vector<int> sorted_simcl_idx(simclusters.size());
181  iota(begin(sorted_simcl_idx),
182  end(sorted_simcl_idx), 0);
183  sort(begin(sorted_simcl_idx),
184  end(sorted_simcl_idx), [&simclusters](int i, int j){
185  return simclusters[i].eta() < simclusters[j].eta();});
186 
187  // Let's first fill in hits information
188  std::map<int, float> detIdToTotalSimEnergy;
189  fillSimHits(detIdToTotalSimEnergy, iEvent, iSetup);
190 
191  int idx = 0;
192 
193  std::map<int, int> trackid_to_track_index;
194  std::cout << "Printing SimTracks information" << std::endl;
195  std::cout << "IDX\tTrackId\tPDGID\tMOMENTUM(x,y,z,E)\tVertexIdx\tGenPartIdx" << std::endl;
196  for (auto i : sorted_tracks_idx) {
197  auto const & t = tracks[i];
198  std::cout << idx << "\t" << t.trackId() << "\t" << t << std::endl;
199  trackid_to_track_index[t.trackId()] = idx;
200  idx++;
201  }
202 
203  std::cout << "Printing GenParticles information" << std::endl;
204  std::cout << "IDX\tPDGID\tMOMENTUM(x,y,z)\tVertex(x,y,z)" << std::endl;
205  for (auto i : sorted_genParticles_idx) {
206  auto const & gp = genParticles[i];
207  std::cout << i
208  << "\t" << gp.pdgId()
209  << "\t" << gp.momentum()
210  << "\t" << gp.vertex() << std::endl;
211  }
212 
213  std::cout << "Printing SimVertex information" << std::endl;
214  std::cout << "IDX\tPOSITION(x,y,z)\tPARENT_INDEX\tVERTEX_ID" << std::endl;
215  for (auto i : sorted_vertices_idx) {
216  auto const & v = vertices[i];
217  std::cout << i << "\t" << v << std::endl;
218  }
219  std::cout << "Printing TrackingParticles information" << std::endl;
220  for (auto i : sorted_tp_idx) {
221  auto const & tp = trackingpart[i];
222  std::cout << i << "\t" << tp << std::endl;
223  }
224 
225  std::cout << "Printing CaloParticles information" << std::endl;
226  idx = 0;
227  for (auto i : sorted_cp_idx) {
228  auto const & cp = calopart[i];
229  std::cout << "\n\n" << idx++ << " |Eta|: " << std::abs(cp.momentum().eta())
230  << "\tType: " << cp.pdgId()
231  << "\tEnergy: " << cp.energy()
232  << "\tIdx: " << cp.g4Tracks()[0].trackId() << std::endl; // << cp << std::endl;
233  double total_sim_energy = 0.;
234  double total_cp_energy = 0.;
235  std::cout << "--> Overall simclusters's size: " << cp.simClusters().size() << std::endl;
236  // All the next mess just to print the simClusters ordered
237  auto const & simcs = cp.simClusters();
238  std::vector<int> sorted_sc_idx(simcs.size());
239  iota(begin(sorted_sc_idx), end(sorted_sc_idx), 0);
240  sort(begin(sorted_sc_idx),
241  end(sorted_sc_idx),
242  [&simcs] (int i, int j) {
243  return simcs[i]->momentum().eta() < simcs[j]->momentum().eta();
244  });
245  for (auto i : sorted_sc_idx) {
246  std::cout << *(simcs[i]);
247  }
248 
249  for (auto const & sc : cp.simClusters()) {
250  for (auto const & cl : sc->hits_and_fractions()) {
251  total_sim_energy += detIdToTotalSimEnergy[cl.first]*cl.second;
252  total_cp_energy += cp.energy()*cl.second;
253  }
254  }
255  std::cout << "--> Overall SC energy (sum using sim energies): " << total_sim_energy << std::endl;
256  std::cout << "--> Overall SC energy (sum using CaloP energies): " << total_cp_energy << std::endl;
257  }
258 
259  idx = 0;
260  std::cout << "Printing SimClusters information" << std::endl;
261  for (auto i : sorted_simcl_idx) {
262  auto const & simcl = simclusters[i];
263  std::cout << "\n\n" << idx++ << " |Eta|: " << std::abs(simcl.momentum().eta())
264  << "\tType: " << simcl.pdgId()
265  << "\tEnergy: " << simcl.energy()
266  << "\tKey: " << i << std::endl; // << simcl << std::endl;
267  double total_sim_energy = 0.;
268  std::cout << "--> Overall simclusters's size: " << simcl.numberOfRecHits() << std::endl;
269  for (auto const & cl : simcl.hits_and_fractions()) {
270  total_sim_energy += detIdToTotalSimEnergy[cl.first]*cl.second;
271  }
272  std::cout << simcl << std::endl;
273  std::cout << "--> Overall SimCluster energy (sum using sim energies): " << total_sim_energy << std::endl;
274  }
275 }
276 
277 
278 // ------------ method called once each job just before starting event loop ------------
279 void
281 
282 // ------------ method called once each job just after ending the event loop ------------
283 void
285 
287  std::map<int, float> & detIdToTotalSimEnergy,
288  const edm::Event& iEvent, const edm::EventSetup& iSetup ) {
289  // Taken needed quantities from the EventSetup
291  iSetup.get<CaloGeometryRecord>().get(geom);
292  const HGCalGeometry *eegeom, *fhgeom;
293  const HcalGeometry *bhgeom;
294  const HGCalDDDConstants* hgddd[2];
295  const HGCalTopology* hgtopo[2];
296  const HcalDDDRecConstants* hcddd;
297 
298  eegeom = static_cast<const HGCalGeometry*>(geom->getSubdetectorGeometry(DetId::Forward, HGCEE));
299  fhgeom = static_cast<const HGCalGeometry*>(geom->getSubdetectorGeometry(DetId::Forward, HGCHEF));
300  bhgeom = static_cast<const HcalGeometry*>(geom->getSubdetectorGeometry(DetId::Hcal, HcalEndcap));
301 
302  hgtopo[0] = &(eegeom->topology());
303  hgtopo[1] = &(fhgeom->topology());
304 
305  for (unsigned i = 0; i < 2; ++i) {
306  hgddd[i] = &(hgtopo[i]->dddConstants());
307  }
308 
309  hcddd = bhgeom->topology().dddConstants();
310 
311  // loop over the collections
312  int token = 0;
313  for (auto const& collectionTag : collectionTags_) {
315  const bool isHcal = ( collectionTag.instance().find("HcalHits") != std::string::npos );
316  iEvent.getByToken(collectionTagsToken_[token++], hSimHits);
317  for (auto const& simHit : *hSimHits) {
318  DetId id(0);
319  const uint32_t simId = simHit.id();
320  if (isHcal) {
321  HcalDetId hid = HcalHitRelabeller::relabel(simId, hcddd);
322  if (hid.subdet() == HcalEndcap) id = hid;
323  } else {
324  int subdet, layer, cell, sec, subsec, zp;
325  HGCalTestNumbering::unpackHexagonIndex(simId, subdet, zp, layer, sec, subsec, cell);
326  const HGCalDDDConstants* ddd = hgddd[subdet-3];
327  std::pair<int, int> recoLayerCell = ddd->simToReco(cell, layer, sec,
328  hgtopo[subdet-3]->detectorType());
329  cell = recoLayerCell.first;
330  layer = recoLayerCell.second;
331  // skip simhits with bad barcodes or non-existant layers
332  if (layer == -1 || simHit.geantTrackId() == 0) continue;
333  id = HGCalDetId((ForwardSubdetector)subdet, zp, layer, subsec, sec, cell);
334  }
335 
336  if (DetId(0) == id) continue;
337 
338  detIdToTotalSimEnergy[id.rawId()] += simHit.energy();
339  }
340  } // end of loop over InputTags
341 }
342 
343 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
344 void
347  desc.add<edm::InputTag>("simTracks", edm::InputTag("g4SimHits"));
348  desc.add<edm::InputTag>("genParticles", edm::InputTag("genParticles"));
349  desc.add<edm::InputTag>("simVertices", edm::InputTag("g4SimHits"));
350  desc.add<edm::InputTag>("trackingParticles", edm::InputTag("mix", "MergedTrackTruth"));
351  desc.add<edm::InputTag>("caloParticles", edm::InputTag("mix", "MergedCaloTruth"));
352  desc.add<edm::InputTag>("simClusters", edm::InputTag("mix", "MergedCaloTruth"));
353  desc.add<std::vector<edm::InputTag> >("collectionTags",
354  { edm::InputTag("g4SimHits", "HGCHitsEE"),
355  edm::InputTag("g4SimHits", "HGCHitsHEfront"),
356  edm::InputTag("g4SimHits", "HcalHits")});
357  descriptions.add("caloParticleDebugger", desc);
358 }
359 
360 // define this as a plug-in
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:49
const HcalDDDRecConstants * dddConstants() const
Definition: HcalTopology.h:167
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:146
std::vector< std::pair< uint32_t, float > > hits_and_fractions() const
Returns list of rechit IDs and fractions for this SimCluster.
Definition: SimCluster.h:210
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
edm::EDGetTokenT< std::vector< TrackingParticle > > trackingParticlesToken_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const std::vector< SimTrack > & g4Tracks() const
Definition: CaloParticle.h:76
ForwardSubdetector
edm::EDGetTokenT< std::vector< SimCluster > > simClustersToken_
const HcalTopology & topology() const
Definition: HcalGeometry.h:117
CaloParticleDebugger(const edm::ParameterSet &)
std::pair< int, int > simToReco(int cell, int layer, int mod, bool half) const
int iEvent
Definition: GenABIO.cc:230
std::vector< edm::EDGetTokenT< std::vector< PCaloHit > > > collectionTagsToken_
const SimClusterRefVector & simClusters() const
Definition: CaloParticle.h:74
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
const HGCalTopology & topology() const
float energy() const
Energy. Note this is taken from the first SimTrack only.
Definition: CaloParticle.h:106
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
edm::EDGetTokenT< std::vector< SimTrack > > simTracksToken_
#define end
Definition: vmac.h:39
ParameterDescriptionBase * add(U const &iLabel, T const &value)
edm::EDGetTokenT< std::vector< CaloParticle > > caloParticlesToken_
Definition: DetId.h:18
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
math::XYZVectorF momentum() const
spatial momentum vector
Definition: CaloParticle.h:91
T const * product() const
Definition: Handle.h:81
const HGCalDDDConstants & dddConstants() const
void fillSimHits(std::map< int, float > &, const edm::Event &, const edm::EventSetup &)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
int pdgId() const
PDG ID.
Definition: CaloParticle.h:43
edm::EDGetTokenT< std::vector< reco::GenParticle > > genParticlesToken_
#define begin
Definition: vmac.h:32
HLT enums.
T get() const
Definition: EventSetup.h:68
void analyze(const edm::Event &, const edm::EventSetup &) override
size_type size() const
Size of the RefVector.
Definition: RefVector.h:107
DetId relabel(const uint32_t testId) const
edm::InputTag trackingParticles_
static void unpackHexagonIndex(const uint32_t &idx, int &subdet, int &z, int &lay, int &wafer, int &celltyp, int &cell)
std::vector< edm::InputTag > collectionTags_
edm::EDGetTokenT< std::vector< SimVertex > > simVerticesToken_