CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
FlatTrd Class Reference

A base class to handle the particular shape of HGCal volumes. More...

#include <FlatTrd.h>

Inheritance diagram for FlatTrd:
CaloCellGeometry CaloCellGeometryHGCALAdapter

Public Types

typedef CaloCellGeometry::CCGFloat CCGFloat
 
typedef CaloCellGeometry::Pt3D Pt3D
 
typedef CaloCellGeometry::Pt3DVec Pt3DVec
 
typedef CaloCellGeometry::Tr3D Tr3D
 
- Public Types inherited from CaloCellGeometry
typedef float CCGFloat
 
typedef EZMgrFL< GlobalPointCornersMgr
 
typedef EZArrayFL< GlobalPointCornersVec
 
typedef EZMgrFL< CCGFloatParMgr
 
typedef EZArrayFL< CCGFloatParVec
 
typedef std::vector< ParVecParVecVec
 
typedef HepGeom::Point3D< CCGFloatPt3D
 
typedef std::vector< Pt3DPt3DVec
 
using RepCorners = std::array< RhoEtaPhi, k_cornerSize >
 
typedef HepGeom::Transform3D Tr3D
 

Public Member Functions

const GlobalVectoraxis () const
 
virtual float etaPos () const
 
 FlatTrd (void)
 
 FlatTrd (const FlatTrd &tr)
 
 FlatTrd (CornersMgr *cMgr, const GlobalPoint &fCtr, const GlobalPoint &bCtr, const GlobalPoint &cor1, const CCGFloat *parV)
 
 FlatTrd (const CornersVec &corn, const CCGFloat *par)
 
 FlatTrd (const FlatTrd &tr, const Pt3D &local)
 
Pt3D getLocal (const GlobalPoint &global) const
 
CCGFloat getPhiAxis () const
 
const GlobalPointgetPosition () const override
 Returns the position of reference for this cell. More...
 
GlobalPoint getPosition (const Pt3D &local) const
 
CCGFloat getThetaAxis () const
 
void getTransform (Tr3D &tr, Pt3DVec *lptr) const override
 --------— only needed by specific utility; overloaded when needed -— More...
 
FlatTrdoperator= (const FlatTrd &tr)
 
virtual float phiPos () const
 
void vocalCorners (Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref) const override
 
 ~FlatTrd () override
 
- Public Member Functions inherited from CaloCellGeometry
bool emptyCorners () const
 
float etaPos () const
 
float etaSpan () const
 
const GlobalPointgetBackPoint () const
 
CornersVec const & getCorners () const
 Returns the corner points of this cell's volume. More...
 
RepCorners const & getCornersREP () const
 
bool inside (const GlobalPoint &point) const
 Returns true if the specified point is inside this cell. More...
 
const CCGFloatparam () const
 
float phiPos () const
 
float phiSpan () const
 
RhoEtaPhi const & repPos () const
 
float rhoPos () const
 
virtual ~CaloCellGeometry ()
 

Static Public Member Functions

static void createCorners (const std::vector< CCGFloat > &pv, const Tr3D &tr, std::vector< GlobalPoint > &co)
 
static void localCorners (Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref)
 
- Static Public Member Functions inherited from CaloCellGeometry
static const CCGFloatcheckParmPtr (const std::vector< CCGFloat > &vd, ParVecVec &pvv)
 
static const CCGFloatgetParmPtr (const std::vector< CCGFloat > &vd, ParMgr *mgr, ParVecVec &pvv)
 

Private Member Functions

const GlobalPoint backCtr (void) const
 
void initCorners (CornersVec &) override
 
GlobalVector makeAxis (void)
 

Private Attributes

GlobalVector m_axis
 
Pt3D m_corOne
 
GlobalPoint m_global
 
Pt3D m_local
 
Tr3D m_tr
 

Additional Inherited Members

- Static Public Attributes inherited from CaloCellGeometry
static constexpr unsigned int k_cornerSize = 8
 
static const CCGFloat k_ScaleFromDDDtoGeant
 
