CMS 3D CMS Logo

List of all members | Private Member Functions | Static Private Member Functions
CmsTrackerPhase1DiskBuilder Class Reference

#include <CmsTrackerPhase1DiskBuilder.h>

Inheritance diagram for CmsTrackerPhase1DiskBuilder:
CmsTrackerLevelBuilder CmsTrackerAbstractConstruction

Private Member Functions

void buildComponent (DDFilteredView &, GeometricDet *, std::string) override
 
void PhiPosNegSplit_innerOuter (std::vector< GeometricDet const * >::iterator begin, std::vector< GeometricDet const * >::iterator end)
 
void sortNS (DDFilteredView &, GeometricDet *) override
 

Static Private Member Functions

static bool PhiSort (const GeometricDet *Panel1, const GeometricDet *Panel2)
 

Additional Inherited Members

- Public Member Functions inherited from CmsTrackerLevelBuilder
void build (DDFilteredView &, GeometricDet *, std::string) override
 
 ~CmsTrackerLevelBuilder () override
 
- Public Member Functions inherited from CmsTrackerAbstractConstruction
virtual ~CmsTrackerAbstractConstruction ()=default
 
- Static Public Member Functions inherited from CmsTrackerLevelBuilder
static double getPhi (const GeometricDet *a)
 
static double getPhiGluedModule (const GeometricDet *a)
 
static double getPhiGluedModuleMirror (const GeometricDet *a)
 
static double getPhiMirror (const GeometricDet *a)
 
static double getPhiModule (const GeometricDet *a)
 
static double getPhiModuleMirror (const GeometricDet *a)
 
static bool isLessModZ (const GeometricDet *a, const GeometricDet *b)
 
static bool isLessR (const GeometricDet *a, const GeometricDet *b)
 
static bool isLessRModule (const GeometricDet *a, const GeometricDet *b)
 
static bool isLessZ (const GeometricDet *a, const GeometricDet *b)
 
static bool phiSortNP (const GeometricDet *a, const GeometricDet *b)
 
static bool subDetByType (const GeometricDet *a, const GeometricDet *b)
 
- Protected Attributes inherited from CmsTrackerLevelBuilder
CmsTrackerStringToEnum theCmsTrackerStringToEnum
 

Detailed Description

Class which contructs PixelForward/Disk.

Definition at line 11 of file CmsTrackerPhase1DiskBuilder.h.

Member Function Documentation

void CmsTrackerPhase1DiskBuilder::buildComponent ( DDFilteredView fv,
GeometricDet g,
std::string  s 
)
overrideprivatevirtual

Implements CmsTrackerLevelBuilder.

Definition at line 70 of file CmsTrackerPhase1DiskBuilder.cc.

References GeometricDet::addComponent(), CmsTrackerLevelBuilder::build(), ExtractStringFromDDD::getString(), and GeometricDet::panel.

71 {
72  CmsTrackerPanelBuilder theCmsTrackerPanelBuilder;
74 
76  {
78  theCmsTrackerPanelBuilder.build( fv, subdet, s );
79  break;
80  default:
81  edm::LogError( "CmsTrackerPhase1DiskBuilder" ) << " ERROR - I was expecting a Panel, I got a " << ExtractStringFromDDD::getString( s, &fv );
82  }
83  g->addComponent( subdet );
84 }
void addComponent(GeometricDet *)
void build(DDFilteredView &, GeometricDet *, std::string) override
static std::string getString(std::string const &, DDFilteredView *)
GeometricDet::GeometricEnumType type(std::string const &) const
CmsTrackerStringToEnum theCmsTrackerStringToEnum
void CmsTrackerPhase1DiskBuilder::PhiPosNegSplit_innerOuter ( std::vector< GeometricDet const * >::iterator  begin,
std::vector< GeometricDet const * >::iterator  end 
)
private

Definition at line 21 of file CmsTrackerPhase1DiskBuilder.cc.

References begin, popcon2dropbox::copy(), end, SiStripPI::max, min(), and svgfig::rotate().

