CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonToSimAssociatorByHits.cc
Go to the documentation of this file.
14 #include <sstream>
15 
16 using namespace reco;
17 using namespace std;
18 
20  helper_(conf),
21  conf_(conf)
22 {
23  TrackerMuonHitExtractor hitExtractor(conf_,std::move(iC));
24 
25  //hack for consumes
26  RPCHitAssociator rpctruth(conf,std::move(iC));
27  DTHitAssociator dttruth(conf,std::move(iC));
28  CSCHitAssociator muonTruth(conf,std::move(iC));
29  TrackerHitAssociator trackertruth(conf,std::move(iC));
30 }
31 
32 //compatibility constructor - argh
34  helper_(conf),
35  conf_(conf)
36 {}
37 
39 {
40 }
41 
42 
43 
47  const edm::Event * event, const edm::EventSetup * setup) const {
48 
50  for (unsigned int j=0; j<tPCH->size();j++)
52 
53  edm::RefToBaseVector<reco::Muon> muonBaseRefVector;
54  for (size_t i = 0; i < tCH->size(); ++i)
55  muonBaseRefVector.push_back(tCH->refAt(i));
56 
57  associateMuons(recToSim, simToRec, muonBaseRefVector,type,tpc,event,setup);
58 }
59 
63  const edm::Event * event, const edm::EventSetup * setup) const {
64 
67  edm::OwnVector<TrackingRecHit> allTMRecHits; // this I will fill in only for tracker muon hits from segments
68  switch (trackType) {
69  case InnerTk:
70  for (edm::RefToBaseVector<reco::Muon>::const_iterator it = muons.begin(), ed = muons.end(); it != ed; ++it) {
72  if (mur->track().isNonnull()) {
73  muonHitRefs.push_back(std::make_pair(mur->track()->recHitsBegin(), mur->track()->recHitsEnd()));
74  } else {
75  muonHitRefs.push_back(std::make_pair(allTMRecHits.data().end(), allTMRecHits.data().end()));
76  }
77  }
78  break;
79  case OuterTk:
80  for (edm::RefToBaseVector<reco::Muon>::const_iterator it = muons.begin(), ed = muons.end(); it != ed; ++it) {
82  if (mur->outerTrack().isNonnull()) {
83  muonHitRefs.push_back(std::make_pair(mur->outerTrack()->recHitsBegin(), mur->outerTrack()->recHitsEnd()));
84  } else {
85  muonHitRefs.push_back(std::make_pair(allTMRecHits.data().end(), allTMRecHits.data().end()));
86  }
87  }
88  break;
89  case GlobalTk:
90  for (edm::RefToBaseVector<reco::Muon>::const_iterator it = muons.begin(), ed = muons.end(); it != ed; ++it) {
92  if (mur->globalTrack().isNonnull()) {
93  muonHitRefs.push_back(std::make_pair(mur->globalTrack()->recHitsBegin(), mur->globalTrack()->recHitsEnd()));
94  } else {
95  muonHitRefs.push_back(std::make_pair(allTMRecHits.data().end(), allTMRecHits.data().end()));
96  }
97  }
98  break;
99  case Segments: {
100  TrackerMuonHitExtractor hitExtractor(conf_);
101  hitExtractor.init(*event, *setup);
102  // puts hits in the vector, and record indices
103  std::vector<std::pair<size_t, size_t> > muonHitIndices;
104  for (edm::RefToBaseVector<reco::Muon>::const_iterator it = muons.begin(), ed = muons.end(); it != ed; ++it) {
105  edm::RefToBase<reco::Muon> mur = *it;
106  std::pair<size_t, size_t> indices(allTMRecHits.size(), allTMRecHits.size());
107  if (mur->isTrackerMuon()) {
108  std::vector<const TrackingRecHit *> hits = hitExtractor.getMuonHits(*mur);
109  for (std::vector<const TrackingRecHit *>::const_iterator ith = hits.begin(), edh = hits.end(); ith != edh; ++ith) {
110  allTMRecHits.push_back(**ith);
111  }
112  indices.second += hits.size();
113  }
114  muonHitIndices.push_back(indices);
115  }
116  // convert indices into pairs of iterators to references
117  typedef std::pair<size_t, size_t> index_pair;
118  trackingRecHit_iterator hitRefBegin = allTMRecHits.data().begin();
119  for (std::vector<std::pair<size_t, size_t> >::const_iterator idxs = muonHitIndices.begin(), idxend = muonHitIndices.end(); idxs != idxend; ++idxs) {
120  muonHitRefs.push_back(std::make_pair(hitRefBegin+idxs->first,
121  hitRefBegin+idxs->second));
122  }
123 
124  }
125  break;
126  }
127 
129  //Retrieve tracker topology from geometry
131  setup->get<IdealGeometryRecord>().get(tTopoHand);
132  const TrackerTopology *tTopo=tTopoHand.product();
133 
134 
135  // Tracker hit association
136  TrackerHitAssociator trackertruth(*event, conf_);
137  // CSC hit association
138  CSCHitAssociator csctruth(*event,*setup,conf_);
139  // DT hit association
140  bool printRtS = true;
141  DTHitAssociator dttruth(*event,*setup,conf_,printRtS);
142  // RPC hit association
143  RPCHitAssociator rpctruth(*event,*setup,conf_);
144 
145  MuonAssociatorByHitsHelper::Resources resources = {tTopo, &trackertruth, &csctruth, &dttruth, &rpctruth};
146 
147  auto recSimColl = helper_.associateRecoToSimIndices(muonHitRefs,tPC,resources);
148  for (auto it = recSimColl.begin(), ed = recSimColl.end(); it != ed; ++it) {
149  edm::RefToBase<reco::Muon> rec = muons[it->first];
150  std::vector<std::pair<TrackingParticleRef, double> > & tpAss = recToSim[rec];
151  for ( auto const & a : it->second) {
152  tpAss.push_back(std::make_pair(tPC[a.idx], a.quality));
153  }
154  }
155  auto simRecColl = helper_.associateSimToRecoIndices(muonHitRefs,tPC,resources);
156  for (auto it = simRecColl.begin(), ed = simRecColl.end(); it != ed; ++it) {
157  TrackingParticleRef sim = tPC[it->first];
158  std::vector<std::pair<edm::RefToBase<reco::Muon>, double> > & recAss = simToRec[sim];
159  for ( auto const & a: it->second ) {
160  recAss.push_back(std::make_pair(muons[a.idx], a.quality));
161  }
162  }
163 
164 }
type
Definition: HCALResponse.h:21
std::map< edm::RefToBase< reco::Muon >, std::vector< std::pair< TrackingParticleRef, double > >, RefToBaseSort > MuonToSimCollection
int i
Definition: DBlmapReader.cc:9
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
ProductID id() const
Definition: HandleBase.cc:15
std::vector< const TrackingRecHit * > getMuonHits(const reco::Muon &mu) const
bool isTrackerMuon() const
Definition: Muon.h:219
size_type size() const
Definition: OwnVector.h:254
const_iterator end() const
virtual TrackRef track() const
reference to a Track
Definition: Muon.h:49
Definition: sim.h:19
IndexAssociation associateSimToRecoIndices(const TrackHitsCollection &, const edm::RefVector< TrackingParticleCollection > &, Resources const &) const
void push_back(D *&d)
Definition: OwnVector.h:280
std::vector< std::pair< trackingRecHit_iterator, trackingRecHit_iterator > > TrackHitsCollection
int j
Definition: DBlmapReader.cc:9
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual TrackRef outerTrack() const
reference to Track reconstructed in the muon detector only
Definition: Muon.h:51
tuple conf
Definition: dbtoconf.py:185
void init(const edm::Event &, const edm::EventSetup &)
std::map< TrackingParticleRef, std::vector< std::pair< edm::RefToBase< reco::Muon >, double > > > SimToMuonCollection
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
void associateMuons(MuonToSimCollection &recoToSim, SimToMuonCollection &simToReco, const edm::RefToBaseVector< reco::Muon > &, MuonTrackType, const edm::RefVector< TrackingParticleCollection > &, const edm::Event *event=0, const edm::EventSetup *setup=0) const override
const_iterator begin() const
IndexAssociation associateRecoToSimIndices(const TrackHitsCollection &, const edm::RefVector< TrackingParticleCollection > &, Resources const &) const
base const & data() const
Definition: OwnVector.h:372
tuple muons
Definition: patZpeak.py:38
double a
Definition: hdecay.h:121
MuonAssociatorByHitsHelper helper_
void push_back(const RefToBase< T > &)
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:64
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
TrackingRecHitCollection::base::const_iterator trackingRecHit_iterator
iterator over a vector of reference to TrackingRecHit in the same collection
MuonToSimAssociatorByHits(const edm::ParameterSet &conf, edm::ConsumesCollector &&iC)
virtual TrackRef globalTrack() const
reference to Track reconstructed in both tracked and muon detector
Definition: Muon.h:54