CMS 3D CMS Logo

CastorHardcodeGeometryLoader.cc
Go to the documentation of this file.
7 #include <algorithm>
8 #include <utility>
9 
11 
13  theTopology ( new CastorTopology ) ,
14  extTopology ( theTopology )
15 {
16  init();
17 }
18 
20  theTopology( nullptr ) ,
21  extTopology ( &ht )
22 {
23  init();
24 }
25 
27 {
30  theEMSectiondZ = 101.0;
33  theHADSectiondZ = 1212.;
34 }
35 
36 std::unique_ptr<CaloSubdetectorGeometry>
38  int subdet)
39 {
40  std::unique_ptr<CaloSubdetectorGeometry> hg(new CastorGeometry( extTopology ));
41  if( subdet == HcalCastorDetId::SubdetectorId )
42  {
43  fill( HcalCastorDetId::EM, hg.get() ) ;
44  fill( HcalCastorDetId::HAD, hg.get() ) ;
45  }
46  return std::move(hg);
47 }
48 
49 std::unique_ptr<CaloSubdetectorGeometry>
51 {
52  std::unique_ptr<CaloSubdetectorGeometry> hg
53  ( new CastorGeometry( extTopology ) ) ;
54  fill( HcalCastorDetId::EM, hg.get() ) ;
55  fill( HcalCastorDetId::HAD, hg.get() ) ;
56  return std::move(hg);
57 }
58 
59 void
62 {
63  if( geom->cornersMgr() == nullptr ) geom->allocateCorners(
65  if( geom->parMgr() == nullptr ) geom->allocatePar(
68  CastorGeometry::k_NumberOfParametersPerShape ) ;
69 
70  // start by making the new HcalDetIds
71  std::vector<HcalCastorDetId> castorIds ;
72 
73  const int firstCell ( extTopology->firstCell( section ) ) ;
74  const int lastCell ( extTopology->lastCell( section ) );
75 
76  for( int imodule ( firstCell ) ; imodule <= lastCell ; ++imodule )
77  {
78  for( int isector ( 1 ) ;
79  isector <= HcalCastorDetId::kNumberSectorsPerEnd ; ++isector )
80  {
81  const HcalCastorDetId id ( section, false, isector, imodule ) ;
82  if( extTopology->valid( id ) ) castorIds.emplace_back( id ) ;
83  }
84  }
85 // edm::LogInfo("CastorHardcodeGeometry")
86 // << "Number of Castor DetIds made: " << section
87 // << " " << castorIds.size();
88 
89  // for each new HcalCastorDetId, make a CaloCellGeometry
90 
91  for( std::vector<HcalCastorDetId>::const_iterator
92  castorIdItr ( castorIds.begin() ) ;
93  castorIdItr != castorIds.end() ; ++castorIdItr )
94  {
95  makeCell( *castorIdItr, geom ) ;
96  }
97 }
98 
99 void
101  CaloSubdetectorGeometry* geom ) const
102 {
103  const double zside ( 1.0*detId.zside() ) ;
104  const HcalCastorDetId::Section section ( detId.section() ) ;
105  const int module ( detId.module() ) ;
106  const int isect ( detId.sector() ) ;
107  const double sector ( 1.0*isect ) ;
108 
109 // length units are cm
110 
111 
112  const double sign ( 0 == isect%2 ? -1 : 1 ) ;
113 
114 //********* HERE ARE HARDWIRED GEOMETRY NUMBERS ACTUALLY USED *****
115 
116  static const double an ( atan( 1.)); //angle of cant w.r.t. beam
117  static const double can ( cos( an ));
118  static const double san ( sin( an ));
119  static const double dxlEM ( 1.55/2. ) ; //halflength of side near beam
120  static const double dxhEM ( 5.73/2. ) ; //halflength of side away from beam
121  static const double dhEM ( 14.26/2. ); //halflength of 2nd longest side
122  static const double dR ( 0.1 + 2.*dhEM*san*dxlEM/( dxhEM-dxlEM ) ) ;
123  static const double dhHAD ( 19.88/2. ); //halflength of 2nd longest side
124 
125  static const double dxhHAD ( dxhEM*( 2.*dhHAD*san + dR )/
126  ( 2.*dhEM*san + dR ) ) ; //halflength of side away from beam
127  static const double zm ( 1439.0 ) ; //z of start of EM
128  static const double dzEM ( 5.45/2 ) ; // halflength in z of EM
129  static const double dzHAD ( 10.075/2 ) ; // halflength in z of HAD
130 
131 //*****************************************************************
132 
133  const double dxl ( sign*dxlEM ) ; // same for EM and HAD
134 
135  const double dxh ( sign*( section == HcalCastorDetId::EM ?
136  dxhEM : dxhHAD ) ) ;
137  const double dh ( section == HcalCastorDetId::EM ?
138  dhEM : dhHAD ) ;
139  const double dz ( section == HcalCastorDetId::EM ?
140  dzEM : dzHAD ) ;
141 
142  const double delz ( dh*can ) ;
143  const double dy ( dh*san ) ;
144  const double dx ( ( dxl + dxh )/2. ) ;
145  const double leg ( dR + dy ) ;
146  const double len ( sqrt( leg*leg + dx*dx ) ) ;
147 
148  static const double dphi
150 
151  const double fphi ( atan( dx/( dR + dy ) ) ) ;
152 
153  const double phi ( 0==isect%2 ? (sector-1.)*dphi - fphi :
154  sector*dphi - fphi ) ;
155 
156  const double sphi ( sin( phi ) ) ;
157  const double cphi ( cos( phi ) ) ;
158 
159  const double xc ( len*cphi ) ;
160  const double yc ( len*sphi ) ;
161  const double zc ( zside*( zm + delz +
162  ( module<3 ? ( 1.*module - 1.0 )*2.*dzEM :
163  4.*dzEM + ( 1.*(module-2) - 1 )*2.*dzHAD ) ) ) ;
164 
165  const GlobalPoint fc ( xc, yc, zc ) ;
166 
167  std::vector<CCGFloat> zz ;
169  zz.emplace_back( dxl ) ;
170  zz.emplace_back( dxh ) ;
171  zz.emplace_back( dh ) ;
172  zz.emplace_back( dz ) ;
173  zz.emplace_back( an ) ;
174  zz.emplace_back( dR ) ;
175 
176  geom->newCell( fc, fc, fc,
178  geom->parMgr(),
179  geom->parVecVec() ),
180  detId ) ;
181 }
182 
183 
int sector() const
get the sector (1-16)
virtual void newCell(const GlobalPoint &f1, const GlobalPoint &f2, const GlobalPoint &f3, const CCGFloat *parm, const DetId &detId)=0
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
CaloCellGeometry::CCGFloat CCGFloat
int module() const
get the module (1-2 for EM, 1-12 for HAD)
int zside(DetId const &)
#define nullptr
void makeCell(const HcalCastorDetId &detId, CaloSubdetectorGeometry *geom) const
Section section() const
get the section
void allocatePar(ParVec::size_type n, unsigned int m)
static const double dYHADPlate
void fill(HcalCastorDetId::Section section, CaloSubdetectorGeometry *cg)
T sqrt(T t)
Definition: SSEVec.h:18
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
int zside() const
get the z-side of the cell (1/-1)
static const double dXHADPlate
static const CCGFloat * getParmPtr(const std::vector< CCGFloat > &vd, ParMgr *mgr, ParVecVec &pvv)
static const int SubdetectorId
#define M_PI
virtual bool valid(const HcalCastorDetId &id) const
std::unique_ptr< CaloSubdetectorGeometry > load()
static const double dYEMPlate
CaloCellGeometry::CornersMgr * cornersMgr()
Detector
Definition: DetId.h:26
static const double dXEMPlate
int firstCell(HcalCastorDetId::Section section) const
void allocateCorners(CaloCellGeometry::CornersVec::size_type n)
int lastCell(HcalCastorDetId::Section section) const
dh
Definition: cuy.py:354
Definition: vlib.h:208
def move(src, dest)
Definition: eostools.py:510