CMS 3D CMS Logo

CmsTrackerPixelPhase2DiskBuilder.cc
Go to the documentation of this file.
8 #include <vector>
9 #include <algorithm>
10 
11 using namespace std;
12 
13 void
15 {
16  CmsTrackerPixelPhase2RingBuilder theCmsTrackerPixelPhase2RingBuilder;
17  GeometricDet * subdet = new GeometricDet( &fv, theCmsTrackerStringToEnum.type( ExtractStringFromDDD::getString( s, &fv )));
18 
19  switch( theCmsTrackerStringToEnum.type( ExtractStringFromDDD::getString( s, &fv )))
20  {
22  theCmsTrackerPixelPhase2RingBuilder.build( fv, subdet, s );
23  break;
24  default:
25  edm::LogError( "CmsTrackerPixelPhase2DiskBuilder" ) << " ERROR - I was expecting a Panel, I got a " << ExtractStringFromDDD::getString( s, &fv );
26  }
27  g->addComponent( subdet );
28 }
29 
30 void
32 {
33 
34 
36 
37  switch(det->components().front()->type()){
39  // nothing to be done because the rings (here named panels) are already sorted ??
40  break;
41  default:
42  edm::LogError("CmsTrackerPixelPhase2Builder")<<"ERROR - wrong SubDet to sort..... "<<det->components().front()->type();
43  }
44 
46  uint32_t totalrings = comp.size();
47 
48  for ( uint32_t rn=0; rn<totalrings; rn++) {
49  rings.emplace_back(det->component(rn));
50  uint32_t blade = rn+1;
51  uint32_t panel = 1;
52  uint32_t temp = (blade<<2) | panel;
53  rings[rn]->setGeographicalID(temp);
54 
55  }
56 
57  det->clearComponents();
58  det->addComponents(rings);
59 
60 }
61 
void addComponent(GeometricDet *)
void build(DDFilteredView &, GeometricDet *, std::string) override
void clearComponents()
Definition: GeometricDet.h:98
void buildComponent(DDFilteredView &, GeometricDet *, std::string) override
std::vector< GeometricDet * > GeometricDetContainer
Definition: GeometricDet.h:37
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:176
static std::string getString(std::string const &, DDFilteredView *)
GeometricDet * component(size_t index)
Definition: GeometricDet.h:114
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:36
void addComponents(GeometricDetContainer const &cont)
void sortNS(DDFilteredView &, GeometricDet *) override