test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Phase2OTBarrelLayerBuilder.cc
Go to the documentation of this file.
3 
4 using namespace std;
5 using namespace edm;
6 
8  const TrackerGeometry* theGeomDetGeometry)
9 {
10  // This builder is very similar to TOBLayer one. Most of the code should be put in a
11  // common place.
12 
13  vector<const GeometricDet*> theGeometricDetRods = aPhase2OTBarrelLayer->components();
14  LogDebug("TkDetLayers") << "Phase2OTBarrelLayerBuilder with #Rods: " << theGeometricDetRods.size() << std::endl;
15 
16  Phase2OTBarrelRodBuilder myPhase2OTBarrelRodBuilder;
17 
18  vector<const Phase2OTBarrelRod*> theInnerRods;
19  vector<const Phase2OTBarrelRod*> theOuterRods;
20 
21  // properly calculate the meanR value to separate rod in inner/outer.
22 
23  double meanR = 0;
24  for (unsigned int index=0; index!=theGeometricDetRods.size(); index++) meanR+=theGeometricDetRods[index]->positionBounds().perp();
25  if (theGeometricDetRods.size()!=0)
26  meanR/=(double) theGeometricDetRods.size();
27 
28  for(unsigned int index=0; index!=theGeometricDetRods.size(); index++){
29  if(theGeometricDetRods[index]->positionBounds().perp() < meanR)
30  theInnerRods.push_back(myPhase2OTBarrelRodBuilder.build(theGeometricDetRods[index],
31  theGeomDetGeometry) );
32 
33  if(theGeometricDetRods[index]->positionBounds().perp() > meanR)
34  theOuterRods.push_back(myPhase2OTBarrelRodBuilder.build(theGeometricDetRods[index],
35  theGeomDetGeometry) );
36 
37  }
38 
39  return new Phase2OTBarrelLayer(theInnerRods,theOuterRods);
40 
41 }
42 
#define LogDebug(id)
TBPLayer Phase2OTBarrelLayer
Phase2OTBarrelRod * build(const GeometricDet *thePhase2OTBarrelRod, const TrackerGeometry *theGeomDetGeometry) __attribute__((cold))
Phase2OTBarrelLayer * build(const GeometricDet *aPhase2OTBarrelLayer, const TrackerGeometry *theGeomDetGeometry) __attribute__((cold))
ConstGeometricDetContainer & components()
Definition: GeometricDet.h:174