1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
// system include files
#include <cfloat>
#include <memory>
// framework stuff
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/stream/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
// fast tracker rechits
#include "DataFormats/TrackerRecHit2D/interface/FastTrackerRecHit.h"
#include "DataFormats/TrackerRecHit2D/interface/FastMatchedTrackerRecHit.h"
#include "DataFormats/TrackerRecHit2D/interface/FastProjectedTrackerRecHit.h"
#include "DataFormats/TrackerRecHit2D/interface/FastTrackerRecHitCollection.h"
// geometry stuff
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "Geometry/CommonDetUnit/interface/GluedGeomDet.h"
#include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
// sim stuff
#include "SimDataFormats/TrackingHit/interface/PSimHit.h"
#include "SimDataFormats/TrackingHit/interface/PSimHitContainer.h"
class FastTrackerRecHitMatcher : public edm::stream::EDProducer<> {
public:
explicit FastTrackerRecHitMatcher(const edm::ParameterSet&);
~FastTrackerRecHitMatcher() override { ; }
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
private:
void produce(edm::Event&, const edm::EventSetup&) override;
// ---------- typedefs -----------------------------
typedef std::pair<LocalPoint, LocalPoint> StripPosition;
// ----------internal functions ---------------------------
// create projected hit
std::unique_ptr<FastTrackerRecHit> projectOnly(const FastSingleTrackerRecHit* originalRH,
const GeomDet* monoDet,
const GluedGeomDet* gluedDet,
LocalVector& ldir) const;
// create matched hit
std::unique_ptr<FastTrackerRecHit> match(const FastSingleTrackerRecHit* monoRH,
const FastSingleTrackerRecHit* stereoRH,
const GluedGeomDet* gluedDet,
LocalVector& trackdirection,
bool stereLayerFirst) const;
StripPosition project(const GeomDetUnit* det,
const GluedGeomDet* glueddet,
const StripPosition& strip,
const LocalVector& trackdirection) const;
inline const FastSingleTrackerRecHit* _cast2Single(const FastTrackerRecHit* recHit) const {
if (!recHit->isSingle()) {
throw cms::Exception("FastTrackerRecHitMatcher")
<< "all rechits in simHit2RecHitMap must be instances of FastSingleTrackerRecHit. recHit's rtti: "
<< recHit->rtti() << std::endl;
}
return dynamic_cast<const FastSingleTrackerRecHit*>(recHit);
}
// ----------member data ---------------------------
edm::EDGetTokenT<edm::PSimHitContainer> simHitsToken;
edm::EDGetTokenT<FastTrackerRecHitRefCollection> simHit2RecHitMapToken;
const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> trackerGeometryESToken;
};
FastTrackerRecHitMatcher::FastTrackerRecHitMatcher(const edm::ParameterSet& iConfig)
: trackerGeometryESToken(esConsumes()) {
simHitsToken = consumes<edm::PSimHitContainer>(iConfig.getParameter<edm::InputTag>("simHits"));
simHit2RecHitMapToken =
consumes<FastTrackerRecHitRefCollection>(iConfig.getParameter<edm::InputTag>("simHit2RecHitMap"));
produces<FastTrackerRecHitCollection>();
produces<FastTrackerRecHitRefCollection>("simHit2RecHitMap");
}
void FastTrackerRecHitMatcher::produce(edm::Event& iEvent, const edm::EventSetup& iSetup) {
// services
auto const& geometry = iSetup.getData(trackerGeometryESToken);
// input
edm::Handle<edm::PSimHitContainer> simHits;
iEvent.getByToken(simHitsToken, simHits);
edm::Handle<FastTrackerRecHitRefCollection> simHit2RecHitMap;
iEvent.getByToken(simHit2RecHitMapToken, simHit2RecHitMap);
// output
auto output_recHits = std::make_unique<FastTrackerRecHitCollection>();
auto output_simHit2RecHitMap =
std::make_unique<FastTrackerRecHitRefCollection>(simHit2RecHitMap->size(), FastTrackerRecHitRef());
edm::RefProd<FastTrackerRecHitCollection> output_recHits_refProd =
iEvent.getRefBeforePut<FastTrackerRecHitCollection>();
bool skipNext = false;
for (unsigned simHitCounter = 0; simHitCounter < simHits->size(); ++simHitCounter) {
// skip hit in case it was matched to previous one
if (skipNext) {
skipNext = false;
continue;
}
skipNext = false;
// get simHit and associated recHit
const PSimHit& simHit = (*simHits)[simHitCounter];
const FastTrackerRecHitRef& recHitRef = (*simHit2RecHitMap)[simHitCounter];
// skip simHits w/o associated recHit
if (recHitRef.isNull())
continue;
// cast
const FastSingleTrackerRecHit* recHit = _cast2Single(recHitRef.get());
// get subdetector id
DetId detid = recHit->geographicalId();
unsigned int subdet = detid.subdetId();
// treat pixel hits
if (subdet <= 2) {
(*output_simHit2RecHitMap)[simHitCounter] = recHitRef;
}
// treat strip hits
else {
StripSubdetector stripSubDetId(detid);
// treat regular regular strip hits
if (!stripSubDetId.glued()) {
(*output_simHit2RecHitMap)[simHitCounter] = recHitRef;
}
// treat strip hits on glued layers
else {
// Obtain direction of simtrack at simhit in local coordinates of glued module
// - direction of simtrack at simhit, in coordindates of the single module
LocalVector localSimTrackDir = simHit.localDirection();
// - transform to global coordinates
GlobalVector globalSimTrackDir = recHit->det()->surface().toGlobal(localSimTrackDir);
// - transform to local coordinates of glued module
const GluedGeomDet* gluedDet = (const GluedGeomDet*)geometry.idToDet(DetId(stripSubDetId.glued()));
LocalVector gluedLocalSimTrackDir = gluedDet->surface().toLocal(globalSimTrackDir);
// check whether next hit is partner
const FastSingleTrackerRecHit* partnerRecHit = nullptr;
// - there must be a next hit
if (simHitCounter + 1 < simHits->size()) {
const FastTrackerRecHitRef& nextRecHitRef = (*simHit2RecHitMap)[simHitCounter + 1];
const PSimHit& nextSimHit = (*simHits)[simHitCounter + 1];
// - partner hit must not be null
// - simHit and partner simHit must belong to same simTrack
// - partner hit must be on the module glued to the module of the hit
if ((!nextRecHitRef.isNull()) && simHit.trackId() == nextSimHit.trackId() &&
StripSubdetector(nextRecHitRef->geographicalId()).partnerDetId() == detid.rawId()) {
partnerRecHit = _cast2Single(nextRecHitRef.get());
skipNext = true;
}
}
std::unique_ptr<FastTrackerRecHit> newRecHit(nullptr);
// if partner found: create a matched hit
if (partnerRecHit) {
newRecHit = match(stripSubDetId.stereo() ? partnerRecHit : recHit,
stripSubDetId.stereo() ? recHit : partnerRecHit,
gluedDet,
gluedLocalSimTrackDir,
stripSubDetId.stereo());
}
// else: create projected hit
else {
newRecHit = projectOnly(recHit, geometry.idToDet(detid), gluedDet, gluedLocalSimTrackDir);
}
output_recHits->push_back(std::move(newRecHit));
(*output_simHit2RecHitMap)[simHitCounter] =
FastTrackerRecHitRef(output_recHits_refProd, output_recHits->size() - 1);
}
}
}
iEvent.put(std::move(output_recHits));
iEvent.put(std::move(output_simHit2RecHitMap), "simHit2RecHitMap");
}
std::unique_ptr<FastTrackerRecHit> FastTrackerRecHitMatcher::match(const FastSingleTrackerRecHit* monoRH,
const FastSingleTrackerRecHit* stereoRH,
const GluedGeomDet* gluedDet,
LocalVector& trackdirection,
bool stereoHitFirst) const {
// stripdet = mono
// partnerstripdet = stereo
const GeomDetUnit* stripdet = gluedDet->monoDet();
const GeomDetUnit* partnerstripdet = gluedDet->stereoDet();
const StripTopology& topol = (const StripTopology&)stripdet->topology();
LocalPoint position;
// position of the initial and final point of the strip (RPHI cluster) in local strip coordinates
MeasurementPoint RPHIpoint = topol.measurementPosition(monoRH->localPosition());
MeasurementPoint RPHIpointini = MeasurementPoint(RPHIpoint.x(), -0.5);
MeasurementPoint RPHIpointend = MeasurementPoint(RPHIpoint.x(), 0.5);
// position of the initial and final point of the strip in local coordinates (mono det)
StripPosition stripmono = StripPosition(topol.localPosition(RPHIpointini), topol.localPosition(RPHIpointend));
// in case of no track hypothesis assume a track from the origin through the center of the strip
if (trackdirection.mag2() < FLT_MIN) {
LocalPoint lcenterofstrip = monoRH->localPosition();
GlobalPoint gcenterofstrip = (stripdet->surface()).toGlobal(lcenterofstrip);
GlobalVector gtrackdirection = gcenterofstrip - GlobalPoint(0, 0, 0);
trackdirection = (gluedDet->surface()).toLocal(gtrackdirection);
}
//project mono hit on glued det
StripPosition projectedstripmono = project(stripdet, gluedDet, stripmono, trackdirection);
const StripTopology& partnertopol = (const StripTopology&)partnerstripdet->topology();
//error calculation (the part that depends on mono RH only)
LocalVector RPHIpositiononGluedendvector = projectedstripmono.second - projectedstripmono.first;
double c1 = sin(RPHIpositiononGluedendvector.phi());
double s1 = -cos(RPHIpositiononGluedendvector.phi());
MeasurementError errormonoRH = topol.measurementError(monoRH->localPosition(), monoRH->localPositionError());
double pitch = topol.localPitch(monoRH->localPosition());
double sigmap12 = errormonoRH.uu() * pitch * pitch;
// position of the initial and final point of the strip (STEREO cluster)
MeasurementPoint STEREOpoint = partnertopol.measurementPosition(stereoRH->localPosition());
MeasurementPoint STEREOpointini = MeasurementPoint(STEREOpoint.x(), -0.5);
MeasurementPoint STEREOpointend = MeasurementPoint(STEREOpoint.x(), 0.5);
// position of the initial and final point of the strip in local coordinates (stereo det)
StripPosition stripstereo(partnertopol.localPosition(STEREOpointini), partnertopol.localPosition(STEREOpointend));
//project stereo hit on glued det
StripPosition projectedstripstereo = project(partnerstripdet, gluedDet, stripstereo, trackdirection);
//perform the matching
//(x2-x1)(y-y1)=(y2-y1)(x-x1)
AlgebraicMatrix22 m;
AlgebraicVector2 c, solution;
m(0, 0) = -(projectedstripmono.second.y() - projectedstripmono.first.y());
m(0, 1) = (projectedstripmono.second.x() - projectedstripmono.first.x());
m(1, 0) = -(projectedstripstereo.second.y() - projectedstripstereo.first.y());
m(1, 1) = (projectedstripstereo.second.x() - projectedstripstereo.first.x());
c(0) = m(0, 1) * projectedstripmono.first.y() + m(0, 0) * projectedstripmono.first.x();
c(1) = m(1, 1) * projectedstripstereo.first.y() + m(1, 0) * projectedstripstereo.first.x();
m.Invert();
solution = m * c;
position = LocalPoint(solution(0), solution(1));
//
// temporary fix by tommaso
//
LocalError tempError(100, 0, 100);
// calculate the error
LocalVector stereopositiononGluedendvector = projectedstripstereo.second - projectedstripstereo.first;
double c2 = sin(stereopositiononGluedendvector.phi());
double s2 = -cos(stereopositiononGluedendvector.phi());
MeasurementError errorstereoRH =
partnertopol.measurementError(stereoRH->localPosition(), stereoRH->localPositionError());
pitch = partnertopol.localPitch(stereoRH->localPosition());
double sigmap22 = errorstereoRH.uu() * pitch * pitch;
double diff = (c1 * s2 - c2 * s1);
double invdet2 = 1 / (diff * diff);
float xx = invdet2 * (sigmap12 * s2 * s2 + sigmap22 * s1 * s1);
float xy = -invdet2 * (sigmap12 * c2 * s2 + sigmap22 * c1 * s1);
float yy = invdet2 * (sigmap12 * c2 * c2 + sigmap22 * c1 * c1);
LocalError error = LocalError(xx, xy, yy);
//Added by DAO to make sure y positions are zero.
DetId det(monoRH->geographicalId());
if (det.subdetId() > 2) {
return std::make_unique<FastMatchedTrackerRecHit>(position, error, *gluedDet, *monoRH, *stereoRH, stereoHitFirst);
}
else {
throw cms::Exception("FastTrackerRecHitMatcher") << "Matched Pixel!?";
}
}
FastTrackerRecHitMatcher::StripPosition FastTrackerRecHitMatcher::project(const GeomDetUnit* det,
const GluedGeomDet* glueddet,
const StripPosition& strip,
const LocalVector& trackdirection) const {
GlobalPoint globalpointini = (det->surface()).toGlobal(strip.first);
GlobalPoint globalpointend = (det->surface()).toGlobal(strip.second);
// position of the initial and final point of the strip in glued local coordinates
LocalPoint positiononGluedini = (glueddet->surface()).toLocal(globalpointini);
LocalPoint positiononGluedend = (glueddet->surface()).toLocal(globalpointend);
//correct the position with the track direction
float scale = -positiononGluedini.z() / trackdirection.z();
LocalPoint projpositiononGluedini = positiononGluedini + scale * trackdirection;
LocalPoint projpositiononGluedend = positiononGluedend + scale * trackdirection;
return StripPosition(projpositiononGluedini, projpositiononGluedend);
}
std::unique_ptr<FastTrackerRecHit> FastTrackerRecHitMatcher::projectOnly(const FastSingleTrackerRecHit* originalRH,
const GeomDet* monoDet,
const GluedGeomDet* gluedDet,
LocalVector& ldir) const {
LocalPoint position(originalRH->localPosition().x(), 0., 0.);
const BoundPlane& gluedPlane = gluedDet->surface();
const BoundPlane& hitPlane = monoDet->surface();
double delta = gluedPlane.localZ(hitPlane.position());
LocalPoint lhitPos = gluedPlane.toLocal(monoDet->surface().toGlobal(position));
LocalPoint projectedHitPos = lhitPos - ldir * delta / ldir.z();
LocalVector hitXAxis = gluedPlane.toLocal(hitPlane.toGlobal(LocalVector(1, 0, 0)));
LocalError hitErr = originalRH->localPositionError();
if (gluedPlane.normalVector().dot(hitPlane.normalVector()) < 0) {
// the two planes are inverted, and the correlation element must change sign
hitErr = LocalError(hitErr.xx(), -hitErr.xy(), hitErr.yy());
}
LocalError rotatedError = hitErr.rotate(hitXAxis.x(), hitXAxis.y());
const GeomDetUnit* gluedMonoDet = gluedDet->monoDet();
const GeomDetUnit* gluedStereoDet = gluedDet->stereoDet();
int isMono = 0;
int isStereo = 0;
if (monoDet->geographicalId() == gluedMonoDet->geographicalId())
isMono = 1;
if (monoDet->geographicalId() == gluedStereoDet->geographicalId())
isStereo = 1;
//Added by DAO to make sure y positions are zero and correct Mono or stereo Det is filled.
if ((isMono && isStereo) || (!isMono && !isStereo))
throw cms::Exception("FastTrackerRecHitMatcher") << "Something wrong with DetIds.";
return std::make_unique<FastProjectedTrackerRecHit>(projectedHitPos, rotatedError, *gluedDet, *originalRH);
}
// ------------ method fills 'descriptions' with the allowed parameters for the module ------------
void FastTrackerRecHitMatcher::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
//The following says we do not know what parameters are allowed so do no validation
// Please change this to state exactly what you do use, even if it is no parameters
edm::ParameterSetDescription desc;
desc.setUnknown();
descriptions.addDefault(desc);
}
//define this as a plug-in
DEFINE_FWK_MODULE(FastTrackerRecHitMatcher);
|