CMS 3D CMS Logo

GeometryTranslator.cc
Go to the documentation of this file.
2 
5 
14 
18 
20 
21 #include <cmath> // for pi
22 
23 using namespace L1TMuon;
24 
26  : _geom_cache_id(0ULL),
27  geodtToken_(iC.esConsumes()),
28  geocscToken_(iC.esConsumes()),
29  georpcToken_(iC.esConsumes()),
30  geogemToken_(iC.esConsumes()),
31  geome0Token_(iC.esConsumes()),
32  _magfield_cache_id(0ULL),
33  magfieldToken_(iC.esConsumes()) {}
34 
36 
38  switch (tp.subsystem()) {
39  case L1TMuon::kDT:
40  return calcDTSpecificEta(tp);
41  break;
42  case L1TMuon::kCSC:
43  return calcCSCSpecificEta(tp);
44  break;
45  case L1TMuon::kRPC:
46  return calcRPCSpecificEta(tp);
47  break;
48  case L1TMuon::kGEM:
49  return calcGEMSpecificEta(tp);
50  break;
51  case L1TMuon::kME0:
52  return calcME0SpecificEta(tp);
53  break;
54  default:
55  return std::nan("Invalid TP type!");
56  break;
57  }
58 }
59 
61  switch (tp.subsystem()) {
62  case L1TMuon::kDT:
63  return calcDTSpecificPhi(tp);
64  break;
65  case L1TMuon::kCSC:
66  return calcCSCSpecificPhi(tp);
67  break;
68  case L1TMuon::kRPC:
69  return calcRPCSpecificPhi(tp);
70  break;
71  case L1TMuon::kGEM:
72  return calcGEMSpecificPhi(tp);
73  break;
74  case L1TMuon::kME0:
75  return calcME0SpecificPhi(tp);
76  break;
77  default:
78  return std::nan("Invalid TP type!");
79  break;
80  }
81 }
82 
84  switch (tp.subsystem()) {
85  case L1TMuon::kDT:
86  return calcDTSpecificBend(tp);
87  break;
88  case L1TMuon::kCSC:
89  return calcCSCSpecificBend(tp);
90  break;
91  case L1TMuon::kRPC:
92  return calcRPCSpecificBend(tp);
93  break;
94  case L1TMuon::kGEM:
95  return calcGEMSpecificBend(tp);
96  break;
97  case L1TMuon::kME0:
98  return calcME0SpecificBend(tp);
99  break;
100  default:
101  return std::nan("Invalid TP type!");
102  break;
103  }
104 }
105 
107  switch (tp.subsystem()) {
108  case L1TMuon::kDT:
109  return calcDTSpecificPoint(tp);
110  break;
111  case L1TMuon::kCSC:
112  return getCSCSpecificPoint(tp);
113  break;
114  case L1TMuon::kRPC:
115  return getRPCSpecificPoint(tp);
116  break;
117  case L1TMuon::kGEM:
118  return getGEMSpecificPoint(tp);
119  break;
120  case L1TMuon::kME0:
121  return getME0SpecificPoint(tp);
122  break;
123  default:
125  GlobalPoint::Polar(std::nan("Invalid TP type!"), std::nan("Invalid TP type!"), std::nan("Invalid TP type!")));
126  return ret;
127  break;
128  }
129 }
130 
133  unsigned long long geomid = geom.cacheIdentifier();
134  if (_geom_cache_id != geomid) {
135  _geodt = geom.getHandle(geodtToken_);
136  _geocsc = geom.getHandle(geocscToken_);
137  _georpc = geom.getHandle(georpcToken_);
138  _geogem = geom.getHandle(geogemToken_);
139  _geome0 = geom.getHandle(geome0Token_);
140  _geom_cache_id = geomid;
141  }
142 
144  unsigned long long magfieldid = magfield.cacheIdentifier();
145  if (_magfield_cache_id != magfieldid) {
146  _magfield = magfield.getHandle(magfieldToken_);
147  _magfield_cache_id = magfieldid;
148  }
149 }
150 
151 // _____________________________________________________________________________
152 // ME0
154  if (tp.detId<DetId>().subdetId() == MuonSubdetId::GEM) { // GE0
155  const GEMDetId id(tp.detId<GEMDetId>());
157  const GEMChamber* keylayer = chamber->chamber(3); // GEM key layer is layer 3
158  int partition = tp.getME0Data().partition; // 'partition' is in half-roll unit
159  int iroll = (partition >> 1) + 1;
160  const GEMEtaPartition* roll = keylayer->etaPartition(iroll);
161 
162  // failed to get ME0 roll
163  if (roll == nullptr) {
164  throw cms::Exception("Invalid GE0 Roll") << "Failed to get GEM roll for GE0" << std::endl;
165  }
166 
167  // See L1Trigger/ME0Trigger/src/ME0TriggerPseudoBuilder.cc
168  int phiposition = tp.getME0Data().phiposition; // 'phiposition' is in half-strip unit
169  int istrip = (phiposition >> 1);
170  int phiposition2 = (phiposition & 0x1);
171  float centreOfStrip = istrip + 0.25 + phiposition2 * 0.5;
172  const LocalPoint& lp = roll->centreOfStrip(centreOfStrip);
173  const GlobalPoint& gp = roll->surface().toGlobal(lp);
174  return gp;
175  } else { // ME0
176  const ME0DetId id(tp.detId<ME0DetId>());
177  const ME0Chamber* chamber = _geome0->chamber(id);
178  const ME0Layer* keylayer = chamber->layer(3); // ME0 key layer is layer 3
179  int partition = tp.getME0Data().partition; // 'partition' is in half-roll unit
180  int iroll = (partition >> 1) + 1;
181  const ME0EtaPartition* roll = keylayer->etaPartition(iroll);
182 
183  // failed to get ME0 roll
184  if (roll == nullptr) {
185  throw cms::Exception("Invalid ME0 Roll") << "Failed to get ME0 roll" << std::endl;
186  }
187 
188  // See L1Trigger/ME0Trigger/src/ME0TriggerPseudoBuilder.cc
189  int phiposition = tp.getME0Data().phiposition; // 'phiposition' is in half-strip unit
190  int istrip = (phiposition >> 1);
191  int phiposition2 = (phiposition & 0x1);
192  float centreOfStrip = istrip + 0.25 + phiposition2 * 0.5;
193  const LocalPoint& lp = roll->centreOfStrip(centreOfStrip);
194  const GlobalPoint& gp = roll->surface().toGlobal(lp);
195  return gp;
196  }
197 }
198 
200  return getME0SpecificPoint(tp).eta();
201 }
202 
204  return getME0SpecificPoint(tp).phi();
205 }
206 
208  return tp.getME0Data().deltaphi * (tp.getME0Data().bend == 0 ? 1 : -1);
209 }
210 
211 // _____________________________________________________________________________
212 // GEM
214  const GEMDetId id(tp.detId<GEMDetId>());
216  assert(roll != nullptr); // failed to get GEM roll
217  //const uint16_t pad = tp.getGEMData().pad;
218  // Use half-pad precision, + 0.5 at the end to get the center of the pad (pad starts from 0)
219  const float pad = (0.5 * static_cast<float>(tp.getGEMData().pad_low + tp.getGEMData().pad_hi)) + 0.5f;
220  const LocalPoint& lp = roll->centreOfPad(pad);
221  const GlobalPoint& gp = roll->surface().toGlobal(lp);
222  return gp;
223 }
224 
226  return getGEMSpecificPoint(tp).eta();
227 }
228 
230  return getGEMSpecificPoint(tp).phi();
231 }
232 
233 double GeometryTranslator::calcGEMSpecificBend(const TriggerPrimitive& tp) const { return 0.0; }
234 
235 // _____________________________________________________________________________
236 // RPC
238  const RPCDetId id(tp.detId<RPCDetId>());
239  const RPCRoll* roll = _georpc->roll(id);
240  assert(roll != nullptr); // failed to get RPC roll
241  //const int strip = static_cast<int>(tp.getRPCData().strip);
242  // Use half-strip precision, - 0.5 at the end to get the center of the strip (strip starts from 1)
243  const float strip = (0.5 * static_cast<float>(tp.getRPCData().strip_low + tp.getRPCData().strip_hi)) - 0.5f;
244  const LocalPoint& lp = roll->centreOfStrip(strip);
245  const GlobalPoint& gp = roll->surface().toGlobal(lp);
246  return gp;
247 }
248 
250  return getRPCSpecificPoint(tp).eta();
251 }
252 
254  return getRPCSpecificPoint(tp).phi();
255 }
256 
257 // this function actually does nothing since RPC
258 // hits are point-like objects
259 double GeometryTranslator::calcRPCSpecificBend(const TriggerPrimitive& tp) const { return 0.0; }
260 
261 // _____________________________________________________________________________
262 // CSC
263 //
264 // alot of this is transcription and consolidation of the CSC
265 // global phi calculation code
266 // this works directly with the geometry
267 // rather than using the old phi luts
269  const CSCDetId id(tp.detId<CSCDetId>());
270  // we should change this to weak_ptrs at some point
271  // requires introducing std::shared_ptrs to geometry
272  std::unique_ptr<const CSCChamber> chamb(_geocsc->chamber(id));
273  assert(chamb != nullptr); // failed to get CSC chamber
274  std::unique_ptr<const CSCLayerGeometry> layer_geom(chamb->layer(CSCConstants::KEY_ALCT_LAYER)->geometry());
275  std::unique_ptr<const CSCLayer> layer(chamb->layer(CSCConstants::KEY_ALCT_LAYER));
276 
277  const uint16_t halfstrip = tp.getCSCData().strip;
278  const uint16_t pattern = tp.getCSCData().pattern;
279  const uint16_t keyWG = tp.getCSCData().keywire;
280  //const unsigned maxStrips = layer_geom->numberOfStrips();
281 
282  // so we can extend this later
283  // assume TMB2007 half-strips only as baseline
284  double offset = 0.0;
285  switch (1) {
286  case 1:
288  }
289  const unsigned halfstrip_offs = static_cast<unsigned>(0.5 + halfstrip + offset);
290  const unsigned strip = halfstrip_offs / 2 + 1; // geom starts from 1
291 
292  // the rough location of the hit at the ALCT key layer
293  // we will refine this using the half strip information
294  const LocalPoint& coarse_lp = layer_geom->stripWireGroupIntersection(strip, keyWG);
295  const GlobalPoint& coarse_gp = layer->surface().toGlobal(coarse_lp);
296 
297  // the strip width/4.0 gives the offset of the half-strip
298  // center with respect to the strip center
299  const double hs_offset = layer_geom->stripPhiPitch() / 4.0;
300 
301  // determine handedness of the chamber
302  const bool ccw = isCSCCounterClockwise(layer);
303  // we need to subtract the offset of even half strips and add the odd ones
304  const double phi_offset = ((halfstrip_offs % 2 ? 1 : -1) * (ccw ? -hs_offset : hs_offset));
305 
306  // the global eta calculation uses the middle of the strip
307  // so no need to increment it
308  const GlobalPoint final_gp(
309  GlobalPoint::Polar(coarse_gp.theta(), (coarse_gp.phi().value() + phi_offset), coarse_gp.mag()));
310 
311  // We need to add in some notion of the 'error' on trigger primitives
312  // like the width of the wire group by the width of the strip
313  // or something similar
314 
315  // release ownership of the pointers
316  chamb.release();
317  layer_geom.release();
318  layer.release();
319 
320  return final_gp;
321 }
322 
324  return getCSCSpecificPoint(tp).eta();
325 }
326 
328  return getCSCSpecificPoint(tp).phi();
329 }
330 
331 double GeometryTranslator::calcCSCSpecificBend(const TriggerPrimitive& tp) const { return tp.getCSCData().bend; }
332 
333 bool GeometryTranslator::isCSCCounterClockwise(const std::unique_ptr<const CSCLayer>& layer) const {
334  const int nStrips = layer->geometry()->numberOfStrips();
335  const double phi1 = layer->centerOfStrip(1).phi();
336  const double phiN = layer->centerOfStrip(nStrips).phi();
337  return ((std::abs(phi1 - phiN) < M_PI && phi1 >= phiN) || (std::abs(phi1 - phiN) >= M_PI && phi1 < phiN));
338 }
339 
340 // _____________________________________________________________________________
341 // DT
343  const DTChamberId baseid(tp.detId<DTChamberId>());
344  // do not use this pointer for anything other than creating a trig geom
345  std::unique_ptr<DTChamber> chamb(const_cast<DTChamber*>(_geodt->chamber(baseid)));
346  std::unique_ptr<DTTrigGeom> trig_geom(new DTTrigGeom(chamb.get(), false));
347  chamb.release(); // release it here so no one gets funny ideas
348  // super layer one is the theta superlayer in a DT chamber
349  // station 4 does not have a theta super layer
350  // the BTI index from the theta trigger is an OR of some BTI outputs
351  // so, we choose the BTI that's in the middle of the group
352  // as the BTI that we get theta from
353  // TODO:::::>>> need to make sure this ordering doesn't flip under wheel sign
354  const int NBTI_theta = ((baseid.station() != 4) ? trig_geom->nCell(2) : trig_geom->nCell(3));
355  const int bti_group = tp.getDTData().theta_bti_group;
356  const unsigned bti_actual = bti_group * NBTI_theta / 7 + NBTI_theta / 14 + 1;
357  DTBtiId thetaBTI;
358  if (baseid.station() != 4 && bti_group != -1) {
359  thetaBTI = DTBtiId(baseid, 2, bti_actual);
360  } else {
361  // since this is phi oriented it'll give us theta in the middle
362  // of the chamber
363  thetaBTI = DTBtiId(baseid, 3, 1);
364  }
365  const GlobalPoint& theta_gp = trig_geom->CMSPosition(thetaBTI);
366 
367  // local phi in sector -> global phi
368  double phi = static_cast<double>(tp.getDTData().radialAngle) / 4096.0; // 12 bits for 1 radian
369  phi += tp.getDTData().sector * M_PI / 6.0; // add sector offset, sector is [0,11]
370 
371  return GlobalPoint(GlobalPoint::Polar(theta_gp.theta(), phi, theta_gp.mag()));
372 }
373 
375 
377 
378 // we have the bend except for station 3
380  int bend = tp.getDTData().bendingAngle;
381  double bendf = bend / 512.0;
382  return bendf;
383 }
int station() const
Return the station number.
Definition: DTChamberId.h:45
edm::ESHandle< DTGeometry > _geodt
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
const GEMEtaPartition * etaPartition(GEMDetId id) const
Return a GEMEtaPartition given its id.
Definition: GEMGeometry.cc:77
GlobalPoint getCSCSpecificPoint(const TriggerPrimitive &) const
static constexpr int GEM
Definition: MuonSubdetId.h:14
const CSCChamber * chamber(CSCDetId id) const
Return the chamber corresponding to given DetId.
Definition: CSCGeometry.cc:100
const GEMEtaPartition * etaPartition(GEMDetId id) const
Return the eta partition corresponding to the given id.
Definition: GEMChamber.cc:33
unsigned long long _geom_cache_id
double calcGEMSpecificPhi(const TriggerPrimitive &) const
GlobalPoint getGlobalPoint(const TriggerPrimitive &) const
ret
prodAgent to be discontinued
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
double calcCSCSpecificPhi(const TriggerPrimitive &) const
T eta() const
Definition: PV3DBase.h:73
edm::ESHandle< RPCGeometry > _georpc
edm::ESHandle< GEMGeometry > _geogem
edm::ESHandle< ME0Geometry > _geome0
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
double calcRPCSpecificPhi(const TriggerPrimitive &) const
double calculateGlobalPhi(const TriggerPrimitive &) const
const RPCRoll * roll(RPCDetId id) const
Return a roll given its id.
Definition: RPCGeometry.cc:50
assert(be >=bs)
double calcGEMSpecificEta(const TriggerPrimitive &) const
nStrips
1.2 is to make the matching window safely the two nearest strips 0.35 is the size of an ME0 chamber i...
edm::ESHandle< MagneticField > _magfield
edm::ESGetToken< DTGeometry, MuonGeometryRecord > geodtToken_
double calcRPCSpecificEta(const TriggerPrimitive &) const
GeometryTranslator(edm::ConsumesCollector)
void checkAndUpdateGeometry(const edm::EventSetup &)
edm::ESHandle< CSCGeometry > _geocsc
double calcDTSpecificBend(const TriggerPrimitive &) const
const ME0Chamber * chamber(ME0DetId id) const
Return a chamber given its id.
Definition: ME0Geometry.cc:43
T mag() const
Definition: PV3DBase.h:64
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
T get() const
Definition: EventSetup.h:79
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
double calcME0SpecificBend(const TriggerPrimitive &) const
GlobalPoint getRPCSpecificPoint(const TriggerPrimitive &) const
double calcGEMSpecificBend(const TriggerPrimitive &) const
double calcCSCSpecificEta(const TriggerPrimitive &) const
edm::ESGetToken< ME0Geometry, MuonGeometryRecord > geome0Token_
#define M_PI
double calcME0SpecificEta(const TriggerPrimitive &) const
double calcCSCSpecificBend(const TriggerPrimitive &) const
double calculateGlobalEta(const TriggerPrimitive &) const
Definition: DetId.h:17
double calcDTSpecificPhi(const TriggerPrimitive &) const
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magfieldToken_
double calcRPCSpecificBend(const TriggerPrimitive &) const
static double getLegacyPosition(int pattern)
double calcDTSpecificEta(const TriggerPrimitive &) const
edm::ESGetToken< RPCGeometry, MuonGeometryRecord > georpcToken_
edm::ESGetToken< CSCGeometry, MuonGeometryRecord > geocscToken_
T1 value() const
Explicit access to value in case implicit conversion not OK.
Definition: Phi.h:75
bool isCSCCounterClockwise(const std::unique_ptr< const CSCLayer > &) const
edm::ESGetToken< GEMGeometry, MuonGeometryRecord > geogemToken_
unsigned long long _magfield_cache_id
GlobalPoint getGEMSpecificPoint(const TriggerPrimitive &) const
const DTChamber * chamber(const DTChamberId &id) const
Return a DTChamber given its id.
Definition: DTGeometry.cc:90
double calcME0SpecificPhi(const TriggerPrimitive &) const
const GEMSuperChamber * superChamber(GEMDetId id) const
Definition: GEMGeometry.cc:69
double calculateBendAngle(const TriggerPrimitive &) const
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72
GlobalPoint getME0SpecificPoint(const TriggerPrimitive &) const
GlobalPoint calcDTSpecificPoint(const TriggerPrimitive &) const
const ME0EtaPartition * etaPartition(ME0DetId id) const
Return the eta partition corresponding to the given id.
Definition: ME0Layer.cc:27