- Protected Member Functions inherited from CaloCellGeometry
 CaloCellGeometry (CornersVec::const_reference gp, CornersMgr *mgr, const CCGFloat *par)
 
 CaloCellGeometry (const CornersVec &cv, const CCGFloat *par)
 
 CaloCellGeometry (void)
 
void initSpan ()
 

Detailed Description

A base class to handle the particular shape of HGCal volumes.

Definition at line 19 of file FlatTrd.h.

Member Typedef Documentation

Definition at line 22 of file FlatTrd.h.

Definition at line 23 of file FlatTrd.h.

Definition at line 24 of file FlatTrd.h.

Definition at line 25 of file FlatTrd.h.

Constructor & Destructor Documentation

FlatTrd::FlatTrd ( void  )

Definition at line 22 of file FlatTrd.cc.

22  : CaloCellGeometry(), m_axis ( 0., 0., 0. ),
23  m_corOne ( 0., 0., 0. ), m_local (0., 0., 0.),
24  m_global ( 0., 0., 0. ) {
25 }
Pt3D m_local
Definition: FlatTrd.h:82
Pt3D m_corOne
Definition: FlatTrd.h:82
GlobalPoint m_global
Definition: FlatTrd.h:83
GlobalVector m_axis
Definition: FlatTrd.h:81
FlatTrd::FlatTrd ( const FlatTrd tr)

Definition at line 27 of file FlatTrd.cc.

27  : CaloCellGeometry( tr ) {
28  *this = tr ;
29 }
FlatTrd::FlatTrd ( CornersMgr cMgr,
const GlobalPoint fCtr,
const GlobalPoint bCtr,
const GlobalPoint cor1,
const CCGFloat parV 
)

Definition at line 48 of file FlatTrd.cc.

References gather_cfg::cout, etaPos(), getTransform(), glb, m_global, m_local, m_tr, and phiPos().

53  :
54  CaloCellGeometry ( fCtr, cMgr, parV ) ,
55  m_axis ( ( bCtr - fCtr ).unit() ) ,
56  m_corOne ( cor1.x(), cor1.y(), cor1.z() ),
57  m_local (0., 0., 0.) {
58  getTransform(m_tr,nullptr);
59  Pt3D glb = m_tr*m_local;
60  m_global = GlobalPoint(glb.x(),glb.y(),glb.z());
61 #ifdef DebugLog
62  std::cout << "FlatTrd: Local " << m_local << " Global " << glb << " eta "
63  << etaPos() << " phi " << phiPos() << " Translation "
64  << m_tr.getTranslation() << " and rotation " << m_tr.getRotation();
65 #endif
66 }
double glb
Definition: hdecay.h:105
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
T y() const
Definition: PV3DBase.h:63
Tr3D m_tr
Definition: FlatTrd.h:84
Pt3D m_local
Definition: FlatTrd.h:82
T z() const
Definition: PV3DBase.h:64
Pt3D m_corOne
Definition: FlatTrd.h:82
void getTransform(Tr3D &tr, Pt3DVec *lptr) const override
--------— only needed by specific utility; overloaded when needed -—
Definition: FlatTrd.cc:194
CaloCellGeometry::Pt3D Pt3D
GlobalPoint m_global
Definition: FlatTrd.h:83
virtual float phiPos() const
Definition: FlatTrd.h:49
virtual float etaPos() const
Definition: FlatTrd.h:48
T x() const
Definition: PV3DBase.h:62
GlobalVector m_axis
Definition: FlatTrd.h:81
FlatTrd::FlatTrd ( const CornersVec corn,
const CCGFloat par 
)

Definition at line 68 of file FlatTrd.cc.

References gather_cfg::cout, etaPos(), getTransform(), glb, m_axis, m_global, m_local, m_tr, makeAxis(), and phiPos().

