CMS 3D CMS Logo

MuonIdTruthInfo.cc
Go to the documentation of this file.
10 
12  iC.mayConsume<edm::SimTrackContainer>(edm::InputTag("g4SimHits", ""));
13  iC.mayConsume<edm::PSimHitContainer>(edm::InputTag("g4SimHits", "MuonDTHits"));
14  iC.mayConsume<edm::PSimHitContainer>(edm::InputTag("g4SimHits", "MuonCSCHits"));
15 }
16 
18  // get a list of simulated track and find a track with the best match to
19  // the muon.track(). Use its id and chamber id to localize hits
20  // If a hit has non-zero local z coordinate, it's position wrt
21  // to the center of a chamber is extrapolated by a straight line
22 
24  iEvent.getByLabel<edm::SimTrackContainer>("g4SimHits", "", simTracks);
25  if (!simTracks.isValid()) {
26  LogTrace("MuonIdentification") << "No tracks found";
27  return;
28  }
29 
30  // get the tracking Geometry
33  if (!geometry.isValid())
34  throw cms::Exception("FatalError") << "Unable to find GlobalTrackingGeometryRecord in event!\n";
35 
36  float bestMatchChi2 = 9999; //minimization creteria
37  unsigned int bestMatch = 0;
38  const unsigned int offset = 0; // kludge to fix a problem in trackId matching between tracks and hits.
39 
40  for (edm::SimTrackContainer::const_iterator simTrk = simTracks->begin(); simTrk != simTracks->end(); simTrk++) {
41  float chi2 = matchChi2(*aMuon.track().get(), *simTrk);
42  if (chi2 > bestMatchChi2)
43  continue;
44  bestMatchChi2 = chi2;
45  bestMatch = simTrk->trackId();
46  }
47 
48  bestMatch -= offset;
49 
50  std::vector<reco::MuonChamberMatch>& matches = aMuon.matches();
51  int numberOfTruthMatchedChambers = 0;
52 
53  // loop over chambers
54  for (std::vector<reco::MuonChamberMatch>::iterator chamberMatch = matches.begin(); chamberMatch != matches.end();
55  chamberMatch++) {
56  if (chamberMatch->id.det() != DetId::Muon) {
57  edm::LogWarning("MuonIdentification") << "Detector id of a muon chamber corresponds to not a muon detector";
58  continue;
59  }
60  reco::MuonSegmentMatch bestSegmentMatch;
61  double distance = 99999;
62 
63  if (chamberMatch->id.subdetId() == MuonSubdetId::DT) {
64  DTChamberId detId(chamberMatch->id.rawId());
65 
67  iEvent.getByLabel("g4SimHits", "MuonDTHits", simHits);
68  if (simHits.isValid()) {
69  for (edm::PSimHitContainer::const_iterator hit = simHits->begin(); hit != simHits->end(); hit++)
70  if (hit->trackId() == bestMatch)
71  checkSimHitForBestMatch(bestSegmentMatch, distance, *hit, detId, geometry);
72  } else
73  LogTrace("MuonIdentification") << "No DT simulated hits are found";
74  }
75 
76  if (chamberMatch->id.subdetId() == MuonSubdetId::CSC) {
77  CSCDetId detId(chamberMatch->id.rawId());
78 
80  iEvent.getByLabel("g4SimHits", "MuonCSCHits", simHits);
81  if (simHits.isValid()) {
82  for (edm::PSimHitContainer::const_iterator hit = simHits->begin(); hit != simHits->end(); hit++)
83  if (hit->trackId() == bestMatch)
84  checkSimHitForBestMatch(bestSegmentMatch, distance, *hit, detId, geometry);
85  } else
86  LogTrace("MuonIdentification") << "No CSC simulated hits are found";
87  }
88  if (distance < 9999) {
89  chamberMatch->truthMatches.push_back(bestSegmentMatch);
90  numberOfTruthMatchedChambers++;
91  LogTrace("MuonIdentification") << "Best truth matched hit:"
92  << "\tDetId: " << chamberMatch->id.rawId() << "\n"
93  << "\tprojection: ( " << bestSegmentMatch.x << ", " << bestSegmentMatch.y
94  << " )\n";
95  }
96  }
97  LogTrace("MuonIdentification") << "Truth matching summary:\n\tnumber of chambers: " << matches.size()
98  << "\n\tnumber of truth matched chambers: " << numberOfTruthMatchedChambers << "\n";
99 }
100 
102  double& distance,
103  const PSimHit& hit,
104  const DetId& chamberId,
106  printf("DONT FORGET TO CALL REGISTERCONSUMES()\n");
107 
108  // find the hit position projection at the reference surface of the chamber:
109  // first get entry and exit point of the hit in the global coordinates, then
110  // get local coordinates of these points wrt the chamber and then find the
111  // projected X-Y coordinates
112 
113  const GeomDet* chamberGeometry = geometry->idToDet(chamberId);
114  const GeomDet* simUnitGeometry = geometry->idToDet(DetId(hit.detUnitId()));
115 
116  if (chamberGeometry && simUnitGeometry) {
117  LocalPoint entryPoint = chamberGeometry->toLocal(simUnitGeometry->toGlobal(hit.entryPoint()));
118  LocalPoint exitPoint = chamberGeometry->toLocal(simUnitGeometry->toGlobal(hit.exitPoint()));
119  LocalVector direction = exitPoint - entryPoint;
120  if (fabs(direction.z()) > 0.001) {
121  LocalPoint projection = entryPoint - direction * (entryPoint.z() / direction.z());
122  if (fabs(projection.z()) > 0.001)
123  edm::LogWarning("MuonIdentification") << "z coordinate of the hit projection must be zero and it's not!\n";
124 
125  double new_distance = 99999;
126  if (entryPoint.z() * exitPoint.z() < -1) // changed sign, so the reference point is inside
127  new_distance = 0;
128  else {
129  if (fabs(entryPoint.z()) < fabs(exitPoint.z()))
130  new_distance = fabs(entryPoint.z());
131  else
132  new_distance = fabs(exitPoint.z());
133  }
134 
135  if (new_distance < distance) {
136  // find a SimHit closer to the reference surface, update segmentMatch
137  segmentMatch.x = projection.x();
138  segmentMatch.y = projection.y();
139  segmentMatch.xErr = 0;
140  segmentMatch.yErr = 0;
141  segmentMatch.dXdZ = direction.x() / direction.z();
142  segmentMatch.dYdZ = direction.y() / direction.z();
143  segmentMatch.dXdZErr = 0;
144  segmentMatch.dYdZErr = 0;
145  distance = new_distance;
146  LogTrace("MuonIdentificationVerbose")
147  << "Better truth matched segment found:\n"
148  << "\tDetId: " << chamberId.rawId() << "\n"
149  << "\tentry point: ( " << entryPoint.x() << ", " << entryPoint.y() << ", " << entryPoint.z() << " )\n"
150  << "\texit point: ( " << exitPoint.x() << ", " << exitPoint.y() << ", " << exitPoint.z() << " )\n"
151  << "\tprojection: ( " << projection.x() << ", " << projection.y() << ", " << projection.z() << " )\n";
152  }
153  }
154  } else {
155  if (!chamberGeometry)
156  edm::LogWarning("MuonIdentification") << "Cannot get chamber geomtry for DetId: " << chamberId.rawId();
157  if (!simUnitGeometry)
158  edm::LogWarning("MuonIdentification") << "Cannot get detector unit geomtry for DetId: " << hit.detUnitId();
159  }
160 }
161 
162 double MuonIdTruthInfo::matchChi2(const reco::Track& recoTrk, const SimTrack& simTrk) {
163  double deltaPhi = fabs(recoTrk.phi() - simTrk.momentum().phi());
164  if (deltaPhi > 1.8 * 3.1416)
165  deltaPhi = 2 * 3.1416 - deltaPhi; // take care of phi discontinuity
166  return pow((recoTrk.p() - simTrk.momentum().rho()) / simTrk.momentum().rho(), 2) + pow(deltaPhi / (2 * 3.1416), 2) +
167  pow((recoTrk.theta() - simTrk.momentum().theta()) / 3.1416, 2);
168 }
Vector3DBase< float, LocalTag >
MuonSubdetId::CSC
static constexpr int CSC
Definition: MuonSubdetId.h:12
CoreSimTrack::momentum
const math::XYZTLorentzVectorD & momentum() const
Definition: CoreSimTrack.h:19
MessageLogger.h
GeomDet
Definition: GeomDet.h:27
PV3DBase::x
T x() const
Definition: PV3DBase.h:59
reco::TrackBase::p
double p() const
momentum vector magnitude
Definition: TrackBase.h:631
MuonIdTruthInfo.h
reco::Muon::matches
std::vector< MuonChamberMatch > & matches()
get muon matching information
Definition: Muon.h:145
geometry
Definition: geometry.py:1
PSimHitContainer.h
oniaPATMuonsWithTrigger_cff.matches
matches
Definition: oniaPATMuonsWithTrigger_cff.py:77
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89281
edm::Ref::get
T const * get() const
Returns C++ pointer to the item.
Definition: Ref.h:232
FastTrackerRecHitCombiner_cfi.simHits
simHits
Definition: FastTrackerRecHitCombiner_cfi.py:5
TrackCandidateProducer_cfi.simTracks
simTracks
Definition: TrackCandidateProducer_cfi.py:15
GlobalTrackingGeometryRecord
Definition: GlobalTrackingGeometryRecord.h:17
relativeConstraints.geometry
geometry
Definition: relativeConstraints.py:39
hltPixelTracks_cff.chi2
chi2
Definition: hltPixelTracks_cff.py:25
reco::MuonSegmentMatch::y
float y
Definition: MuonSegmentMatch.h:35
deltar.bestMatch
def bestMatch(object, matchCollection)
Definition: deltar.py:138
edm::Handle< edm::SimTrackContainer >
reco::MuonSegmentMatch::xErr
float xErr
Definition: MuonSegmentMatch.h:36
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
CSCDetId.h
reco::Muon
Definition: Muon.h:27
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
DetId
Definition: DetId.h:17
reco::MuonSegmentMatch
Definition: MuonSegmentMatch.h:12
edm::EventSetup::get
T get() const
Definition: EventSetup.h:87
SiPixelRawToDigiRegional_cfi.deltaPhi
deltaPhi
Definition: SiPixelRawToDigiRegional_cfi.py:9
MuonIdTruthInfo::registerConsumes
void registerConsumes(edm::ConsumesCollector &iC)
Definition: MuonIdTruthInfo.cc:11
ecal::raw::entryPoint
void entryPoint(InputDataCPU const &, InputDataGPU &, OutputDataGPU &, ScratchDataGPU &, OutputDataCPU &, ConditionsProducts const &, cudaStream_t, uint32_t const, uint32_t const)
reco::Track
Definition: Track.h:27
edm::ESHandle< GlobalTrackingGeometry >
MuonIdTruthInfo::matchChi2
static double matchChi2(const reco::Track &recoTrk, const SimTrack &simTrk)
Definition: MuonIdTruthInfo.cc:162
MuonSubdetId::DT
static constexpr int DT
Definition: MuonSubdetId.h:11
Point3DBase< float, LocalTag >
GeomDet::toLocal
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
Definition: GeomDet.h:58
DTChamberId.h
reco::MuonSegmentMatch::dYdZ
float dYdZ
Definition: MuonSegmentMatch.h:39
reco::TrackBase::phi
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:649
GlobalTrackingGeometryRecord.h
GeomDet::toGlobal
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:49
CSCDetId
Definition: CSCDetId.h:26
edm::ConsumesCollector::mayConsume
EDGetTokenT< ProductType > mayConsume(edm::InputTag const &tag)
Definition: ConsumesCollector.h:72
PV3DBase::y
T y() const
Definition: PV3DBase.h:60
MuonIdTruthInfo::truthMatchMuon
static void truthMatchMuon(const edm::Event &iEvent, const edm::EventSetup &iSetup, reco::Muon &aMuon)
Definition: MuonIdTruthInfo.cc:17
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup
Definition: EventSetup.h:58
get
#define get
reco::MuonSegmentMatch::dXdZ
float dXdZ
Definition: MuonSegmentMatch.h:38
reco::Muon::track
TrackRef track() const override
reference to a Track
Definition: Muon.h:46
GeomDet.h
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
edm::SimTrackContainer
std::vector< SimTrack > SimTrackContainer
Definition: SimTrackContainer.h:12
SimTrack
Definition: SimTrack.h:9
MuonIdTruthInfo::checkSimHitForBestMatch
static void checkSimHitForBestMatch(reco::MuonSegmentMatch &segmentMatch, double &distance, const PSimHit &hit, const DetId &chamberId, const edm::ESHandle< GlobalTrackingGeometry > &geometry)
Definition: MuonIdTruthInfo.cc:101
reco::MuonSegmentMatch::yErr
float yErr
Definition: MuonSegmentMatch.h:37
funct::pow
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
ConsumesCollector.h
cms::Exception
Definition: Exception.h:70
DetId::Muon
Definition: DetId.h:26
DTChamberId
Definition: DTChamberId.h:14
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:234
edm::PSimHitContainer
std::vector< PSimHit > PSimHitContainer
Definition: PSimHitContainer.h:11
PSimHit
Definition: PSimHit.h:15
reco::MuonSegmentMatch::dXdZErr
float dXdZErr
Definition: MuonSegmentMatch.h:40
hltrates_dqm_sourceclient-live_cfg.offset
offset
Definition: hltrates_dqm_sourceclient-live_cfg.py:82
edm::Event
Definition: Event.h:73
reco::MuonSegmentMatch::x
float x
Definition: MuonSegmentMatch.h:34
HLT_FULL_cff.distance
distance
Definition: HLT_FULL_cff.py:7733
reco::TrackBase::theta
double theta() const
polar angle
Definition: TrackBase.h:602
SimTrackContainer.h
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
hit
Definition: SiStripHitEffFromCalibTree.cc:88
reco::MuonSegmentMatch::dYdZErr
float dYdZErr
Definition: MuonSegmentMatch.h:41