CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalTBHodoscopeGeometryLoaderFromDDD.cc
Go to the documentation of this file.
2 
5 
13 //#include "DetectorDescription/Core/interface/DDInit.h"
14 
16 
17 #include <iostream>
18 #include <vector>
19 
20 std::auto_ptr<CaloSubdetectorGeometry>
22 {
23  std::cout << "[EcalTBHodoscopeGeometryLoaderFromDDD]:: start the construction of EcalTBHodoscope" << std::endl;
24 
25  std::auto_ptr<CaloSubdetectorGeometry> ebg
26  ( new EcalTBHodoscopeGeometry() ) ;
27 
28  makeGeometry( cpv, ebg.get() ) ;
29 
30  std::cout << "[EcalTBHodoscopeGeometryLoaderFromDDD]:: Returning EcalTBHodoscopeGeometry" << std::endl;
31 
32  return ebg;
33 }
34 
35 void
37  const DDCompactView* cpv ,
39 {
41  if( ebg->parMgr() == 0 ) ebg->allocatePar( 10, 3 ) ;
42 
44 
45  DDFilteredView fv(*cpv);
46  fv.addFilter(*filter);
47 
48  bool doSubDets;
49  for (doSubDets = fv.firstChild(); doSubDets ; doSubDets = fv.nextSibling())
50  {
51 
52 #if 0
53  std::string answer = getDDDString("ReadOutName",&fv);
54  if (answer != "EcalTBH4BeamHits")
55  continue;
56 #endif
57 
58  const DDSolid & solid = fv.logicalPart().solid();
59 
60  if( solid.shape() != ddbox )
61  {
62  throw cms::Exception("DDException") << std::string(__FILE__)
63  << "\n CaloGeometryEcalTBHodoscope::upDate(...): currently only box fiber shapes supported ";
64  edm::LogWarning("EcalTBHodoscopeGeometry") << "Wrong shape for sensitive volume!" << solid;
65  }
66 
67  std::vector<double> pv = solid.parameters();
68 
69  // use preshower strip as box in space representation
70 
71  // rotate the box and then move it
72  DD3Vector x, y, z;
73  fv.rotation().GetComponents(x,y,z);
74  CLHEP::Hep3Vector hx(x.X(), x.Y(), x.Z());
75  CLHEP::Hep3Vector hy(y.X(), y.Y(), y.Z());
76  CLHEP::Hep3Vector hz(z.X(), z.Y(), z.Z());
77  CLHEP::HepRotation hrot(hx, hy, hz);
78  CLHEP::Hep3Vector htran ( fv.translation().X(),
79  fv.translation().Y(),
80  fv.translation().Z() );
81 
82  const HepGeom::Transform3D ht3d ( hrot, // only scale translation
84 
85  const HepGeom::Point3D<float> ctr (
86  ht3d*HepGeom::Point3D<float> (0,0,0) ) ;
87 
88  const GlobalPoint refPoint ( ctr.x(), ctr.y(), ctr.z() ) ;
89 
90  std::vector<CCGFloat> vv ;
91  vv.reserve( pv.size() + 1 ) ;
92  for( unsigned int i ( 0 ) ; i != pv.size() ; ++i )
93  {
94  vv.push_back( CaloCellGeometry::k_ScaleFromDDDtoGeant*pv[i] ) ;
95  }
96  vv.push_back( 0. ) ; // tilt=0 here
97  const CCGFloat* pP ( CaloCellGeometry::getParmPtr( vv,
98  ebg->parMgr(),
99  ebg->parVecVec() ) ) ;
100 
101  const DetId detId ( getDetIdForDDDNode(fv) ) ;
102 
103  //Adding cell to the Geometry
104 
105  ebg->newCell( refPoint, refPoint, refPoint,
106  pP,
107  detId ) ;
108  } // loop over all children
109 }
110 
111 unsigned int
113  const DDFilteredView &fv )
114 {
115  // perform some consistency checks
116  // get the parents and grandparents of this node
118 
119  assert(parents.size() >= 3);
120 
121  EcalBaseNumber baseNumber;
122  //baseNumber.setSize(parents.size());
123 
124  for( unsigned int i=1 ;i <= parents.size(); i++)
125  {
126  baseNumber.addLevel( parents[ parents.size() - i ].logicalPart().name().name(),
127  parents[ parents.size() - i ].copyno() ) ;
128  }
129 
130  return _scheme.getUnitID( baseNumber ) ;
131 }
132 
134 {
136 
137  filter->setCriteria( DDValue( "SensitiveDetector",
138  "EcalTBH4BeamDetector",
139  0 ),
142  true,
143  true ) ;
144 
145  filter->setCriteria( DDValue( "ReadOutName",
146  "EcalTBH4BeamHits",
147  0 ),
150  true,
151  true ) ;
152  return filter;
153 }
answer
Definition: submit.py:44
int i
Definition: DBlmapReader.cc:9
const std::vector< double > & parameters(void) const
Give the parameters of the solid.
Definition: DDSolid.cc:150
const DDLogicalPart & logicalPart() const
The logical-part of the current node in the filtered-view.
void addFilter(const DDFilter &, log_op op=AND)
TPRegexp parents
Definition: eve_filter.cc:24
std::auto_ptr< CaloSubdetectorGeometry > load(const DDCompactView *cpv)
virtual void newCell(const GlobalPoint &f1, const GlobalPoint &f2, const GlobalPoint &f3, const CCGFloat *parm, const DetId &detId)=0
bool nextSibling()
set the current node to the next sibling ...
const DDRotationMatrix & rotation() const
The absolute rotation of the current node.
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
type of data representation of DDCompactView
Definition: DDCompactView.h:77
const DDGeoHistory & geoHistory() const
The list of ancestors up to the root-node of the current node.
void allocatePar(ParVec::size_type n, unsigned int m)
double double double z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
std::string getDDDString(std::string s, DDFilteredView *fv)
void addLevel(const std::string &name, const int &copyNumber)
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DD3Vector
A DD Translation is currently implemented with Root Vector3D.
Definition: DDTranslation.h:6
CaloCellGeometry::CCGFloat CCGFloat
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:144
static const CCGFloat * getParmPtr(const std::vector< CCGFloat > &vd, ParMgr *mgr, ParVecVec &pvv)
static const CCGFloat k_ScaleFromDDDtoGeant
std::vector< DDExpandedNode > DDGeoHistory
Geometrical &#39;path&#39; of the current node up to the root-node.
Definition: DetId.h:20
CaloCellGeometry::CornersMgr * cornersMgr()
virtual uint32_t getUnitID(const EcalBaseNumber &baseNumber) const
bool firstChild()
set the current node to the first child ...
unsigned int getDetIdForDDDNode(const DDFilteredView &fv)
A Filter accepts or rejects a DDExpandedNode based on a user-coded decision rule. ...
Definition: DDFilter.h:18
void setCriteria(const DDValue &nameVal, comp_op, log_op l=AND, bool asString=true, bool merged=true)
Definition: DDFilter.cc:285
void allocateCorners(CaloCellGeometry::CornersVec::size_type n)
tuple cout
Definition: gather_cfg.py:121
const DDTranslation & translation() const
The absolute translation of the current node.
x
Definition: VDTMath.h:216
void makeGeometry(const DDCompactView *cpv, CaloSubdetectorGeometry *ebg)
The DDGenericFilter is a runtime-parametrized Filter looking on DDSpecifcs.
Definition: DDFilter.h:37