CMS 3D CMS Logo

CmsTrackerPixelPhase2SubDiskBuilder.cc
Go to the documentation of this file.
9 #include <vector>
10 #include <algorithm>
11 
12 using namespace std;
13 
14 template <class FilteredView>
16  GeometricDet* g,
17  const std::string& s) {
18  CmsTrackerPixelPhase2RingBuilder<FilteredView> theCmsTrackerPixelPhase2RingBuilder;
19  GeometricDet* subdet = new GeometricDet(&fv,
22 
26  theCmsTrackerPixelPhase2RingBuilder.build(fv, subdet, s);
27  break;
28  default:
29  edm::LogError("CmsTrackerPixelPhase2SubDiskBuilder")
30  << " ERROR - I was expecting a Panel, I got a " << ExtractStringFromDDD<FilteredView>::getString(s, &fv);
31  }
32  g->addComponent(subdet);
33 }
34 
35 template <class FilteredView>
38 
39  switch (det->components().front()->type()) {
41  // nothing to be done because the rings (here named panels) are already sorted ??
42  break;
43  default:
44  edm::LogError("CmsTrackerPixelPhase2Builder")
45  << "ERROR - wrong SubDet to sort..... " << det->components().front()->type();
46  }
47 
49  uint32_t totalrings = comp.size();
50 
51  for (uint32_t rn = 0; rn < totalrings; rn++) {
52  rings.emplace_back(det->component(rn));
53  uint32_t blade = rn + 1;
54  uint32_t panel = 1;
55  uint32_t temp = (blade << 2) | panel;
56  rings[rn]->setGeographicalID(temp);
57  }
58 
59  det->clearComponents();
60  det->addComponents(rings);
61 }
62 
std::vector< GeometricDet * > GeometricDetContainer
Definition: GeometricDet.h:35
static std::string getString(const std::string &, FilteredView *)
void clearComponents()
Definition: GeometricDet.h:162
Log< level::Error, false > LogError
void buildComponent(FilteredView &, GeometricDet *, const std::string &) override
void build(FilteredView &, GeometricDet *, const std::string &) override
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
ConstGeometricDetContainer & components()
Definition: GeometricDet.h:151
GeometricDet * component(size_t index)
Definition: GeometricDet.h:147
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:34
void addComponents(GeometricDetContainer const &cont)
void sortNS(FilteredView &, GeometricDet *) override