CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CmsTrackerOTDiscBuilder.cc
Go to the documentation of this file.
9 #include <vector>
10 #include <algorithm>
11 
12 using namespace std;
13 
14 void
16 {
17  CmsTrackerOTRingBuilder theCmsTrackerOTRingBuilder;
18  GeometricDet * subdet = new GeometricDet( &fv, theCmsTrackerStringToEnum.type( ExtractStringFromDDD::getString( s, &fv )));
19 
20  switch( theCmsTrackerStringToEnum.type( ExtractStringFromDDD::getString( s, &fv )))
21  {
23  theCmsTrackerOTRingBuilder.build( fv, subdet, s );
24  break;
25  default:
26  edm::LogError( "CmsTrackerOTDiscBuilder" ) << " ERROR - I was expecting a Panel, I got a " << ExtractStringFromDDD::getString( s, &fv );
27  }
28  g->addComponent( subdet );
29 }
30 
31 void
33 {
34 
35 
37 
38  switch(det->components().front()->type()){
40  // nothing to be done because the rings (here named panels) are already sorted ??
41  break;
42  default:
43  edm::LogError("CmsTrackerOTDiscBuilder")<<"ERROR - wrong SubDet to sort..... "<<det->components().front()->type();
44  }
45 
47  uint32_t totalrings = comp.size();
48 
49 
50  for ( uint32_t rn=0; rn<totalrings; rn++) {
51  rings.push_back(det->component(rn));
52  uint32_t blade = rn+1;
53  uint32_t panel = 1;
54  uint32_t temp = (blade<<2) | panel;
55  rings[rn]->setGeographicalID(temp);
56 
57  }
58 
59  det->clearComponents();
60  det->addComponents(rings);
61 
62 }
63 
static std::string getString(std::string const &, DDFilteredView *)
void addComponent(GeometricDet *)
void clearComponents()
Definition: GeometricDet.h:96
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
virtual void buildComponent(DDFilteredView &, GeometricDet *, std::string)
ConstGeometricDetContainer & components()
Definition: GeometricDet.h:174
virtual void build(DDFilteredView &, GeometricDet *, std::string)
GeometricDet * component(size_t index)
Definition: GeometricDet.h:112
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:36
virtual void sortNS(DDFilteredView &, GeometricDet *)
void addComponents(GeometricDetContainer const &cont)