CMS 3D CMS Logo

CmsTrackerOTDiscBuilder.cc
Go to the documentation of this file.
8 #include <vector>
9 #include <algorithm>
10 
11 using namespace std;
12 
13 void
15 {
16  CmsTrackerOTRingBuilder theCmsTrackerOTRingBuilder;
17  GeometricDet * subdet = new GeometricDet( &fv, theCmsTrackerStringToEnum.type( ExtractStringFromDDD::getString( s, &fv )));
18 
19  switch( theCmsTrackerStringToEnum.type( ExtractStringFromDDD::getString( s, &fv )))
20  {
22  theCmsTrackerOTRingBuilder.build( fv, subdet, s );
23  break;
24  default:
25  edm::LogError( "CmsTrackerOTDiscBuilder" ) << " 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("CmsTrackerOTDiscBuilder")<<"ERROR - wrong SubDet to sort..... "<<det->components().front()->type();
43  }
44 
46  uint32_t totalrings = comp.size();
47 
48 
49  for ( uint32_t rn=0; rn<totalrings; rn++) {
50  rings.emplace_back(det->component(rn));
51  uint32_t blade = rn+1;
52  uint32_t panel = 1;
53  uint32_t temp = (blade<<2) | panel;
54  rings[rn]->setGeographicalID(temp);
55 
56  }
57 
58  det->clearComponents();
59  det->addComponents(rings);
60 
61 }
62 
void addComponent(GeometricDet *)
void sortNS(DDFilteredView &, GeometricDet *) override
void build(DDFilteredView &, GeometricDet *, std::string) override
void clearComponents()
Definition: GeometricDet.h:98
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 *)
void buildComponent(DDFilteredView &, GeometricDet *, std::string) override
GeometricDet * component(size_t index)
Definition: GeometricDet.h:114
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:36
void addComponents(GeometricDetContainer const &cont)