CMS 3D CMS Logo

CmsTrackerPhase2TPDiskBuilder.cc
Go to the documentation of this file.
9 #include <vector>
10 #include <algorithm>
11 
12 using namespace std;
13 
14 template <class FilteredView>
16  return (Panel1->phi() < Panel2->phi());
17 }
18 
19 template <class FilteredView>
21  std::vector<GeometricDet const*>::iterator begin, std::vector<GeometricDet const*>::iterator end) {
22  // first sort in phi, lowest first (-pi to +pi)
23  std::sort(begin, end, PhiSort);
24 
25  // now put positive phi (in order) ahead of negative phi as in std geometry
26  std::vector<const GeometricDet*> theCompsPosNeg;
27  // also find the average radius (used to split inner and outer disk panels)
28  double theRmin = (**begin).rho();
29  double theRmax = theRmin;
30  for (vector<const GeometricDet*>::const_iterator it = begin; it != end; it++) {
31  if ((**it).phi() >= 0)
32  theCompsPosNeg.emplace_back(*it);
33  theRmin = std::min(theRmin, (**it).rho());
34  theRmax = std::max(theRmax, (**it).rho());
35  }
36  for (vector<const GeometricDet*>::const_iterator it = begin; it != end; it++) {
37  if ((**it).phi() < 0)
38  theCompsPosNeg.emplace_back(*it);
39  }
40 
41  // now put inner disk panels first
42  // double radius_split = 0.5 * (theRmin + theRmax);
43  // force the split radius to be 100 mm to be able to deal with disks with only outer ring
44  double radius_split = 100.;
45  std::vector<const GeometricDet*> theCompsInnerOuter;
46  unsigned int num_inner = 0;
47  for (vector<const GeometricDet*>::const_iterator it = theCompsPosNeg.begin(); it != theCompsPosNeg.end(); it++) {
48  if ((**it).rho() <= radius_split) {
49  theCompsInnerOuter.emplace_back(*it);
50  num_inner++;
51  }
52  }
53 
54  for (vector<const GeometricDet*>::const_iterator it = theCompsPosNeg.begin(); it != theCompsPosNeg.end(); it++) {
55  if ((**it).rho() > radius_split)
56  theCompsInnerOuter.emplace_back(*it);
57  }
58  // std::cout << "num of inner = " << num_inner << " with radius less than " << radius_split << std::endl;
59  // now shift outer by one
60 
62  theCompsInnerOuter.begin() + num_inner, theCompsInnerOuter.begin() + num_inner + 1, theCompsInnerOuter.end());
63  std::copy(theCompsInnerOuter.begin(), theCompsInnerOuter.end(), begin);
64 }
65 
66 template <class FilteredView>
68  GeometricDet* g,
69  const std::string& s) {
70  CmsTrackerPanelBuilder<FilteredView> theCmsTrackerPanelBuilder;
71  GeometricDet* subdet = new GeometricDet(&fv,
74 
78  theCmsTrackerPanelBuilder.build(fv, subdet, s);
79  break;
80  default:
81  edm::LogError("CmsTrackerPhase2TPDiskBuilder")
82  << " ERROR - I was expecting a Panel, I got a " << ExtractStringFromDDD<FilteredView>::getString(s, &fv);
83  }
84  g->addComponent(subdet);
85 }
86 
87 template <class FilteredView>
90 
91  switch (det->components().front()->type()) {
93  PhiPosNegSplit_innerOuter(comp.begin(), comp.end());
94  break;
95  default:
96  edm::LogError("CmsTrackerPhase2TPDiskBuilder")
97  << "ERROR - wrong SubDet to sort..... " << det->components().front()->type();
98  }
99 
100  GeometricDet::GeometricDetContainer zminpanels; // Here z refers abs(z);
101  GeometricDet::GeometricDetContainer zmaxpanels; // So, zmin panel is always closer to ip.
102 
103  uint32_t totalblade = comp.size() / 2;
104  // std::cout << "pixel_disk " << pixel_disk << endl;
105 
106  zminpanels.reserve(totalblade);
107  zmaxpanels.reserve(totalblade);
108  for (uint32_t j = 0; j < totalblade; j++) {
109  if (std::abs(comp[2 * j]->translation().z()) > std::abs(comp[2 * j + 1]->translation().z())) {
110  zmaxpanels.emplace_back(det->component(2 * j));
111  zminpanels.emplace_back(det->component(2 * j + 1));
112 
113  } else if (std::abs(comp[2 * j]->translation().z()) < std::abs(comp[2 * j + 1]->translation().z())) {
114  zmaxpanels.emplace_back(det->component(2 * j + 1));
115  zminpanels.emplace_back(det->component(2 * j));
116  } else {
117  edm::LogWarning("CmsTrackerPhase2TPDiskBuilder") << "WARNING - The Z of both panels are equal! ";
118  }
119  }
120 
121  for (uint32_t fn = 0; fn < zminpanels.size(); fn++) {
122  uint32_t blade = fn + 1;
123  uint32_t panel = 1;
124  uint32_t temp = (blade << 2) | panel;
125  zminpanels[fn]->setGeographicalID(temp);
126  }
127 
128  for (uint32_t bn = 0; bn < zmaxpanels.size(); bn++) {
129  uint32_t blade = bn + 1;
130  uint32_t panel = 2;
131  uint32_t temp = (blade << 2) | panel;
132  zmaxpanels[bn]->setGeographicalID(temp);
133  }
134 
135  det->clearComponents();
136  det->addComponents(zminpanels);
137  det->addComponents(zmaxpanels);
138 }
139 
std::vector< GeometricDet * > GeometricDetContainer
Definition: GeometricDet.h:35
void sortNS(FilteredView &, GeometricDet *) override
static std::string getString(const std::string &, FilteredView *)
double phi() const
Definition: GeometricDet.h:105
void clearComponents()
Definition: GeometricDet.h:169
void PhiPosNegSplit_innerOuter(std::vector< GeometricDet const *>::iterator begin, std::vector< GeometricDet const *>::iterator end)
Log< level::Error, false > LogError
void build(FilteredView &, GeometricDet *, const std::string &) override
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:158
static bool PhiSort(const GeometricDet *Panel1, const GeometricDet *Panel2)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
GeometricDet * component(size_t index)
Definition: GeometricDet.h:154
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:34
void addComponents(GeometricDetContainer const &cont)
void buildComponent(FilteredView &, GeometricDet *, const std::string &) override
Log< level::Warning, false > LogWarning
def rotate(angle, cx=0, cy=0)
Definition: svgfig.py:705