23 {
24  // first sort in phi, lowest first (-pi to +pi)
25  std::sort( begin, end, PhiSort );
26 
27  // now put positive phi (in order) ahead of negative phi as in std geometry
28  std::vector<const GeometricDet*> theCompsPosNeg;
29  // also find the average radius (used to split inner and outer disk panels)
30  double theRmin = (**begin).rho();
31  double theRmax = theRmin;
32  for(vector<const GeometricDet*>::const_iterator it=begin;
33  it!=end;it++){
34  if((**it).phi() >= 0) theCompsPosNeg.emplace_back(*it);
35  theRmin = std::min( theRmin, (**it).rho());
36  theRmax = std::max( theRmax, (**it).rho());
37  }
38  for(vector<const GeometricDet*>::const_iterator it=begin;
39  it!=end;it++){
40  if((**it).phi() < 0) theCompsPosNeg.emplace_back(*it);
41  }
42 
43  // now put inner disk panels first
44  // double radius_split = 0.5 * (theRmin + theRmax);
45  // force the split radius to be 100 mm to be able to deal with disks with only outer ring
46  double radius_split = 100.;
47  std::vector<const GeometricDet*> theCompsInnerOuter;
48  unsigned int num_inner = 0;
49  for(vector<const GeometricDet*>::const_iterator it=theCompsPosNeg.begin();
50  it!=theCompsPosNeg.end();it++){
51  if((**it).rho() <= radius_split) {
52  theCompsInnerOuter.emplace_back(*it);
53  num_inner++;
54  }
55  }
56 
57  for(vector<const GeometricDet*>::const_iterator it=theCompsPosNeg.begin();
58  it!=theCompsPosNeg.end();it++){
59  if((**it).rho() > radius_split) theCompsInnerOuter.emplace_back(*it);
60  }
61  // std::cout << "num of inner = " << num_inner << " with radius less than " << radius_split << std::endl;
62  // now shift outer by one
63 
64  std::rotate(theCompsInnerOuter.begin()+num_inner,theCompsInnerOuter.end()-1,theCompsInnerOuter.end());
65  std::rotate(theCompsInnerOuter.begin(),theCompsInnerOuter.begin()+num_inner-1,theCompsInnerOuter.begin()+num_inner);
66  std::copy(theCompsInnerOuter.begin(), theCompsInnerOuter.end(), begin);
67 }
def copy(args, dbName)
#define end
Definition: vmac.h:39
T min(T a, T b)
Definition: MathUtil.h:58
static bool PhiSort(const GeometricDet *Panel1, const GeometricDet *Panel2)
#define begin
Definition: vmac.h:32
def rotate(angle, cx=0, cy=0)
Definition: svgfig.py:705
bool CmsTrackerPhase1DiskBuilder::PhiSort ( const GeometricDet Panel1,
const GeometricDet Panel2 
)
staticprivate

Definition at line 15 of file CmsTrackerPhase1DiskBuilder.cc.

References GeometricDet::phi().

16 {
17  return( Panel1->phi() < Panel2->phi());
18 }
double phi() const
Definition: GeometricDet.h:129
void CmsTrackerPhase1DiskBuilder::sortNS ( DDFilteredView fv,
GeometricDet det 
)
overrideprivatevirtual

Reimplemented from CmsTrackerLevelBuilder.

Definition at line 87 of file CmsTrackerPhase1DiskBuilder.cc.

References funct::abs(), GeometricDet::addComponents(), GeometricDet::clearComponents(), AlCaHLTBitMon_QueryRunRegistry::comp, GeometricDet::component(), GeometricDet::components(), GeometricDet::panel, and groupFilesInBlocks::temp.

88 {
89 
90 
92 
93  switch( det->components().front()->type())
94  {
96  PhiPosNegSplit_innerOuter( comp.begin(), comp.end());
97  break;
98  default:
99  edm::LogError( "CmsTrackerPhase1DiskBuilder" ) << "ERROR - wrong SubDet to sort..... " << det->components().front()->type();
100  }
101 
102  GeometricDet::GeometricDetContainer zminpanels; // Here z refers abs(z);
103  GeometricDet::GeometricDetContainer zmaxpanels; // So, zmin panel is always closer to ip.
104 
105  uint32_t totalblade = comp.size()/2;
106  // std::cout << "pixel_disk " << pixel_disk << endl;
107 
108  zminpanels.reserve( totalblade );
109  zmaxpanels.reserve( totalblade );
110  for( uint32_t j = 0; j < totalblade; j++ )
111  {
112  if( std::abs( comp[2*j]->translation().z()) > std::abs( comp[ 2*j +1 ]->translation().z()))
113  {
114  zmaxpanels.emplace_back( det->component(2*j) );
115  zminpanels.emplace_back( det->component(2*j+1) );
116 
117  }
118  else if( std::abs( comp[2*j]->translation().z()) < std::abs( comp[ 2*j +1 ]->translation().z()))
119  {
120  zmaxpanels.emplace_back( det->component(2*j+1) );
121  zminpanels.emplace_back( det->component(2*j) );
122  }
123  else
124  {
125  edm::LogWarning( "CmsTrackerPhase1DiskBuilder" ) << "WARNING - The Z of both panels are equal! ";
126  }
127  }
128 
129  for( uint32_t fn = 0; fn < zminpanels.size(); fn++ )
130  {
131  uint32_t blade = fn + 1;
132  uint32_t panel = 2; // though being zmin, it is actually the one facing away the ip
133  uint32_t temp = ( blade << 2 ) | panel;
134  zminpanels[fn]->setGeographicalID( temp );
135  }
136 
137  for( uint32_t bn = 0; bn < zmaxpanels.size(); bn++)
138  {
139  uint32_t blade = bn + 1;
140  uint32_t panel = 1; // though being zmax, it is the one facing the ip
141  uint32_t temp = ( blade << 2) | panel;
142  zmaxpanels[bn]->setGeographicalID( temp );
143  }
144 
145  det->clearComponents();
146  det->addComponents( zminpanels );
147  det->addComponents( zmaxpanels );
148 
149 }
void clearComponents()
Definition: GeometricDet.h:98
std::vector< GeometricDet * > GeometricDetContainer
Definition: GeometricDet.h:37
ConstGeometricDetContainer & components()
Definition: GeometricDet.h:176
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
GeometricDet * component(size_t index)
Definition: GeometricDet.h:114
std::vector< GeometricDet const * > ConstGeometricDetContainer
Definition: GeometricDet.h:36
void addComponents(GeometricDetContainer const &cont)
void PhiPosNegSplit_innerOuter(std::vector< GeometricDet const * >::iterator begin, std::vector< GeometricDet const * >::iterator end)