CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
CmsTrackerPanelBuilder.cc
Go to the documentation of this file.
9 #include <vector>
10 
11 template <class FilteredView>
13  CmsDetConstruction<FilteredView> theCmsDetConstruction;
17  theCmsDetConstruction.buildComponent(fv, g, s);
18  break;
19  default:
20  edm::LogError("CmsTrackerPanelBuilder")
21  << " ERROR - I was expecting a Plaq, I got a " << ExtractStringFromDDD<FilteredView>::getString(s, &fv);
22  ;
23  }
24 }
25 
26 template <class FilteredView>
29 
30  if (comp.front()->type() == GeometricDet::DetUnit)
31  std::sort(comp.begin(), comp.end(), CmsTrackerLevelBuilderHelper::isLessR);
32  else
33  edm::LogError("CmsTrackerPanelBuilder")
34  << "ERROR - wrong SubDet to sort..... " << det->components().front()->type();
35 
36  for (uint32_t i = 0; i < comp.size(); i++) {
37  det->component(i)->setGeographicalID(i + 1);
38  }
39 }
40 
void buildComponent(FilteredView &, GeometricDet *, const std::string &) override
static std::string getString(const std::string &, FilteredView *)
void sortNS(FilteredView &, GeometricDet *) override
void setGeographicalID(DetId id)
Definition: GeometricDet.h:97
Log< level::Error, false > LogError
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:150
static bool isLessR(const GeometricDet *a, const GeometricDet *b)
GeometricDet * component(size_t index)
Definition: GeometricDet.h:146
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:34
void buildComponent(FilteredView &, GeometricDet *, const std::string &) override