69  :
70  CaloCellGeometry ( corn, par ) ,
71  m_corOne ( corn[0].x(), corn[0].y(), corn[0].z() ),
72  m_local (0., 0., 0.) {
73  getTransform(m_tr,nullptr);
74  m_axis = makeAxis();
75  Pt3D glb = m_tr*m_local;
76  m_global = GlobalPoint(glb.x(),glb.y(),glb.z());
77 #ifdef DebugLog
78  std::cout << "FlatTrd: Local " << m_local << " Global " << glb << " eta "
79  << etaPos() << " phi " << phiPos() << " Translation "
80  << m_tr.getTranslation() << " and rotation " << m_tr.getRotation();
81 #endif
82 }
double glb
Definition: hdecay.h:105
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
Tr3D m_tr
Definition: FlatTrd.h:84
Pt3D m_local
Definition: FlatTrd.h:82
Pt3D m_corOne
Definition: FlatTrd.h:82
void getTransform(Tr3D &tr, Pt3DVec *lptr) const override
--------— only needed by specific utility; overloaded when needed -—
Definition: FlatTrd.cc:194
CaloCellGeometry::Pt3D Pt3D
GlobalVector makeAxis(void)
Definition: FlatTrd.cc:254
GlobalPoint m_global
Definition: FlatTrd.h:83
virtual float phiPos() const
Definition: FlatTrd.h:49
virtual float etaPos() const
Definition: FlatTrd.h:48
GlobalVector m_axis
Definition: FlatTrd.h:81
FlatTrd::FlatTrd ( const FlatTrd tr,
const Pt3D local 
)

Definition at line 84 of file FlatTrd.cc.

References gather_cfg::cout, etaPos(), glb, m_global, m_local, m_tr, and phiPos().

84  :
86  *this = tr;
87  Pt3D glb = m_tr*m_local;
88  m_global = GlobalPoint(glb.x(),glb.y(),glb.z());
89 #ifdef DebugLog
90  std::cout << "FlatTrd: Local " << m_local << " Global " << glb << " eta "
91  << etaPos() << " phi " << phiPos() << " Translation "
92  << m_tr.getTranslation() << " and rotation " << m_tr.getRotation();
93 #endif
94 }
double glb
Definition: hdecay.h:105
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
Tr3D m_tr
Definition: FlatTrd.h:84
Pt3D m_local
Definition: FlatTrd.h:82
CaloCellGeometry::Pt3D Pt3D
GlobalPoint m_global
Definition: FlatTrd.h:83
virtual float phiPos() const
Definition: FlatTrd.h:49
virtual float etaPos() const
Definition: FlatTrd.h:48
FlatTrd::~FlatTrd ( )
override

Definition at line 96 of file FlatTrd.cc.

96 {}

Member Function Documentation

const GlobalVector & FlatTrd::axis ( ) const

Definition at line 130 of file FlatTrd.cc.

References m_axis.

Referenced by getTransform(), and phiPos().

130  {
131  return m_axis ;
132 }
GlobalVector m_axis
Definition: FlatTrd.h:81
const GlobalPoint FlatTrd::backCtr ( void  ) const
private

Definition at line 258 of file FlatTrd.cc.

References PVValHelper::dz, CaloCellGeometry::getCorners(), m_local, m_tr, and CaloCellGeometry::param().

Referenced by makeAxis(), and phiPos().

258  {
259  float dz = (getCorners()[4].z() > getCorners()[0].z()) ?
260  param()[0] : -param()[0];
261  Pt3D local_b(m_local.x(),m_local.y(),m_local.z()+dz);
262  Pt3D global_b = m_tr*local_b;
263  GlobalPoint global(global_b.x(),global_b.y(),global_b.z());
264  return global;
265 }
Tr3D m_tr
Definition: FlatTrd.h:84
const CCGFloat * param() const
Pt3D m_local
Definition: FlatTrd.h:82
CaloCellGeometry::Pt3D Pt3D
CornersVec const & getCorners() const
Returns the corner points of this cell&#39;s volume.
void FlatTrd::createCorners ( const std::vector< CCGFloat > &  pv,
const Tr3D tr,
std::vector< GlobalPoint > &  co 
)
static

Definition at line 140 of file FlatTrd.cc.

References gather_cfg::cout, mps_fire::i, localCorners(), AlCaHLTBitMon_ParallelJobs::p, and tmp.

