]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALShishKebabTrd1Module.h
Taking into account the masked local boards in regional input (Christian)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALShishKebabTrd1Module.h
CommitLineData
1963b290 1#ifndef ALIEMCALSHISHKEBABTRD1MODULE_H
2#define ALIEMCALSHISHKEBABTRD1MODULE_H
3
4/* Copyright(c) 1998-2004, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
25ab8a31 8//_________________________________________________________________________
9// Main class for TRD1 geometry of Shish-Kebab case.
10// Author: Aleksei Pavlinov(WSU).
11// Nov 2004; Feb 2006
1963b290 12
13#include "TNamed.h"
1963b290 14#include "TVector2.h"
15
16class AliEMCALGeometry;
17
18class AliEMCALShishKebabTrd1Module : public TNamed {
19 public:
25ab8a31 20 AliEMCALShishKebabTrd1Module(Double_t theta=0.0, AliEMCALGeometry *g=0);
1963b290 21 AliEMCALShishKebabTrd1Module(AliEMCALShishKebabTrd1Module &leftNeighbor);
25ab8a31 22 void Init(Double_t A, Double_t B);
23 AliEMCALShishKebabTrd1Module(const AliEMCALShishKebabTrd1Module& mod) : TNamed(mod.GetName(),mod.GetTitle()){
24 // cpy ctor: no implementation yet; requested by the Coding Convention
25 Fatal("cpy ctor", "not implemented") ;
26 }
27 AliEMCALShishKebabTrd1Module & operator = (const AliEMCALShishKebabTrd1Module& /*rvalue*/) {
28 Fatal("operator =", "not implemented") ;
29 return *this ;
30 }
1963b290 31
32 virtual ~AliEMCALShishKebabTrd1Module(void) {}
33 Bool_t GetParameters();
25ab8a31 34 void DefineName(Double_t theta);
1963b290 35 void DefineFirstModule();
36
25ab8a31 37 Double_t GetTheta() const {return fTheta;}
1963b290 38 TVector2& GetCenterOfModule() {return fOK;}
1963b290 39
25ab8a31 40 Double_t GetPosX() const {return fOK.Y();}
41 Double_t GetPosZ() const {return fOK.X();}
42 Double_t GetPosXfromR() const {return fOK.Y() - fgr;}
43 Double_t GetA() const {return fA;}
44 Double_t GetB() const {return fB;}
1963b290 45 // Additional offline staff
dc7da436 46 // ieta=0 or 1 - Jun 02, 2006
e52475ed 47 TVector2& GetCenterOfCellInLocalCoordinateofSM(Int_t ieta)
dc7da436 48 { if(ieta<=0) return fOK2;
e52475ed 49 else return fOK1;}
50 void GetCenterOfCellInLocalCoordinateofSM(Int_t ieta, Double_t &xr, Double_t &zr)
51 {
dc7da436 52 if(ieta<=0) {xr = fOK2.Y(); zr = fOK2.X();
e52475ed 53 } else {xr = fOK1.Y(); zr = fOK1.X();
54 }
55 }
b44d5aa4 56 // 15-may-06
57 TVector2& GetCenterOfModuleFace() {return fOB;}
58 TVector2& GetCenterOfModuleFace(Int_t ieta) {
dc7da436 59 if(ieta<=0) return fOB2;
b44d5aa4 60 else return fOB1;
61 }
1963b290 62 //
25ab8a31 63 Double_t GetTanBetta() const {return fgtanBetta;}
64 Double_t Getb() const {return fgb;}
1963b290 65 // service methods
25ab8a31 66 void PrintShish(Int_t pri=1) const; // *MENU*
67 Double_t GetThetaInDegree() const;
68 Double_t GetEtaOfCenterOfModule() const;
1963b290 69
25ab8a31 70 protected:
1963b290 71 // geometry info
72 static AliEMCALGeometry *fgGeometry; //!
73 static Double_t fga; // 2*dx1=2*dy1
74 static Double_t fga2; // 2*dx2
75 static Double_t fgb; // 2*dz1
76 static Double_t fgangle; // ~1 degree
77 static Double_t fgtanBetta; // tan(fgangle/2.)
25ab8a31 78 static Double_t fgr; // radius to IP
1963b290 79
b44d5aa4 80 TVector2 fOK; // position the module center in ALICE system; x->y; z->x;
1963b290 81 Double_t fA; // parameters of right line : y = A*z + B
82 Double_t fB; // system where zero point is IP.
83 Double_t fThetaA; // angle coresponding fA - for convinience
84 Double_t fTheta; // theta angle of perependicular to SK module
e52475ed 85 // position of towers(cells) with differents ieta (1 or 2) in local coordinate of SM
86 // Nov 04,2004; Feb 19,2006
dc7da436 87 TVector2 fOK1; // ieta=1
88 TVector2 fOK2; // ieta=0
b44d5aa4 89 // May 13, 2006; local position of module (cells) face
90 TVector2 fOB; // module
dc7da436 91 TVector2 fOB1; // ieta=1
92 TVector2 fOB2; // ieta=0
1963b290 93
25ab8a31 94 // public:
95 ClassDef(AliEMCALShishKebabTrd1Module,0) // TRD1 Shish-Kebab module
1963b290 96};
97
98#endif