]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDCommonParam.cxx
Remove t0 again from global calibration
[u/mrichter/AliRoot.git] / TRD / AliTRDCommonParam.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 //                                                                           //
20 // Class containing constant common parameters                               //
21 //                                                                           //
22 // Request an instance with AliTRDCommonParam::Instance()                    //
23 // Then request the needed values                                            //
24 //                                                                           //
25 ///////////////////////////////////////////////////////////////////////////////
26
27 #include <TObjArray.h>
28
29 #include "AliTracker.h"
30 #include "AliRun.h"
31
32 #include "AliTRDCommonParam.h"
33 #include "AliTRDpadPlane.h"
34
35
36 ClassImp(AliTRDCommonParam)
37
38 AliTRDCommonParam *AliTRDCommonParam::fgInstance = 0;
39 Bool_t AliTRDCommonParam::fgTerminated = kFALSE;
40
41 //_ singleton implementation __________________________________________________
42 AliTRDCommonParam* AliTRDCommonParam::Instance()
43 {
44   //
45   // Singleton implementation
46   // Returns an instance of this class, it is created if neccessary
47   // 
48   
49   if (fgTerminated != kFALSE) {
50     return 0;
51   }
52
53   if (fgInstance == 0) {
54     fgInstance = new AliTRDCommonParam();
55   }  
56
57   return fgInstance;
58
59 }
60
61 //_____________________________________________________________________________
62 void AliTRDCommonParam::Terminate()
63 {
64   //
65   // Singleton implementation
66   // Deletes the instance of this class and sets the terminated flag,
67   // instances cannot be requested anymore
68   // This function can be called several times.
69   //
70   
71   fgTerminated = kTRUE;
72   
73   if (fgInstance != 0) {
74     delete fgInstance;
75     fgInstance = 0;
76   }
77
78 }
79
80 //_____________________________________________________________________________
81 AliTRDCommonParam::AliTRDCommonParam()
82   :TObject()
83   ,fExBOn(kFALSE)
84   ,fSamplingFrequency(0.0)
85   ,fPadPlaneArray(0)
86 {
87   //
88   // Default constructor
89   //
90   
91   Init();
92
93 }
94
95 //_____________________________________________________________________________
96 void AliTRDCommonParam::Init()
97 {
98   //
99   // Initialization
100   //
101   
102   // E x B effects
103   fExBOn             = kTRUE;
104
105   // Sampling Frequency in MHz
106   fSamplingFrequency = 10.0;
107   
108   // ----------------------------------------------------------------------------
109   // The pad planes
110   // ----------------------------------------------------------------------------
111   
112   fPadPlaneArray = new TObjArray(kNplan * kNcham);
113   
114   for (Int_t iplan = 0; iplan < kNplan; iplan++) {
115     for (Int_t icham = 0; icham < kNcham; icham++) {
116       Int_t ipp = iplan + icham * kNplan;
117       fPadPlaneArray->AddAt(new AliTRDpadPlane(iplan,icham),ipp);
118     }
119   }
120
121 }
122
123 //_____________________________________________________________________________
124 AliTRDCommonParam::~AliTRDCommonParam() 
125 {
126   //
127   // Destructor
128   //
129   
130   if (fPadPlaneArray) {
131     fPadPlaneArray->Delete();
132     delete fPadPlaneArray;
133     fPadPlaneArray = 0;
134   }
135
136 }
137
138 //_____________________________________________________________________________
139 AliTRDCommonParam::AliTRDCommonParam(const AliTRDCommonParam &p)
140   :TObject(p)
141   ,fExBOn(p.fExBOn)
142   ,fSamplingFrequency(p.fSamplingFrequency)
143   ,fPadPlaneArray(0)
144 {
145   //
146   // Copy constructor
147   //
148
149 }
150
151 //_____________________________________________________________________________
152 AliTRDCommonParam &AliTRDCommonParam::operator=(const AliTRDCommonParam &p)
153 {
154   //
155   // Assignment operator
156   //
157
158   if (this != &p) {
159     ((AliTRDCommonParam &) p).Copy(*this);
160   }
161
162   return *this;
163
164 }
165
166 //_____________________________________________________________________________
167 void AliTRDCommonParam::Copy(TObject &p) const
168 {
169   //
170   // Copy function
171   //
172   
173   AliTRDCommonParam *target = dynamic_cast<AliTRDCommonParam*> (&p);
174   if (!target) {
175     return;
176   }  
177
178   target->fExBOn             = fExBOn;
179   target->fSamplingFrequency = fSamplingFrequency;
180
181 }
182
183 //_____________________________________________________________________________
184 AliTRDpadPlane *AliTRDCommonParam::GetPadPlane(Int_t p, Int_t c) const
185 {
186   //
187   // Returns the pad plane for a given plane <p> and chamber <c> number
188   //
189
190   Int_t ipp = p + c * kNplan;
191   return ((AliTRDpadPlane *) fPadPlaneArray->At(ipp));
192
193 }
194
195 //_____________________________________________________________________________
196 Int_t AliTRDCommonParam::GetRowMax(Int_t p, Int_t c, Int_t /*s*/) const
197 {
198   //
199   // Returns the number of rows on the pad plane
200   //
201
202   return GetPadPlane(p,c)->GetNrows();
203
204 }
205
206 //_____________________________________________________________________________
207 Int_t AliTRDCommonParam::GetColMax(Int_t p) const
208 {
209   //
210   // Returns the number of rows on the pad plane
211   //
212
213   return GetPadPlane(p,0)->GetNcols();
214
215 }
216
217 //_____________________________________________________________________________
218 Double_t AliTRDCommonParam::GetRow0(Int_t p, Int_t c, Int_t /*s*/) const
219 {
220   //
221   // Returns the position of the border of the first pad in a row
222   //
223
224   return GetPadPlane(p,c)->GetRow0();
225
226 }
227
228 //_____________________________________________________________________________
229 Double_t AliTRDCommonParam::GetCol0(Int_t p) const
230 {
231   //
232   // Returns the position of the border of the first pad in a column
233   //
234
235   return GetPadPlane(p,0)->GetCol0();
236
237 }