Referenced by FastTimeGeometryLoader::buildGeom(), HGCalGeometryLoader::buildGeom(), phiPos(), and CaloGeometryDBEP< T, U >::produceAligned().

142  {
143 
144  assert( 11 <= pv.size() ) ;
145  assert( 8 == co.size() ) ;
146 
147  Pt3DVec ko ( 8, Pt3D(0,0,0) ) ;
148 
149  Pt3D tmp ;
150  Pt3DVec to ( 8, Pt3D(0,0,0) ) ;
151  localCorners( to, &pv.front(), tmp ) ;
152 
153  for( unsigned int i ( 0 ) ; i != 8 ; ++i ) {
154  ko[i] = tr * to[i] ; // apply transformation
155  const Pt3D & p ( ko[i] ) ;
156  co[ i ] = GlobalPoint( p.x(), p.y(), p.z() ) ;
157 #ifdef DebugLog
158  std::cout << "Corner[" << i << "] = " << co[i] << std::endl;
159 #endif
160  }
161 }
CaloCellGeometry::Pt3D Pt3D
Definition: FlatTrd.h:23
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
def pv(vc)
Definition: MetAnalyzer.py:6
static void localCorners(Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref)
Definition: FlatTrd.cc:163
CaloCellGeometry::Pt3D Pt3D
CaloCellGeometry::Pt3DVec Pt3DVec
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
virtual float FlatTrd::etaPos ( ) const
inlinevirtual

Definition at line 48 of file FlatTrd.h.

References PV3DBase< T, PVType, FrameType >::eta(), and m_global.

Referenced by FlatTrd(), operator<<(), and operator=().

48 { return m_global.eta(); }
T eta() const
Definition: PV3DBase.h:76
GlobalPoint m_global
Definition: FlatTrd.h:83
Pt3D FlatTrd::getLocal ( const GlobalPoint global) const

Definition at line 112 of file FlatTrd.cc.

References gather_cfg::cout, DTRecHitQuality_cfi::local, m_tr, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by phiPos().

112  {
113  Pt3D local = m_tr.inverse()*Pt3D(global.x(),global.y(),global.z());
114 #ifdef DebugLog
115  std::cout << "FlatTrd::Global " << global.x() << ":" << global.y() << ":"
116  << global.z() << " Local " << local.x() << ":" << local.y() << ":"
117  << local.z() << std::endl;
118 #endif
119  return local;
120 }
CaloCellGeometry::Pt3D Pt3D
Definition: FlatTrd.h:23
T y() const
Definition: PV3DBase.h:63
Tr3D m_tr
Definition: FlatTrd.h:84
T z() const
Definition: PV3DBase.h:64
CaloCellGeometry::Pt3D Pt3D
T x() const
Definition: PV3DBase.h:62
CCGFloat FlatTrd::getPhiAxis ( ) const

Definition at line 126 of file FlatTrd.cc.

References m_axis, and PV3DBase< T, PVType, FrameType >::phi().

Referenced by operator<<(), and phiPos().

126  {
127  return m_axis.phi() ;
128 }
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
GlobalVector m_axis
Definition: FlatTrd.h:81
const GlobalPoint& FlatTrd::getPosition ( ) const
inlineoverridevirtual

Returns the position of reference for this cell.

Reimplemented from CaloCellGeometry.

Definition at line 46 of file FlatTrd.h.

References DTRecHitQuality_cfi::local, and m_global.

Referenced by makeAxis(), and operator<<().

46 { return m_global; }
GlobalPoint m_global
Definition: FlatTrd.h:83
GlobalPoint FlatTrd::getPosition ( const Pt3D local) const

Definition at line 98 of file FlatTrd.cc.

References gather_cfg::cout, glb, DTRecHitQuality_cfi::local, and m_tr.

