Go to the documentation of this file.00001 #if !defined(ECALCOMMONDATA_ECALTRAPEZOIDPARAMETERS_H)
00002 #define ECALCOMMONDATA_ECALTRAPEZOIDPARAMETERS_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060 #include <vector>
00061 #include <CLHEP/Geometry/Point3D.h>
00062
00063 #include "Geometry/CaloGeometry/interface/CaloCellGeometry.h"
00064
00065
00066
00067
00068 class EcalTrapezoidParameters
00069 {
00070
00071 public:
00072
00073
00074 typedef CaloCellGeometry::Pt3DVec VertexList ;
00075
00076 typedef CaloCellGeometry::CCGFloat TPFloat ;
00077
00078
00079
00080 EcalTrapezoidParameters( TPFloat aHalfLengthXNegZLoY ,
00081 TPFloat aHalfLengthXPosZLoY ,
00082 TPFloat aHalfLengthXPosZHiY ,
00083 TPFloat aHalfLengthYNegZ ,
00084 TPFloat aHalfLengthYPosZ ,
00085 TPFloat aHalfLengthZ ,
00086 TPFloat aAngleAD ,
00087 TPFloat aCoord15X ,
00088 TPFloat aCoord15Y
00089 ) ;
00090
00091
00092
00093
00094
00095
00096
00097 TPFloat dz() const ;
00098 TPFloat theta() const ;
00099 TPFloat phi() const ;
00100 TPFloat h1() const ;
00101 TPFloat bl1() const ;
00102 TPFloat tl1() const ;
00103 TPFloat alp1() const ;
00104 TPFloat h2() const ;
00105 TPFloat bl2() const ;
00106 TPFloat tl2() const ;
00107 TPFloat alp2() const ;
00108
00109
00110 TPFloat x15() const ;
00111 TPFloat y15() const ;
00112 TPFloat hAa() const ;
00113 TPFloat hBb() const ;
00114 TPFloat hCc() const ;
00115 TPFloat hDd() const ;
00116 TPFloat a1() const ;
00117 TPFloat a4() const ;
00118
00119 TPFloat L() const ;
00120 TPFloat a() const ;
00121 TPFloat b() const ;
00122 TPFloat c() const ;
00123 TPFloat d() const ;
00124 TPFloat h() const ;
00125 TPFloat A() const ;
00126 TPFloat B() const ;
00127 TPFloat C() const ;
00128 TPFloat D() const ;
00129 TPFloat H() const ;
00130
00131 VertexList vertexList() const ;
00132
00133
00134 protected:
00135
00136
00137 private:
00138
00139 EcalTrapezoidParameters();
00140 EcalTrapezoidParameters( const EcalTrapezoidParameters& );
00141
00142
00143 const EcalTrapezoidParameters& operator=( const EcalTrapezoidParameters& );
00144
00145
00146
00147
00148
00149 TPFloat m_dz, m_th, m_ph, m_h1, m_bl1, m_tl1, m_alp1, m_h2, m_bl2, m_tl2, m_alp2 ;
00150 TPFloat m_a1, m_hAa, m_x15, m_y15 ;
00151 TPFloat m_a4, m_hBb, m_hCc, m_hDd ;
00152 TPFloat m_L, m_a, m_b, m_c, m_d, m_h, m_A, m_B, m_C, m_D, m_H ;
00153
00154
00155 };
00156
00157
00158
00159 #endif