CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MuonAssociatorByHits.cc
Go to the documentation of this file.
14 #include <memory>
15 
16 #include <sstream>
17 
18 using namespace reco;
19 using namespace std;
20 using namespace muonAssociatorByHitsDiagnostics;
21 
22 namespace muonAssociatorByHitsDiagnostics {
24 
25  class InputDumper {
26  public:
28  : simtracksTag(conf.getParameter<edm::InputTag>("simtracksTag")),
29  simtracksXFTag(conf.getParameter<edm::InputTag>("simtracksXFTag")),
30  crossingframe(conf.getParameter<bool>("crossingframe")) {}
31 
33  if (crossingframe) {
36  } else {
39  }
40  }
41 
42  void dump(const TrackHitsCollection &, const TrackingParticleCollection &, const edm::Event &) const;
43 
44  private:
47  bool const crossingframe;
48  };
49 
51  const TrackingParticleCollection &tPC,
52  const edm::Event &event) const {
53  // reco::Track collection
54  edm::LogVerbatim("MuonAssociatorByHits") << "\n"
55  << "reco::Track collection --- size = " << tC.size();
56 
57  // TrackingParticle collection
58  edm::LogVerbatim("MuonAssociatorByHits") << "\n"
59  << "TrackingParticle collection --- size = " << tPC.size();
60  int j = 0;
61  for (TrackingParticleCollection::const_iterator ITER = tPC.begin(); ITER != tPC.end(); ITER++, j++) {
62  edm::LogVerbatim("MuonAssociatorByHits")
63  << "TrackingParticle " << j << ", q = " << ITER->charge() << ", p = " << ITER->p() << ", pT = " << ITER->pt()
64  << ", eta = " << ITER->eta() << ", phi = " << ITER->phi();
65 
66  edm::LogVerbatim("MuonAssociatorByHits")
67  << "\t pdg code = " << ITER->pdgId() << ", made of " << ITER->numberOfHits() << " PSimHit"
68  << " (in " << ITER->numberOfTrackerLayers() << " layers)"
69  << " from " << ITER->g4Tracks().size() << " SimTrack:";
70  for (TrackingParticle::g4t_iterator g4T = ITER->g4Track_begin(); g4T != ITER->g4Track_end(); g4T++) {
71  edm::LogVerbatim("MuonAssociatorByHits") << "\t\t Id:" << g4T->trackId() << "/Evt:(" << g4T->eventId().event()
72  << "," << g4T->eventId().bunchCrossing() << ")";
73  }
74  }
75 
76  // SimTrack collection
79 
80  // SimVertex collection
83 
84  if (crossingframe) {
85  event.getByLabel(simtracksXFTag, cf_simtracks);
86  unique_ptr<MixCollection<SimTrack>> SimTk(new MixCollection<SimTrack>(cf_simtracks.product()));
87  edm::LogVerbatim("MuonAssociatorByHits")
88  << "\n"
89  << "CrossingFrame<SimTrack> collection with InputTag = " << simtracksXFTag << " has size = " << SimTk->size();
90  int k = 0;
91  for (MixCollection<SimTrack>::MixItr ITER = SimTk->begin(); ITER != SimTk->end(); ITER++, k++) {
92  edm::LogVerbatim("MuonAssociatorByHits")
93  << "SimTrack " << k << " - Id:" << ITER->trackId() << "/Evt:(" << ITER->eventId().event() << ","
94  << ITER->eventId().bunchCrossing() << ")"
95  << " pdgId = " << ITER->type() << ", q = " << ITER->charge() << ", p = " << ITER->momentum().P()
96  << ", pT = " << ITER->momentum().Pt() << ", eta = " << ITER->momentum().Eta()
97  << ", phi = " << ITER->momentum().Phi() << "\n * " << *ITER << endl;
98  }
99  event.getByLabel(simtracksXFTag, cf_simvertices);
100  unique_ptr<MixCollection<SimVertex>> SimVtx(new MixCollection<SimVertex>(cf_simvertices.product()));
101  edm::LogVerbatim("MuonAssociatorByHits")
102  << "\n"
103  << "CrossingFrame<SimVertex> collection with InputTag = " << simtracksXFTag
104  << " has size = " << SimVtx->size();
105  int kv = 0;
106  for (MixCollection<SimVertex>::MixItr VITER = SimVtx->begin(); VITER != SimVtx->end(); VITER++, kv++) {
107  edm::LogVerbatim("MuonAssociatorByHits") << "SimVertex " << kv << " : " << *VITER << endl;
108  }
109  } else {
110  event.getByLabel(simtracksTag, simTrackCollection);
111  const edm::SimTrackContainer simTC = *(simTrackCollection.product());
112  edm::LogVerbatim("MuonAssociatorByHits")
113  << "\n"
114  << "SimTrack collection with InputTag = " << simtracksTag << " has size = " << simTC.size() << endl;
115  int k = 0;
116  for (edm::SimTrackContainer::const_iterator ITER = simTC.begin(); ITER != simTC.end(); ITER++, k++) {
117  edm::LogVerbatim("MuonAssociatorByHits")
118  << "SimTrack " << k << " - Id:" << ITER->trackId() << "/Evt:(" << ITER->eventId().event() << ","
119  << ITER->eventId().bunchCrossing() << ")"
120  << " pdgId = " << ITER->type() << ", q = " << ITER->charge() << ", p = " << ITER->momentum().P()
121  << ", pT = " << ITER->momentum().Pt() << ", eta = " << ITER->momentum().Eta()
122  << ", phi = " << ITER->momentum().Phi() << "\n * " << *ITER << endl;
123  }
124  event.getByLabel(simtracksTag, simVertexCollection);
125  const edm::SimVertexContainer simVC = *(simVertexCollection.product());
126  edm::LogVerbatim("MuonAssociatorByHits") << "\n"
127  << "SimVertex collection with InputTag = "
128  << "g4SimHits"
129  << " has size = " << simVC.size() << endl;
130  int kv = 0;
131  for (edm::SimVertexContainer::const_iterator VITER = simVC.begin(); VITER != simVC.end(); VITER++, kv++) {
132  edm::LogVerbatim("MuonAssociatorByHits") << "SimVertex " << kv << " : " << *VITER << endl;
133  }
134  }
135  }
136 
137 } // namespace muonAssociatorByHitsDiagnostics
138 
140  : helper_(conf),
141  trackerHitAssociatorConfig_(conf, std::move(iC)),
142  gemHitAssociatorConfig_(conf, iC),
143  rpcHitAssociatorConfig_(conf, iC),
144  cscHitAssociatorConfig_(conf, iC),
145  dtHitAssociatorConfig_(conf, iC),
146  ttopoToken_(iC.esConsumes()) {
147  // hack for consumes
148  if (conf.getUntrackedParameter<bool>("dumpInputCollections")) {
149  diagnostics_ = std::make_unique<InputDumper>(conf, std::move(iC));
150  }
151 }
152 
154 
157  const edm::RefVector<TrackingParticleCollection> &TPCollectionH,
158  const edm::Event *e,
159  const edm::EventSetup *setup) const {
160  RecoToSimCollection outputCollection(&e->productGetter());
161 
163  for (auto it = tC.begin(), ed = tC.end(); it != ed; ++it) {
164  tH.push_back(std::make_pair((*it)->recHitsBegin(), (*it)->recHitsEnd()));
165  }
166 
167  // Retrieve tracker topology from geometry
168  const TrackerTopology *tTopo = &setup->getData(ttopoToken_);
169 
170  // Tracker hit association
172  // CSC hit association
173  CSCHitAssociator csctruth(*e, *setup, cscHitAssociatorConfig_);
174  // DT hit association
175  bool printRtS(true);
176  DTHitAssociator dttruth(*e, *setup, dtHitAssociatorConfig_, printRtS);
177  // RPC hit association
179  // GEM hit association
181 
183  tTopo, &trackertruth, &csctruth, &dttruth, &rpctruth, &gemtruth, {}};
184 
185  if (diagnostics_) {
186  resources.diagnostics_ = [this, e](const TrackHitsCollection &hC, const TrackingParticleCollection &pC) {
187  diagnostics_->dump(hC, pC, *e);
188  };
189  }
190 
191  auto bareAssoc = helper_.associateRecoToSimIndices(tH, TPCollectionH, resources);
192  for (auto it = bareAssoc.begin(), ed = bareAssoc.end(); it != ed; ++it) {
193  for (auto itma = it->second.begin(), edma = it->second.end(); itma != edma; ++itma) {
194  outputCollection.insert(tC[it->first], std::make_pair(TPCollectionH[itma->idx], itma->quality));
195  }
196  }
197 
198  outputCollection.post_insert(); // perhaps not even necessary
199  return outputCollection;
200 }
201 
204  const edm::RefVector<TrackingParticleCollection> &TPCollectionH,
205  const edm::Event *e,
206  const edm::EventSetup *setup) const {
207  SimToRecoCollection outputCollection(&e->productGetter());
209  for (auto it = tC.begin(), ed = tC.end(); it != ed; ++it) {
210  tH.push_back(std::make_pair((*it)->recHitsBegin(), (*it)->recHitsEnd()));
211  }
212 
213  // Retrieve tracker topology from geometry
214  const TrackerTopology *tTopo = &setup->getData(ttopoToken_);
215 
216  // Tracker hit association
218  // CSC hit association
219  CSCHitAssociator csctruth(*e, *setup, cscHitAssociatorConfig_);
220  // DT hit association
221  bool printRtS = false;
222  DTHitAssociator dttruth(*e, *setup, dtHitAssociatorConfig_, printRtS);
223  // RPC hit association
225  // GEM hit association
227 
229  tTopo, &trackertruth, &csctruth, &dttruth, &rpctruth, &gemtruth, {}};
230 
231  auto bareAssoc = helper_.associateSimToRecoIndices(tH, TPCollectionH, resources);
232  for (auto it = bareAssoc.begin(), ed = bareAssoc.end(); it != ed; ++it) {
233  for (auto itma = it->second.begin(), edma = it->second.end(); itma != edma; ++itma) {
234  outputCollection.insert(TPCollectionH[it->first], std::make_pair(tC[itma->idx], itma->quality));
235  }
236  }
237 
238  outputCollection.post_insert(); // perhaps not even necessary
239  return outputCollection;
240 }
Log< level::Info, true > LogVerbatim
T getUntrackedParameter(std::string const &, T const &) const
MuonAssociatorByHits(const edm::ParameterSet &conf, edm::ConsumesCollector &&iC)
GEMHitAssociator::Config gemHitAssociatorConfig_
std::function< void(const TrackHitsCollection &, const TrackingParticleCollection &)> diagnostics_
EDProductGetter const & productGetter() const
Definition: Event.cc:106
const_iterator end() const
tuple resources
Definition: mps_fire.py:263
TrackerHitAssociator::Config trackerHitAssociatorConfig_
IndexAssociation associateSimToRecoIndices(const TrackHitsCollection &, const edm::RefVector< TrackingParticleCollection > &, Resources const &) const
std::unique_ptr< muonAssociatorByHitsDiagnostics::InputDumper > diagnostics_
bool getData(T &iHolder) const
Definition: EventSetup.h:128
std::vector< std::pair< trackingRecHit_iterator, trackingRecHit_iterator > > TrackHitsCollection
def move
Definition: eostools.py:511
CSCHitAssociator::Config cscHitAssociatorConfig_
MuonAssociatorByHitsHelper::TrackHitsCollection TrackHitsCollection
RPCHitAssociator::Config rpcHitAssociatorConfig_
std::vector< SimTrack >::const_iterator g4t_iterator
T const * product() const
Definition: Handle.h:70
reco::RecoToSimCollection associateRecoToSim(edm::Handle< edm::View< reco::Track >> &tCH, edm::Handle< TrackingParticleCollection > &tPCH, const edm::Event *event, const edm::EventSetup *setup) const
std::vector< SimVertex > SimVertexContainer
const_iterator begin() const
IndexAssociation associateRecoToSimIndices(const TrackHitsCollection &, const edm::RefVector< TrackingParticleCollection > &, Resources const &) const
MuonAssociatorByHitsHelper helper_
virtual reco::SimToRecoCollection associateSimToReco(edm::Handle< edm::View< reco::Track >> &tCH, edm::Handle< TrackingParticleCollection > &tPCH, const edm::Event *event, const edm::EventSetup *setup) const
std::vector< TrackingParticle > TrackingParticleCollection
std::vector< SimTrack > SimTrackContainer
ESGetTokenH3DDVariant esConsumes(std::string const &Reccord, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
DTHitAssociator::Config dtHitAssociatorConfig_
tuple dump
OutputFilePath = cms.string(&#39;/tmp/zhokin/&#39;), OutputFileExt = cms.string(&#39;&#39;),.
InputDumper(const edm::ParameterSet &conf, edm::ConsumesCollector &&iC)
const edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > ttopoToken_