98  {
99  Pt3D glb = m_tr*local;
100 #ifdef DebugLog
101  std::cout << "FlatTrd::Local " << local.x() << ":" << local.y() << ":"
102  << local.z() << " Global " << glb.x() << ":" << glb.y() << ":"
103  << glb.z() << " TR " << m_tr.xx() << ":" << m_tr.xy() << ":"
104  << m_tr.xz() << ":" << m_tr.yx() << ":" << m_tr.yy() << ":"
105  << m_tr.yz() << ":" << m_tr.zx() << ":" << m_tr.zy() << ":"
106  << m_tr.zz() << ":" << m_tr.dx() << ":" << m_tr.dy() << ":"
107  << m_tr.dz() << std::endl;
108 #endif
109  return GlobalPoint(glb.x(),glb.y(),glb.z());
110 }
double glb
Definition: hdecay.h:105
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
Tr3D m_tr
Definition: FlatTrd.h:84
CaloCellGeometry::Pt3D Pt3D
CCGFloat FlatTrd::getThetaAxis ( ) const

Definition at line 122 of file FlatTrd.cc.

References m_axis, and PV3DBase< T, PVType, FrameType >::theta().

Referenced by operator<<(), and phiPos().

122  {
123  return m_axis.theta() ;
124 }
Geom::Theta< T > theta() const
Definition: PV3DBase.h:75
GlobalVector m_axis
Definition: FlatTrd.h:81
void FlatTrd::getTransform ( Tr3D tr,
Pt3DVec lptr 
) const
overridevirtual

--------— only needed by specific utility; overloaded when needed -—

Reimplemented from CaloCellGeometry.

Definition at line 194 of file FlatTrd.cc.

References angle(), axis(), MillePedeFileConverter_cfg::e, CaloCellGeometry::getPosition(), localCorners(), m_corOne, mag(), AlCaHLTBitMon_ParallelJobs::p, CaloCellGeometry::param(), csvLumiCalc::unit, x, PV3DBase< T, PVType, FrameType >::x(), y, PV3DBase< T, PVType, FrameType >::y(), z, and PV3DBase< T, PVType, FrameType >::z().

Referenced by FlatTrd(), initCorners(), and phiPos().

194  {
196  const Pt3D gFront ( p.x(), p.y(), p.z() ) ;
197  const DPt3D dgFront ( p.x(), p.y(), p.z() ) ;
198 
199  Pt3D lFront ;
200  assert( nullptr != param() ) ;
201  std::vector<Pt3D > lc( 8, Pt3D(0,0,0) ) ;
202  localCorners( lc, param(), lFront ) ;
203 
204  // figure out if reflction volume or not
205 
206  Pt3D lBack ( 0.25*(lc[4]+lc[5]+lc[6]+lc[7]) ) ;
207 
208  const DPt3D dlFront ( lFront.x(), lFront.y(), lFront.z() ) ;
209  const DPt3D dlBack ( lBack.x() , lBack.y() , lBack.z() ) ;
210  const DPt3D dlOne ( lc[0].x() , lc[0].y() , lc[0].z() ) ;
211 
212  const FVec3D dgAxis ( axis().x(), axis().y(), axis().z() ) ;
213 
214  const DPt3D dmOne ( m_corOne.x(), m_corOne.y(), m_corOne.z() ) ;
215 
216  const DPt3D dgBack ( dgFront + ( dlBack - dlFront ).mag()*dgAxis ) ;
217  DPt3D dgOne ( dgFront + ( dlOne - dlFront ).mag()*( dmOne - dgFront ).unit() ) ;
218 
219  const double dlangle ( ( dlBack - dlFront).angle( dlOne - dlFront ) ) ;
220  const double dgangle ( ( dgBack - dgFront).angle( dgOne - dgFront ) ) ;
221  const double dangle ( dlangle - dgangle ) ;
222 
223  if( 1.e-6 < fabs(dangle) ) {//guard against precision problems
224  const DPlane3D dgPl ( dgFront, dgOne, dgBack ) ;
225  const DPt3D dp2 ( dgFront + dgPl.normal().unit() ) ;
226 
227  DPt3D dgOld ( dgOne ) ;
228 
229  dgOne = ( dgFront + HepGeom::Rotate3D( -dangle, dgFront, dp2 )*
230  DVec3D( dgOld - dgFront ) ) ;
231  }
232 
233  tr = Tr3D( dlFront , dlBack , dlOne ,
234  dgFront , dgBack , dgOne ) ;
235 
236  if( nullptr != lptr ) (*lptr) = lc ;
237 }
const GlobalVector & axis() const
Definition: FlatTrd.cc:130
CaloCellGeometry::Pt3D Pt3D
Definition: FlatTrd.h:23
HepGeom::Point3D< double > DPt3D
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
virtual const GlobalPoint & getPosition() const
Returns the position of reference for this cell.
const CCGFloat * param() const
HepGeom::Vector3D< double > DVec3D
Definition: FlatTrd.cc:16
Pt3D m_corOne
Definition: FlatTrd.h:82
static void localCorners(Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref)
Definition: FlatTrd.cc:163
CaloCellGeometry::Pt3D Pt3D
HepGeom::Plane3D< double > DPlane3D
CaloCellGeometry::Tr3D Tr3D
Definition: FlatTrd.h:25
HepGeom::Vector3D< CCGFloat > FVec3D
T angle(T x1, T y1, T z1, T x2, T y2, T z2)
Definition: angle.h:11
void FlatTrd::initCorners ( CaloCellGeometry::CornersVec co)
overrideprivatevirtual

