CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PreshowerStrip.h
Go to the documentation of this file.
1 #ifndef PreshowerStrip_h
2 #define PreshowerStrip_h
3 
5 #include <CLHEP/Geometry/Point3D.h>
6 #include <CLHEP/Geometry/Plane3D.h>
7 #include <CLHEP/Geometry/Vector3D.h>
8 #include <CLHEP/Geometry/Transform3D.h>
9 #include <vector>
10 
11 
25 {
26 public:
27 
32 
33  PreshowerStrip() ;
34 
35  PreshowerStrip( const PreshowerStrip& tr ) ;
36 
38 
40  CornersMgr* mgr ,
41  const CCGFloat* parm ) :
42  CaloCellGeometry ( po , mgr, parm ) {initSpan();}
43 
44  virtual ~PreshowerStrip();
45 
46  CCGFloat dx() const { return param()[0] ; }
47  CCGFloat dy() const { return param()[1] ; }
48  CCGFloat dz() const { return param()[2] ; }
49  CCGFloat tilt() const { return param()[3] ; }
50 
51  virtual void vocalCorners( Pt3DVec& vec ,
52  const CCGFloat* pv ,
53  Pt3D& ref ) const
54  { localCorners( vec, pv, ref ) ; }
55 
56  static void localCorners( Pt3DVec& vec ,
57  const CCGFloat* pv ,
58  Pt3D& ref ) ;
59 
60  virtual Tr3D getTransform( Pt3DVec* /*lptr*/ ) const
61  { return Tr3D() ; }
62  private:
63  virtual void initCorners(CaloCellGeometry::CornersVec&) override;
64 };
65 
66 std::ostream& operator<<( std::ostream& s , const PreshowerStrip& cell) ;
67 
68 #endif
CaloCellGeometry::Pt3DVec Pt3DVec
static void localCorners(Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref)
CaloCellGeometry::Tr3D Tr3D
CaloCellGeometry::Pt3D Pt3D
CaloCellGeometry::CCGFloat CCGFloat
HepGeom::Transform3D Tr3D
std::vector< Pt3D > Pt3DVec
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
virtual void initCorners(CaloCellGeometry::CornersVec &) override
A base class to handle the shape of preshower strips.
const CCGFloat * param() const
CCGFloat dx() const
CaloCellGeometry::CCGFloat CCGFloat
CaloCellGeometry::Pt3D Pt3D
CCGFloat tilt() const
virtual ~PreshowerStrip()
CaloCellGeometry::Pt3DVec Pt3DVec
HepGeom::Point3D< CCGFloat > Pt3D
Definition: EZMgrFL.h:8
CCGFloat dy() const
CCGFloat dz() const
PreshowerStrip(const GlobalPoint &po, CornersMgr *mgr, const CCGFloat *parm)
virtual void vocalCorners(Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref) const
virtual Tr3D getTransform(Pt3DVec *) const
PreshowerStrip & operator=(const PreshowerStrip &tr)