77 |
// |
// |
78 |
void Clear(); |
void Clear(); |
79 |
// |
// |
80 |
Float_t GetXalig(){return CTX;}; ///< return X alignement paramenter |
Float_t GetXalig(){printf(" Obsolete! Use CaloStrip class instead\n");return CTX;}; ///< return X alignement paramenter |
81 |
Float_t GetYalig(){return CTY;}; ///< return Y alignement paramenter |
Float_t GetYalig(){printf(" Obsolete! Use CaloStrip class instead\n");return CTY;}; ///< return Y alignement paramenter |
82 |
Float_t GetZalig(){return CTZ;}; ///< return Z alignement paramenter |
Float_t GetZalig(){printf(" Obsolete! Use CaloStrip class instead\n");return CTZ;}; ///< return Z alignement paramenter |
83 |
// |
// |
84 |
CaloLevel1(); ///< Constructor. |
CaloLevel1(); ///< Constructor. |
85 |
// |
// |
113 |
// |
// |
114 |
CaloStrip(); ///< Default Constructor. |
CaloStrip(); ///< Default Constructor. |
115 |
// |
// |
116 |
|
CaloStrip(Bool_t usemechanicalalignement); ///< Default Constructor. |
117 |
|
// |
118 |
CaloStrip(CaloLevel1 *c1); ///< Constructor. |
CaloStrip(CaloLevel1 *c1); ///< Constructor. |
119 |
// |
// |
120 |
|
CaloStrip(CaloLevel1 *c1, Bool_t usemechanicalalignement); ///< Constructor. |
121 |
|
// |
122 |
Float_t GetE(){return fE;}; ///< Get energy in MIP for setted strip |
Float_t GetE(){return fE;}; ///< Get energy in MIP for setted strip |
123 |
// |
// |
124 |
Float_t GetX(){return fX;}; ///< Get X strip position |
Float_t GetX(){return fX;}; ///< Get X strip position |
129 |
Float_t GetYalig(){ return UYal;}; ///< return Y alignement paramenter |
Float_t GetYalig(){ return UYal;}; ///< return Y alignement paramenter |
130 |
Float_t GetZalig(){ return UZal;}; ///< return Z alignement paramenter |
Float_t GetZalig(){ return UZal;}; ///< return Z alignement paramenter |
131 |
// |
// |
132 |
Int_t GetView(){printf(" Obsolete! Use CaloStrip class instead\n"); return (fView-1);}; ///< Get strip view [0-1] |
Int_t GetView(){return (fView-1);}; ///< Get strip view [0-1] |
133 |
Int_t GetPlane(){printf(" Obsolete! Use CaloStrip class instead\n");return (fPlane-1);}; ///< Get strip plane [0-22] |
Int_t GetPlane(){return (fPlane-1);}; ///< Get strip plane [0-22] |
134 |
Int_t GetStrip(){printf(" Obsolete! Use CaloStrip class instead\n");return (fStrip-1);}; ///< Get strip number [0-95] |
Int_t GetStrip(){return (fStrip-1);}; ///< Get strip number [0-95] |
135 |
// |
// |
136 |
void Set(Int_t view, Int_t plane, Int_t strip); ///< Set strip giving view [0-1], plane [0-22] and number [0-95] |
void Set(Int_t view, Int_t plane, Int_t strip); ///< Set strip giving view [0-1], plane [0-22] and number [0-95] |
137 |
// |
// |