Implements CaloCellGeometry.

Definition at line 239 of file FlatTrd.cc.

References getTransform(), mps_fire::i, and EZArrayFL< T >::uninitialized().

Referenced by phiPos().

239  {
240 
241  if( co.uninitialized() ) {
242  CornersVec& corners ( co ) ;
243  Pt3DVec lc ;
244  Tr3D tr ;
245  getTransform( tr, &lc ) ;
246 
247  for (unsigned int i ( 0 ) ; i != 8 ; ++i ) {
248  const Pt3D corn ( tr*lc[i] ) ;
249  corners[i] = GlobalPoint( corn.x(), corn.y(), corn.z() ) ;
250  }
251  }
252 }
EZArrayFL< GlobalPoint > CornersVec
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
void getTransform(Tr3D &tr, Pt3DVec *lptr) const override
--------— only needed by specific utility; overloaded when needed -—
Definition: FlatTrd.cc:194
CaloCellGeometry::Pt3D Pt3D
CaloCellGeometry::Pt3DVec Pt3DVec
CaloCellGeometry::Tr3D Tr3D
bool uninitialized() const
Definition: EZArrayFL.h:77
void FlatTrd::localCorners ( Pt3DVec vec,
const CCGFloat pv,
Pt3D ref 
)
static

Definition at line 163 of file FlatTrd.cc.

References gather_cfg::cout, PVValHelper::dz, h, and funct::tan().

Referenced by createCorners(), getTransform(), FastTimeGeometry::localCorners(), HGCalGeometry::localCorners(), phiPos(), and vocalCorners().

165  {
166  assert( nullptr != pv ) ;
167  assert( 8 == lc.size() ) ;
168 
169  const CCGFloat dz ( pv[0] ) ;
170  const CCGFloat h ( pv[3] ) ;
171  const CCGFloat bl ( pv[4] ) ;
172  const CCGFloat tl ( pv[5] ) ;
173  const CCGFloat a1 ( pv[6] ) ;
174 
175  const CCGFloat ta1 ( tan( a1 ) ) ;
176 
177  lc[0] = Pt3D ( - h*ta1 - bl, - h , -dz ); // (-,-,-)
178  lc[1] = Pt3D ( + h*ta1 - tl, + h , -dz ); // (-,+,-)
179  lc[2] = Pt3D ( + h*ta1 + tl, + h , -dz ); // (+,+,-)
180  lc[3] = Pt3D ( - h*ta1 + bl, - h , -dz ); // (+,-,-)
181  lc[4] = Pt3D ( - h*ta1 - bl, - h , dz ); // (-,-,+)
182  lc[5] = Pt3D ( + h*ta1 - tl, + h , dz ); // (-,+,+)
183  lc[6] = Pt3D ( + h*ta1 + tl, + h , dz ); // (+,+,+)
184  lc[7] = Pt3D ( - h*ta1 + bl, - h , dz ); // (+,-,+)
185 
186  ref = 0.25*( lc[0] + lc[1] + lc[2] + lc[3] ) ;
187 #ifdef DebugLog
188  std::cout << "Ref " << ref << " Local Corners " << lc[0] << "|" << lc[1]
189  << "|" << lc[2] << "|" << lc[3] << "|" << lc[4] << "|" << lc[5]
190  << "|" << lc[6] << "|" << lc[7] << std::endl;
191 #endif
192 }
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
CaloCellGeometry::Pt3D Pt3D
Definition: FlatTrd.h:23
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
def pv(vc)
Definition: MetAnalyzer.py:6
CaloCellGeometry::CCGFloat CCGFloat
GlobalVector FlatTrd::makeAxis ( void  )
private

