CMS 3D CMS Logo

MkFitGeometryESProducer.cc
Go to the documentation of this file.
3 
11 
14 
16 
17 // mkFit includes
23 
24 #include <sstream>
25 
26 // #define DUMP_MKF_GEO
27 
28 //------------------------------------------------------------------------------
29 
31 public:
33 
34  static void fillDescriptions(edm::ConfigurationDescriptions &descriptions);
35 
36  std::unique_ptr<MkFitGeometry> produce(const TrackerRecoGeometryRecord &iRecord);
37 
38 private:
39  struct GapCollector {
40  struct Interval {
41  float x, y;
42  };
43 
45  void extend_current(float q) {
48  }
50 
51  void add_interval(float x, float y);
52 
53  void sqrt_elements();
54  bool find_gap(Interval &itvl, float eps);
55  void print_gaps(std::ostream &ostr);
56 
57  std::list<Interval> m_coverage;
59  };
60  typedef std::unordered_map<int, GapCollector> layer_gap_map_t;
61 
62  struct MatHistBin {
63  float weight{0}, xi{0}, rl{0};
64  void add(float w, float x, float r) {
65  weight += w;
66  xi += w * x;
67  rl += w * r;
68  }
69  };
71 
72  void considerPoint(const GlobalPoint &gp, mkfit::LayerInfo &lay_info);
73  void fillShapeAndPlacement(const GeomDet *det,
74  mkfit::TrackerInfo &trk_info,
75  MaterialHistogram &material_histogram,
76  layer_gap_map_t *lgc_map = nullptr);
77  void addPixBGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
78  void addPixEGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
79  void addTIBGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
80  void addTOBGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
81  void addTIDGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
82  void addTECGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
83 
84  void findRZBox(const GlobalPoint &gp, float &rmin, float &rmax, float &zmin, float &zmax);
85  void aggregateMaterialInfo(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram);
86  void fillLayers(mkfit::TrackerInfo &trk_info);
87 
91 
92  const TrackerTopology *trackerTopo_ = nullptr;
93  const TrackerGeometry *trackerGeom_ = nullptr;
95 };
96 
98  auto cc = setWhatProduced(this);
99  geomToken_ = cc.consumes();
100  ttopoToken_ = cc.consumes();
101  trackerToken_ = cc.consumes();
102 }
103 
106  descriptions.addWithDefaultLabel(desc);
107 }
108 
109 //------------------------------------------------------------------------------
110 
112  if (x > y)
113  std::swap(x, y);
114  bool handled = false;
115  for (auto i = m_coverage.begin(); i != m_coverage.end(); ++i) {
116  if (y < i->x) { // fully on 'left'
117  m_coverage.insert(i, {x, y});
118  handled = true;
119  break;
120  } else if (x > i->y) { // fully on 'right'
121  continue;
122  } else if (x < i->x) { // sticking out on 'left'
123  i->x = x;
124  handled = true;
125  break;
126  } else if (y > i->y) { // sticking out on 'right'
127  i->y = y;
128  // check for overlap with the next interval, potentially merge
129  auto j = i;
130  ++j;
131  if (j != m_coverage.end() && i->y >= j->x) {
132  i->y = j->y;
133  m_coverage.erase(j);
134  }
135  handled = true;
136  break;
137  } else { // contained in current interval
138  handled = true;
139  break;
140  }
141  }
142  if (!handled) {
143  m_coverage.push_back({x, y});
144  }
145 }
146 
148  for (auto &itvl : m_coverage) {
149  itvl.x = std::sqrt(itvl.x);
150  itvl.y = std::sqrt(itvl.y);
151  }
152 }
153 
155  auto i = m_coverage.begin();
156  while (i != m_coverage.end()) {
157  auto j = i;
158  ++j;
159  if (j != m_coverage.end()) {
160  if (j->x - i->y > eps) {
161  itvl = {i->y, j->x};
162  return true;
163  }
164  i = j;
165  } else {
166  break;
167  }
168  }
169  return false;
170 }
171 
173  auto i = m_coverage.begin();
174  while (i != m_coverage.end()) {
175  auto j = i;
176  ++j;
177  if (j != m_coverage.end()) {
178  ostr << "(" << i->y << ", " << j->x << ")->" << j->x - i->y;
179  i = j;
180  } else {
181  break;
182  }
183  }
184 }
185 
186 //------------------------------------------------------------------------------
187 
189  // Use radius squared during bounding-region search.
190  float r = gp.perp2(), z = gp.z();
191  li.extend_limits(r, z);
192 }
193 
195  mkfit::TrackerInfo &trk_info,
196  MaterialHistogram &material_histogram,
197  layer_gap_map_t *lgc_map) {
198  DetId detid = det->geographicalId();
199 
200  float xy[4][2];
201  float dz;
202  const Bounds *b = &((det->surface()).bounds());
203 
204  if (const TrapezoidalPlaneBounds *b2 = dynamic_cast<const TrapezoidalPlaneBounds *>(b)) {
205  // See sec. "TrapezoidalPlaneBounds parameters" in doc/reco-geom-notes.txt
206  std::array<const float, 4> const &par = b2->parameters();
207  xy[0][0] = -par[0];
208  xy[0][1] = -par[3];
209  xy[1][0] = -par[1];
210  xy[1][1] = par[3];
211  xy[2][0] = par[1];
212  xy[2][1] = par[3];
213  xy[3][0] = par[0];
214  xy[3][1] = -par[3];
215  dz = par[2];
216 
217 #ifdef DUMP_MKF_GEO
218  printf("TRAP 0x%x %f %f %f %f ", detid.rawId(), par[0], par[1], par[2], par[3]);
219 #endif
220  } else if (const RectangularPlaneBounds *b2 = dynamic_cast<const RectangularPlaneBounds *>(b)) {
221  // Rectangular
222  float dx = b2->width() * 0.5; // half width
223  float dy = b2->length() * 0.5; // half length
224  xy[0][0] = -dx;
225  xy[0][1] = -dy;
226  xy[1][0] = -dx;
227  xy[1][1] = dy;
228  xy[2][0] = dx;
229  xy[2][1] = dy;
230  xy[3][0] = dx;
231  xy[3][1] = -dy;
232  dz = b2->thickness() * 0.5; // half thickness
233 
234 #ifdef DUMP_MKF_GEO
235  printf("RECT 0x%x %f %f %f ", detid.rawId(), dx, dy, dz);
236 #endif
237  } else {
238  throw cms::Exception("UnimplementedFeature") << "unsupported Bounds class";
239  }
240 
241  const bool useMatched = false;
242  int lay =
244  trackerTopo_->layer(detid),
245  useMatched,
246  trackerTopo_->isStereo(detid),
247  trackerTopo_->side(detid) == static_cast<unsigned>(TrackerDetSide::PosEndcap));
248 #ifdef DUMP_MKF_GEO
249  printf(" subdet=%d layer=%d side=%d is_stereo=%d --> mkflayer=%d\n",
250  detid.subdetId(),
251  trackerTopo_->layer(detid),
252  trackerTopo_->side(detid),
253  trackerTopo_->isStereo(detid),
254  lay);
255 #endif
256 
257  mkfit::LayerInfo &layer_info = trk_info.layer_nc(lay);
258  if (lgc_map) {
259  (*lgc_map)[lay].reset_current();
260  }
261  float zbox_min = 1000, zbox_max = 0, rbox_min = 1000, rbox_max = 0;
262  for (int i = 0; i < 4; ++i) {
263  Local3DPoint lp1(xy[i][0], xy[i][1], -dz);
264  Local3DPoint lp2(xy[i][0], xy[i][1], dz);
265  GlobalPoint gp1 = det->surface().toGlobal(lp1);
266  GlobalPoint gp2 = det->surface().toGlobal(lp2);
267  considerPoint(gp1, layer_info);
268  considerPoint(gp2, layer_info);
269  findRZBox(gp1, rbox_min, rbox_max, zbox_min, zbox_max);
270  findRZBox(gp2, rbox_min, rbox_max, zbox_min, zbox_max);
271  if (lgc_map) {
272  (*lgc_map)[lay].extend_current(gp1.perp2());
273  (*lgc_map)[lay].extend_current(gp2.perp2());
274  }
275  }
276  if (lgc_map) {
277  (*lgc_map)[lay].add_current();
278  }
279  // Module information
280  const auto &p = det->position();
281  auto z = det->rotation().z();
282  auto x = det->rotation().x();
283  layer_info.register_module({{p.x(), p.y(), p.z()}, {z.x(), z.y(), z.z()}, {x.x(), x.y(), x.z()}, detid.rawId()});
284  // Set some layer parameters (repeatedly, would require hard-coding otherwise)
285  layer_info.set_subdet(detid.subdetId());
286  layer_info.set_is_pixel(detid.subdetId() <= 2);
287  layer_info.set_is_stereo(trackerTopo_->isStereo(detid));
288 
289  bool doubleSide = false; //double modules have double material
290  if (detid.subdetId() == SiStripSubdetector::TIB)
291  doubleSide = trackerTopo_->tibIsDoubleSide(detid);
292  else if (detid.subdetId() == SiStripSubdetector::TID)
293  doubleSide = trackerTopo_->tidIsDoubleSide(detid);
294  else if (detid.subdetId() == SiStripSubdetector::TOB)
295  doubleSide = trackerTopo_->tobIsDoubleSide(detid);
296  else if (detid.subdetId() == SiStripSubdetector::TEC)
297  doubleSide = trackerTopo_->tecIsDoubleSide(detid);
298 
299  if (!doubleSide) //fill material
300  {
301  //module material
302  const float bbxi = det->surface().mediumProperties().xi();
303  const float radL = det->surface().mediumProperties().radLen();
304  //loop over bins to fill histogram with bbxi, radL and their weight, which the overlap surface in r-z with the cmsquare of a bin
305  const float iBin = trk_info.mat_range_z() / trk_info.mat_nbins_z();
306  const float jBin = trk_info.mat_range_r() / trk_info.mat_nbins_r();
307  for (int i = std::floor(zbox_min / iBin); i < std::ceil(zbox_max / iBin); i++) {
308  for (int j = std::floor(rbox_min / jBin); j < std::ceil(rbox_max / jBin); j++) {
309  const float iF = i * iBin;
310  const float jF = j * jBin;
311  float overlap = std::max(0.f, std::min(jF + jBin, rbox_max) - std::max(jF, rbox_min)) *
312  std::max(0.f, std::min(iF + iBin, zbox_max) - std::max(iF, zbox_min));
313  if (overlap > 0)
314  material_histogram(i, j).add(overlap, bbxi, radL);
315  }
316  }
317  }
318 }
319 
320 //==============================================================================
321 
322 // These functions do the following:
323 // 0. Detect bounding cylinder of each layer.
324 // 1. Setup LayerInfo data.
325 // 2. Establish short module ids.
326 // 3. Store module normal and strip direction vectors.
327 // 4. Extract stereo coverage holes where they exist (TEC, all but last 3 double-layers).
328 //
329 // See python/dumpMkFitGeometry.py and dumpMkFitGeometryPhase2.py
330 
332 #ifdef DUMP_MKF_GEO
333  printf("\n*** addPixBGeometry\n\n");
334 #endif
335  for (auto &det : trackerGeom_->detsPXB()) {
336  fillShapeAndPlacement(det, trk_info, material_histogram);
337  }
338 }
339 
341 #ifdef DUMP_MKF_GEO
342  printf("\n*** addPixEGeometry\n\n");
343 #endif
344  for (auto &det : trackerGeom_->detsPXF()) {
345  fillShapeAndPlacement(det, trk_info, material_histogram);
346  }
347 }
348 
350 #ifdef DUMP_MKF_GEO
351  printf("\n*** addTIBGeometry\n\n");
352 #endif
353  for (auto &det : trackerGeom_->detsTIB()) {
354  fillShapeAndPlacement(det, trk_info, material_histogram);
355  }
356 }
357 
359 #ifdef DUMP_MKF_GEO
360  printf("\n*** addTOBGeometry\n\n");
361 #endif
362  for (auto &det : trackerGeom_->detsTOB()) {
363  fillShapeAndPlacement(det, trk_info, material_histogram);
364  }
365 }
366 
368 #ifdef DUMP_MKF_GEO
369  printf("\n*** addTIDGeometry\n\n");
370 #endif
371  for (auto &det : trackerGeom_->detsTID()) {
372  fillShapeAndPlacement(det, trk_info, material_histogram);
373  }
374 }
375 
377 #ifdef DUMP_MKF_GEO
378  printf("\n*** addTECGeometry\n\n");
379 #endif
380  // For TEC we also need to discover hole in radial extents.
381  layer_gap_map_t lgc_map;
382  for (auto &det : trackerGeom_->detsTEC()) {
383  fillShapeAndPlacement(det, trk_info, material_histogram, &lgc_map);
384  }
385  // Now loop over the GapCollectors and see if there is a coverage gap.
386  std::ostringstream ostr;
387  ostr << "addTECGeometry() gap report:\n";
389  for (auto &[layer, gcol] : lgc_map) {
390  gcol.sqrt_elements();
391  if (gcol.find_gap(itvl, 0.5)) {
392  ostr << " layer: " << layer << ", gap: " << itvl.x << " -> " << itvl.y << " width = " << itvl.y - itvl.x << "\n";
393  ostr << " all gaps: ";
394  gcol.print_gaps(ostr);
395  ostr << "\n";
396  trk_info.layer_nc(layer).set_r_hole_range(itvl.x, itvl.y);
397  }
398  }
399  edm::LogVerbatim("MkFitGeometryESProducer") << ostr.str();
400 }
401 
402 void MkFitGeometryESProducer::findRZBox(const GlobalPoint &gp, float &rmin, float &rmax, float &zmin, float &zmax) {
403  float r = gp.perp(), z = std::abs(gp.z());
404  rmax = std::max(r, rmax);
405  rmin = std::min(r, rmin);
406  zmax = std::max(z, zmax);
407  zmin = std::min(z, zmin);
408 }
409 
411  MaterialHistogram &material_histogram) {
412  //from histogram (vector of tuples) to grid
413  for (int i = 0; i < trk_info.mat_nbins_z(); i++) {
414  for (int j = 0; j < trk_info.mat_nbins_r(); j++) {
415  const MatHistBin &mhb = material_histogram(i, j);
416  if (mhb.weight > 0) {
417  trk_info.material_bbxi(i, j) = mhb.xi / mhb.weight;
418  trk_info.material_radl(i, j) = mhb.rl / mhb.weight;
419  }
420  }
421  }
422 }
423 
425  mkfit::rectvec<int> rneighbor_map(trk_info.mat_nbins_z(), trk_info.mat_nbins_r());
426  mkfit::rectvec<int> zneighbor_map(trk_info.mat_nbins_z(), trk_info.mat_nbins_r());
427 
428  for (int im = 0; im < trk_info.n_layers(); ++im) {
429  const mkfit::LayerInfo &li = trk_info.layer(im);
430  if (!li.is_barrel() && li.zmax() < 0)
431  continue; // neg endcap covered by pos
432  int rin, rout, zmin, zmax;
433  rin = trk_info.mat_bin_r(li.rin());
434  rout = trk_info.mat_bin_r(li.rout()) + 1;
435  if (li.is_barrel()) {
436  zmin = 0;
437  zmax = trk_info.mat_bin_z(std::max(std::abs(li.zmax()), std::abs(li.zmin()))) + 1;
438  } else {
439  zmin = trk_info.mat_bin_z(li.zmin());
440  zmax = trk_info.mat_bin_z(li.zmax()) + 1;
441  }
442  for (int i = zmin; i < zmax; i++) {
443  for (int j = rin; j < rout; j++) {
444  if (trk_info.material_bbxi(i, j) == 0) {
445  float distancesqmin = 100000;
446  for (int i2 = zmin; i2 < zmax; i2++) {
447  for (int j2 = rin; j2 < rout; j2++) {
448  if (j == j2 && i == i2)
449  continue;
450  auto mydistsq = (i - i2) * (i - i2) + (j - j2) * (j - j2);
451  if (mydistsq < distancesqmin && trk_info.material_radl(i2, j2) > 0) {
452  distancesqmin = mydistsq;
453  zneighbor_map(i, j) = i2;
454  rneighbor_map(i, j) = j2;
455  }
456  }
457  } // can work on speedup here
458  }
459  }
460  }
461  for (int i = zmin; i < zmax; i++) {
462  for (int j = rin; j < rout; j++) {
463  if (trk_info.material_bbxi(i, j) == 0) {
464  int iN = zneighbor_map(i, j);
465  int jN = rneighbor_map(i, j);
466  trk_info.material_bbxi(i, j) = trk_info.material_bbxi(iN, jN);
467  trk_info.material_radl(i, j) = trk_info.material_radl(iN, jN);
468  }
469  }
470  }
471  } //module loop
472 }
473 
474 //------------------------------------------------------------------------------
475 // clang-format off
476 namespace {
477  const float phase1QBins[] = {
478  // PIXB, TIB, TOB
479  2.0, 2.0, 2.0, 2.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5,
480  // PIXE+, TID+, TEC+
481  1.0, 1.0, 1.0, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5,
482  // PIXE-, TID-, TEC-
483  1.0, 1.0, 1.0, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5, 10.25, 7.5
484  };
485  const float phase2QBins[] = {
486  // TODO: Review these numbers.
487  // PIXB, TOB
488  2.0, 2.0, 2.0, 2.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0,
489  // PIXE+, TEC+
490  1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6,
491  // PIXE-, TEC-
492  1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6, 5.6
493  };
494 }
495 // clang-format on
496 //------------------------------------------------------------------------------
497 
498 std::unique_ptr<MkFitGeometry> MkFitGeometryESProducer::produce(const TrackerRecoGeometryRecord &iRecord) {
499  auto trackerInfo = std::make_unique<mkfit::TrackerInfo>();
500 
501  trackerGeom_ = &iRecord.get(geomToken_);
502  trackerTopo_ = &iRecord.get(ttopoToken_);
503 
504  const float *qBinDefaults = nullptr;
505 
506  // std::string path = "Geometry/TrackerCommonData/data/";
508  edm::LogInfo("MkFitGeometryESProducer") << "Extracting PhaseI geometry";
509  trackerInfo->create_layers(18, 27, 27);
510  qBinDefaults = phase1QBins;
511 
512  trackerInfo->create_material(300, 300.0f, 120, 120.0f);
515  edm::LogInfo("MkFitGeometryESProducer") << "Extracting PhaseII geometry";
517  trackerInfo->create_layers(16, 22, 22);
518  qBinDefaults = phase2QBins;
519  trackerInfo->create_material(300, 300.0f, 120, 120.0f);
520  } else {
521  throw cms::Exception("UnimplementedFeature") << "unsupported / unknowen geometry version";
522  }
523 
524  // Prepare layer boundaries for bounding-box search
525  for (int i = 0; i < trackerInfo->n_layers(); ++i) {
526  auto &li = trackerInfo->layer_nc(i);
527  li.set_limits(
529  li.reserve_modules(256);
530  }
531 
532  MaterialHistogram material_histogram(trackerInfo->mat_nbins_z(), trackerInfo->mat_nbins_r());
533 
534  // This is sort of CMS-phase1 specific ... but fireworks code uses it for PhaseII as well.
535  addPixBGeometry(*trackerInfo, material_histogram);
536  addPixEGeometry(*trackerInfo, material_histogram);
537  addTIBGeometry(*trackerInfo, material_histogram);
538  addTIDGeometry(*trackerInfo, material_histogram);
539  addTOBGeometry(*trackerInfo, material_histogram);
540  addTECGeometry(*trackerInfo, material_histogram);
541 
542  // r_in/out kept as squares until here, root them
543  unsigned int n_mod = 0;
544  for (int i = 0; i < trackerInfo->n_layers(); ++i) {
545  auto &li = trackerInfo->layer_nc(i);
546  li.set_r_in_out(std::sqrt(li.rin()), std::sqrt(li.rout()));
547  li.set_propagate_to(li.is_barrel() ? li.r_mean() : li.z_mean());
548  li.set_q_bin(qBinDefaults[i]);
549  unsigned int maxsid = li.shrink_modules();
550 
551  n_mod += maxsid;
552 
553  // Make sure the short id fits in the 14 bits...
554  assert(maxsid < 1u << 13);
555  assert(n_mod > 0);
556  }
557 
558  // Material grid
559  aggregateMaterialInfo(*trackerInfo, material_histogram);
560  fillLayers(*trackerInfo);
561 
562  // Propagation configuration
563  {
564  using namespace mkfit;
565  PropagationConfig &pconf = trackerInfo->prop_config_nc();
566  pconf.backward_fit_to_pca = false;
574  pconf.apply_tracker_info(trackerInfo.get());
575  }
576 
577 #ifdef DUMP_MKF_GEO
578  printf("Total number of modules %u, 14-bits fit up to %u modules\n", n_mod, 1u << 13);
579 #endif
580 
581  return std::make_unique<MkFitGeometry>(iRecord.get(geomToken_),
582  iRecord.get(trackerToken_),
583  iRecord.get(ttopoToken_),
584  std::move(trackerInfo),
585  layerNrConv_);
586 }
587 
const DetContainer & detsTIB() const
Log< level::Info, true > LogVerbatim
constexpr int32_t ceil(float num)
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:166
bool tibIsDoubleSide(const DetId &id) const
void extend_limits(float r, float z)
Definition: TrackerInfo.cc:33
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
bool tecIsDoubleSide(const DetId &id) const
bool tidIsDoubleSide(const DetId &id) const
bool find_gap(Interval &itvl, float eps)
float rin() const
Definition: TrackerInfo.h:63
void addTIDGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
void set_r_hole_range(float rh1, float rh2)
Definition: TrackerInfo.cc:49
void addTOBGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
const DetContainer & detsPXB() const
void addTECGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
T w() const
PropagationFlags forward_fit_pflags
void fillLayers(mkfit::TrackerInfo &trk_info)
void addPixBGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::ESGetToken< GeometricSearchTracker, TrackerRecoGeometryRecord > trackerToken_
PropagationFlags backward_fit_pflags
const DetContainer & detsPXF() const
Definition: weight.py:1
bool isStereo(const DetId &id) const
const TrackerTopology * trackerTopo_
unsigned int side(const DetId &id) const
assert(be >=bs)
MkFitGeometryESProducer(const edm::ParameterSet &iConfig)
LayerInfo & layer_nc(int l)
Definition: TrackerInfo.h:200
bool tobIsDoubleSide(const DetId &id) const
constexpr bool useMatched
float zmax() const
Definition: TrackerInfo.h:67
unsigned int layer(const DetId &id) const
int mat_nbins_r() const
Definition: TrackerInfo.h:221
const Surface::RotationType & rotation() const
The rotation defining the local R.F.
Definition: GeomDet.h:46
PropagationFlags finding_inter_layer_pflags
Basic3DVector< T > x() const
float zmin() const
Definition: TrackerInfo.h:66
float material_radl(int binZ, int binR) const
Definition: TrackerInfo.h:229
const DetContainer & detsTOB() const
edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > ttopoToken_
const TrackerGeometry * trackerGeom_
bool isThere(GeomDetEnumerators::SubDetector subdet) const
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
T sqrt(T t)
Definition: SSEVec.h:19
float radLen() const
int n_layers() const
Definition: TrackerInfo.h:198
int mat_bin_z(float z) const
Definition: TrackerInfo.h:224
float mat_range_z() const
Definition: TrackerInfo.h:222
Basic3DVector< T > z() const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
void considerPoint(const GlobalPoint &gp, mkfit::LayerInfo &lay_info)
PropagationFlags seed_fit_pflags
double f[11][100]
weight_default_t b2[10]
Definition: b2.h:9
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
void fillShapeAndPlacement(const GeomDet *det, mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram, layer_gap_map_t *lgc_map=nullptr)
void addTIBGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
PropagationFlags pca_prop_pflags
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:64
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
float mat_range_r() const
Definition: TrackerInfo.h:223
int mat_bin_r(float r) const
Definition: TrackerInfo.h:225
void add(float w, float x, float r)
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:79
const LayerInfo & layer(int l) const
Definition: TrackerInfo.h:199
Log< level::Info, false > LogInfo
Definition: DetId.h:17
void aggregateMaterialInfo(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
float material_bbxi(int binZ, int binR) const
Definition: TrackerInfo.h:228
double b
Definition: hdecay.h:120
float rout() const
Definition: TrackerInfo.h:64
void findRZBox(const GlobalPoint &gp, float &rmin, float &rmax, float &zmin, float &zmax)
T perp2() const
Definition: PV3DBase.h:68
const Surface::PositionType & position() const
The position (origin of the R.F.)
Definition: GeomDet.h:43
mkfit::LayerNumberConverter layerNrConv_
void apply_tracker_info(const TrackerInfo *ti)
Definition: TrackerInfo.cc:13
void addPixEGeometry(mkfit::TrackerInfo &trk_info, MaterialHistogram &material_histogram)
float x
PropagationFlags finding_intra_layer_pflags
std::unique_ptr< MkFitGeometry > produce(const TrackerRecoGeometryRecord &iRecord)
const DetContainer & detsTEC() const
Definition: Bounds.h:18
const MediumProperties & mediumProperties() const
Definition: Surface.h:83
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
int convertLayerNumber(int det, int lay, bool useMatched, int isStereo, bool posZ) const
float xi() const
def move(src, dest)
Definition: eostools.py:511
int mat_nbins_z() const
Definition: TrackerInfo.h:220
bool is_barrel() const
Definition: TrackerInfo.h:73
const DetContainer & detsTID() const
std::unordered_map< int, GapCollector > layer_gap_map_t