Definition at line 254 of file FlatTrd.cc.

References backCtr(), getPosition(), and Vector3DBase< T, FrameTag >::unit().

Referenced by FlatTrd(), and phiPos().

254  {
255  return GlobalVector( backCtr() - getPosition() ).unit() ;
256 }
const GlobalPoint backCtr(void) const
Definition: FlatTrd.cc:258
Vector3DBase unit() const
Definition: Vector3DBase.h:57
const GlobalPoint & getPosition() const override
Returns the position of reference for this cell.
Definition: FlatTrd.h:46
Global3DVector GlobalVector
Definition: GlobalVector.h:10
FlatTrd & FlatTrd::operator= ( const FlatTrd tr)

Definition at line 31 of file FlatTrd.cc.

References gather_cfg::cout, etaPos(), m_axis, m_corOne, m_global, m_local, m_tr, and phiPos().

31  {
32  CaloCellGeometry::operator=( tr ) ;
33  if ( this != &tr ) {
34  m_axis = tr.m_axis ;
35  m_corOne = tr.m_corOne ;
36  m_local = tr.m_local;
37  m_global = tr.m_global;
38  m_tr = tr.m_tr;
39  }
40 #ifdef DebugLog
41  std::cout << "FlatTrd(Copy): Local " << m_local << " Global " << m_global
42  << " eta " << etaPos() << " phi " << phiPos() << " Translation "
43  << m_tr.getTranslation() << " and rotation " << m_tr.getRotation();
44 #endif
45  return *this ;
46 }
Tr3D m_tr
Definition: FlatTrd.h:84
Pt3D m_local
Definition: FlatTrd.h:82
Pt3D m_corOne
Definition: FlatTrd.h:82
GlobalPoint m_global
Definition: FlatTrd.h:83
virtual float phiPos() const
Definition: FlatTrd.h:49
virtual float etaPos() const
Definition: FlatTrd.h:48
GlobalVector m_axis
Definition: FlatTrd.h:81
virtual float FlatTrd::phiPos ( ) const
inlinevirtual
void FlatTrd::vocalCorners ( Pt3DVec vec,
const CCGFloat pv,
Pt3D ref 
) const
overridevirtual

Implements CaloCellGeometry.

Definition at line 134 of file FlatTrd.cc.

References localCorners().

Referenced by phiPos().

136  {
137  localCorners( vec, pv, ref ) ;
138 }
def pv(vc)
Definition: MetAnalyzer.py:6
static void localCorners(Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref)
Definition: FlatTrd.cc:163

Member Data Documentation

GlobalVector FlatTrd::m_axis
private

Definition at line 81 of file FlatTrd.h.

Referenced by axis(), FlatTrd(), getPhiAxis(), getThetaAxis(), and operator=().

Pt3D FlatTrd::m_corOne
private

Definition at line 82 of file FlatTrd.h.

Referenced by getTransform(), and operator=().

GlobalPoint FlatTrd::m_global
private

Definition at line 83 of file FlatTrd.h.

Referenced by etaPos(), FlatTrd(), getPosition(), operator=(), and phiPos().

Pt3D FlatTrd::m_local
private

Definition at line 82 of file FlatTrd.h.

Referenced by backCtr(), FlatTrd(), and operator=().

Tr3D FlatTrd::m_tr
private

Definition at line 84 of file FlatTrd.h.

Referenced by backCtr(), FlatTrd(), getLocal(), getPosition(), and operator=().