]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDSimParam.cxx
Replace fLengthOPad by fLengthIPad in GetTiltOffset()
[u/mrichter/AliRoot.git] / TRD / AliTRDSimParam.cxx
CommitLineData
3551db50 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 simulation parameters //
21// //
22// Request an instance with AliTRDSimParam::Instance() //
23// Then request the needed values //
24// //
25///////////////////////////////////////////////////////////////////////////////
26
27#include <TMath.h>
28
29#include "AliRun.h"
30
31#include "AliTRDSimParam.h"
32
33ClassImp(AliTRDSimParam)
34
35AliTRDSimParam* AliTRDSimParam::fgInstance = 0;
36Bool_t AliTRDSimParam::fgTerminated = kFALSE;
37
38//_ singleton implementation __________________________________________________
39AliTRDSimParam* AliTRDSimParam::Instance()
40{
41 //
42 // Singleton implementation
43 // Returns an instance of this class, it is created if neccessary
44 //
45
46 if (fgTerminated != kFALSE)
47 return 0;
48
49 if (fgInstance == 0)
50 fgInstance = new AliTRDSimParam();
51
52 return fgInstance;
53}
54
55void AliTRDSimParam::Terminate()
56{
57 //
58 // Singleton implementation
59 // Deletes the instance of this class and sets the terminated flag, instances cannot be requested anymore
60 // This function can be called several times.
61 //
62
63 fgTerminated = kTRUE;
64
65 if (fgInstance != 0)
66 {
67 delete fgInstance;
68 fgInstance = 0;
69 }
70}
71
72//_____________________________________________________________________________
73AliTRDSimParam::AliTRDSimParam()
74{
75 //
76 // default constructor
77 //
78
79 fGasGain = 0.0;
80 fNoise = 0.0;
81 fChipGain = 0.0;
82
83 fADCoutRange = 0.0;
84 fADCinRange = 0.0;
85 fADCthreshold = 0;
86 fADCbaseline = 0;
87
88 fDiffusionOn = kFALSE;
89
90 fElAttachOn = kFALSE;
91 fElAttachProp = 0.0;
92
93 fTRFOn = kFALSE;
94 fTRFsmp = 0;
95 fTRFbin = 0;
96 fTRFlo = 0.0;
97 fTRFhi = 0.0;
98 fTRFwid = 0.0;
99
100 fCTOn = kFALSE;
101 fCTsmp = 0;
102
103 fTCOn = kFALSE;
104
105 fTCnexp = 0;
106
107 fAnodeWireOffset = 0.0;
108 fPadCoupling = 0.0;
109 fTimeCoupling = 0.0;
110 fTimeStructOn = kFALSE;
111
cc7cef99 112 fPRFOn = kFALSE;
113
3551db50 114 Init();
115}
116
117//_____________________________________________________________________________
118void AliTRDSimParam::Init()
119{
120 //
121 // default initializiation
122 //
123
124 // The default parameter for the digitization
125 fGasGain = 4000.;
126 fChipGain = 12.4;
127 fNoise = 1000.;
128 fADCoutRange = 1023.; // 10-bit ADC
129 fADCinRange = 2000.; // 2V input range
130 fADCthreshold = 1;
131 fADCbaseline = 0;
132
133 // Diffusion on
134 fDiffusionOn = kTRUE;
135
136 // Propability for electron attachment
137 fElAttachOn = kFALSE;
138 fElAttachProp = 0.0;
139
140 // The time response function
141 fTRFOn = kTRUE;
142
143 // The cross talk
144 fCTOn = kTRUE;
145
146 // The tail cancelation
147 fTCOn = kTRUE;
148
149 // The number of exponentials
150 fTCnexp = 1;
151
152 // The pad coupling factor
153 //fPadCoupling = 0.3;
154 // Use 0.46 instead which reproduces better the test beam
155 // data, even tough it is not understood why.
156 fPadCoupling = 0.46;
157
158 // The time coupling factor (same number as for the TPC)
159 fTimeCoupling = 0.4;
160
161 // Distance of first Anode wire from first pad edge
162 fAnodeWireOffset = 0.25;
163
164 // Use drift time maps
165 fTimeStructOn = kTRUE;
166
cc7cef99 167 // The pad response function
168 fPRFOn = kTRUE;
169
3551db50 170 ReInit();
ab0a4106 171}
3551db50 172
173//_____________________________________________________________________________
174AliTRDSimParam::~AliTRDSimParam()
175{
176 //
177 // destructor
178 //
179
180 if (fTRFsmp) {
181 delete [] fTRFsmp;
182 fTRFsmp = 0;
183 }
184
185 if (fCTsmp) {
186 delete [] fCTsmp;
187 fCTsmp = 0;
188 }
ab0a4106 189}
3551db50 190
191//_____________________________________________________________________________
192AliTRDSimParam::AliTRDSimParam(const AliTRDSimParam &p):TObject(p)
193{
194 //
195 // copy constructor
196 //
197
198 ((AliTRDSimParam &) p).Copy(*this);
199}
200
201
202//_____________________________________________________________________________
203AliTRDSimParam &AliTRDSimParam::operator=(const AliTRDSimParam &p)
204{
205 //
206 // Assignment operator
207 //
208
209 if (this != &p) ((AliTRDSimParam &) p).Copy(*this);
210 return *this;
211}
212
213//_____________________________________________________________________________
214void AliTRDSimParam::Copy(TObject &p) const
215{
216 //
217 // Copy function
218 //
219
220 AliTRDSimParam* target = dynamic_cast<AliTRDSimParam*> (&p);
221 if (!target)
222 return;
223
224 target->fGasGain = fGasGain;
225 //target->fField = fField;
226 target->fNoise = fNoise;
227 target->fChipGain = fChipGain;
228
229 target->fADCoutRange = fADCoutRange;
230 target->fADCinRange = fADCinRange;
231 target->fADCthreshold = fADCthreshold;
232 target->fADCbaseline = fADCbaseline;
233
234 target->fDiffusionOn = fDiffusionOn;
235
236 target->fElAttachOn = fElAttachOn;
237 target->fElAttachProp = fElAttachProp;
238
239 target->fTRFOn = fTRFOn;
240 if (target->fTRFsmp)
241 delete[] target->fTRFsmp;
242 target->fTRFsmp = new Float_t[fTRFbin];
243 for (Int_t iBin = 0; iBin < fTRFbin; iBin++) {
244 target->fTRFsmp[iBin] = fTRFsmp[iBin];
245 }
246 target->fTRFbin = fTRFbin;
247 target->fTRFlo = fTRFlo;
248 target->fTRFhi = fTRFhi;
249 target->fTRFwid = fTRFwid;
250
251 target->fCTOn = fCTOn;
252 if (target->fCTsmp)
253 delete[] target->fCTsmp;
254 target->fCTsmp = new Float_t[fTRFbin];
255 for (Int_t iBin = 0; iBin < fTRFbin; iBin++) {
256 target->fCTsmp[iBin] = fCTsmp[iBin];
257 }
258
259 target->fTCOn = fTCOn;
260 target->fTCnexp = fTCnexp;
261
262 target->fAnodeWireOffset = fAnodeWireOffset;
263 target->fPadCoupling = fPadCoupling;
264 target->fTimeCoupling = fTimeCoupling;
cc7cef99 265
266 target->fPRFOn = fPRFOn;
3551db50 267}
268
269//_____________________________________________________________________________
270void AliTRDSimParam::ReInit()
271{
272 //
273 // Reinitializes the parameter class after a change
274 //
275
276 // The range and the binwidth for the sampled TRF
277 fTRFbin = 100;
278 // Start 0.2 mus before the signal
279 fTRFlo = -0.2;
280 // End the maximum drift time after the signal
281 fTRFhi = 2.2;
282 //
283 fTRFwid = (fTRFhi - fTRFlo) / ((Float_t) fTRFbin);
284
285 // Create the sampled TRF
286 SampleTRF();
287}
288
289//_____________________________________________________________________________
290void AliTRDSimParam::SampleTRF()
291{
292 //
293 // Samples the time response function
294 //
295 // New TRF from Venelin Angelov, simulated with CADENCE
296 // Pad-ground capacitance = 25 pF
297 // Pad-pad cross talk capacitance = 6 pF
298 //
299
300 Int_t ipos1;
301 Int_t ipos2;
302 Float_t diff;
303
304 const Int_t kNpasa = 252;
305
306 Float_t time[kNpasa] = { -0.220000, -0.210000, -0.200000, -0.190000
307 , -0.180000, -0.170000, -0.160000, -0.150000
308 , -0.140000, -0.130000, -0.120000, -0.110000
309 , -0.100000, -0.090000, -0.080000, -0.070000
310 , -0.060000, -0.050000, -0.040000, -0.030000
311 , -0.020000, -0.010000, -0.000000, 0.010000
312 , 0.020000, 0.030000, 0.040000, 0.050000
313 , 0.060000, 0.070000, 0.080000, 0.090000
314 , 0.100000, 0.110000, 0.120000, 0.130000
315 , 0.140000, 0.150000, 0.160000, 0.170000
316 , 0.180000, 0.190000, 0.200000, 0.210000
317 , 0.220000, 0.230000, 0.240000, 0.250000
318 , 0.260000, 0.270000, 0.280000, 0.290000
319 , 0.300000, 0.310000, 0.320000, 0.330000
320 , 0.340000, 0.350000, 0.360000, 0.370000
321 , 0.380000, 0.390000, 0.400000, 0.410000
322 , 0.420000, 0.430000, 0.440000, 0.450000
323 , 0.460000, 0.470000, 0.480000, 0.490000
324 , 0.500000, 0.510000, 0.520000, 0.530000
325 , 0.540000, 0.550000, 0.560000, 0.570000
326 , 0.580000, 0.590000, 0.600000, 0.610000
327 , 0.620000, 0.630000, 0.640000, 0.650000
328 , 0.660000, 0.670000, 0.680000, 0.690000
329 , 0.700000, 0.710000, 0.720000, 0.730000
330 , 0.740000, 0.750000, 0.760000, 0.770000
331 , 0.780000, 0.790000, 0.800000, 0.810000
332 , 0.820000, 0.830000, 0.840000, 0.850000
333 , 0.860000, 0.870000, 0.880000, 0.890000
334 , 0.900000, 0.910000, 0.920000, 0.930000
335 , 0.940000, 0.950000, 0.960000, 0.970000
336 , 0.980000, 0.990000, 1.000000, 1.010000
337 , 1.020000, 1.030000, 1.040000, 1.050000
338 , 1.060000, 1.070000, 1.080000, 1.090000
339 , 1.100000, 1.110000, 1.120000, 1.130000
340 , 1.140000, 1.150000, 1.160000, 1.170000
341 , 1.180000, 1.190000, 1.200000, 1.210000
342 , 1.220000, 1.230000, 1.240000, 1.250000
343 , 1.260000, 1.270000, 1.280000, 1.290000
344 , 1.300000, 1.310000, 1.320000, 1.330000
345 , 1.340000, 1.350000, 1.360000, 1.370000
346 , 1.380000, 1.390000, 1.400000, 1.410000
347 , 1.420000, 1.430000, 1.440000, 1.450000
348 , 1.460000, 1.470000, 1.480000, 1.490000
349 , 1.500000, 1.510000, 1.520000, 1.530000
350 , 1.540000, 1.550000, 1.560000, 1.570000
351 , 1.580000, 1.590000, 1.600000, 1.610000
352 , 1.620000, 1.630000, 1.640000, 1.650000
353 , 1.660000, 1.670000, 1.680000, 1.690000
354 , 1.700000, 1.710000, 1.720000, 1.730000
355 , 1.740000, 1.750000, 1.760000, 1.770000
356 , 1.780000, 1.790000, 1.800000, 1.810000
357 , 1.820000, 1.830000, 1.840000, 1.850000
358 , 1.860000, 1.870000, 1.880000, 1.890000
359 , 1.900000, 1.910000, 1.920000, 1.930000
360 , 1.940000, 1.950000, 1.960000, 1.970000
361 , 1.980000, 1.990000, 2.000000, 2.010000
362 , 2.020000, 2.030000, 2.040000, 2.050000
363 , 2.060000, 2.070000, 2.080000, 2.090000
364 , 2.100000, 2.110000, 2.120000, 2.130000
365 , 2.140000, 2.150000, 2.160000, 2.170000
366 , 2.180000, 2.190000, 2.200000, 2.210000
367 , 2.220000, 2.230000, 2.240000, 2.250000
368 , 2.260000, 2.270000, 2.280000, 2.290000 };
369
370 Float_t signal[kNpasa] = { 0.000000, 0.000000, 0.000000, 0.000000
371 , 0.000000, 0.000000, 0.000000, 0.000396
372 , 0.005096, 0.022877, 0.061891, 0.126614
373 , 0.215798, 0.324406, 0.444507, 0.566817
374 , 0.683465, 0.787089, 0.873159, 0.937146
375 , 0.979049, 0.999434, 1.000000, 0.983579
376 , 0.954134, 0.913364, 0.866365, 0.813703
377 , 0.759910, 0.706116, 0.653454, 0.603624
378 , 0.556625, 0.514156, 0.475085, 0.439977
379 , 0.408834, 0.380578, 0.355549, 0.333352
380 , 0.313647, 0.296093, 0.280351, 0.266195
381 , 0.253397, 0.241789, 0.231257, 0.221574
382 , 0.212627, 0.204417, 0.196772, 0.189581
383 , 0.182956, 0.176784, 0.171008, 0.165515
384 , 0.160419, 0.155606, 0.151076, 0.146716
385 , 0.142639, 0.138845, 0.135221, 0.131767
386 , 0.128482, 0.125368, 0.122424, 0.119592
387 , 0.116931, 0.114326, 0.111891, 0.109513
388 , 0.107248, 0.105096, 0.103058, 0.101019
389 , 0.099151, 0.097282, 0.095527, 0.093715
390 , 0.092129, 0.090544, 0.088958, 0.087429
391 , 0.086014, 0.084598, 0.083239, 0.081880
392 , 0.080634, 0.079388, 0.078143, 0.077010
393 , 0.075878, 0.074745, 0.073669, 0.072593
394 , 0.071574, 0.070612, 0.069649, 0.068686
395 , 0.067780, 0.066874, 0.066025, 0.065176
396 , 0.064326, 0.063533, 0.062684, 0.061948
397 , 0.061212, 0.060419, 0.059740, 0.059003
398 , 0.058324, 0.057644, 0.057022, 0.056342
399 , 0.055663, 0.055096, 0.054473, 0.053851
400 , 0.053284, 0.052718, 0.052152, 0.051585
401 , 0.051019, 0.050566, 0.050000, 0.049490
402 , 0.048981, 0.048528, 0.048018, 0.047508
403 , 0.047055, 0.046602, 0.046149, 0.045696
404 , 0.045300, 0.044904, 0.044451, 0.044054
405 , 0.043658, 0.043205, 0.042865, 0.042469
406 , 0.042072, 0.041733, 0.041336, 0.040997
407 , 0.040657, 0.040260, 0.039921, 0.039581
408 , 0.039241, 0.038958, 0.038618, 0.038335
409 , 0.037995, 0.037656, 0.037373, 0.037089
410 , 0.036806, 0.036467, 0.036183, 0.035900
411 , 0.035617, 0.035334, 0.035108, 0.034824
412 , 0.034541, 0.034315, 0.034032, 0.033805
413 , 0.033522, 0.033296, 0.033069, 0.032786
414 , 0.032559, 0.032333, 0.032106, 0.031880
415 , 0.031653, 0.031427, 0.031200, 0.030974
416 , 0.030804, 0.030578, 0.030351, 0.030125
417 , 0.029955, 0.029785, 0.029558, 0.029332
418 , 0.029162, 0.028992, 0.028766, 0.028596
419 , 0.028426, 0.028199, 0.028086, 0.027860
420 , 0.027746, 0.027633, 0.027463, 0.027293
421 , 0.027180, 0.027067, 0.026954, 0.026954
422 , 0.026840, 0.026727, 0.026727, 0.026614
423 , 0.026614, 0.026614, 0.026557, 0.026501
424 , 0.026501, 0.026501, 0.026501, 0.026501
425 , 0.026501, 0.026501, 0.026501, 0.026387
426 , 0.026387, 0.026387, 0.026387, 0.026387
427 , 0.026387, 0.026387, 0.026387, 0.026387
428 , 0.026387, 0.026387, 0.026387, 0.026387
429 , 0.026387, 0.026274, 0.026274, 0.026274
430 , 0.026274, 0.026274, 0.026274, 0.026274
431 , 0.026274, 0.026274, 0.026274, 0.026274
432 , 0.026274, 0.026274, 0.026274, 0.026161 };
433
434 Float_t xtalk[kNpasa] = { 0.000000, 0.000000, 0.000000, 0.000000
435 , 0.000000, 0.000000, 0.000000, 0.000113
436 , 0.000793, 0.003058, 0.007305, 0.013194
437 , 0.019706, 0.025821, 0.030634, 0.033465
438 , 0.034145, 0.032729, 0.029615, 0.025198
439 , 0.019989, 0.014496, 0.009003, 0.003964
440 , -0.000510, -0.004190, -0.007191, -0.009400
441 , -0.010872, -0.011835, -0.012288, -0.012288
442 , -0.012005, -0.011495, -0.010872, -0.010136
443 , -0.009343, -0.008607, -0.007871, -0.007191
444 , -0.006512, -0.005946, -0.005379, -0.004926
445 , -0.004473, -0.004077, -0.003737, -0.003398
446 , -0.003114, -0.002831, -0.002605, -0.002378
447 , -0.002208, -0.002039, -0.001869, -0.001699
448 , -0.001585, -0.001472, -0.001359, -0.001246
449 , -0.001132, -0.001019, -0.001019, -0.000906
450 , -0.000906, -0.000793, -0.000793, -0.000680
451 , -0.000680, -0.000680, -0.000566, -0.000566
452 , -0.000566, -0.000566, -0.000453, -0.000453
453 , -0.000453, -0.000453, -0.000453, -0.000453
454 , -0.000340, -0.000340, -0.000340, -0.000340
455 , -0.000340, -0.000340, -0.000340, -0.000340
456 , -0.000340, -0.000340, -0.000340, -0.000340
457 , -0.000340, -0.000227, -0.000227, -0.000227
458 , -0.000227, -0.000227, -0.000227, -0.000227
459 , -0.000227, -0.000227, -0.000227, -0.000227
460 , -0.000227, -0.000227, -0.000227, -0.000227
461 , -0.000227, -0.000227, -0.000227, -0.000227
462 , -0.000227, -0.000227, -0.000227, -0.000227
463 , -0.000227, -0.000227, -0.000227, -0.000227
464 , -0.000227, -0.000227, -0.000227, -0.000227
465 , -0.000227, -0.000227, -0.000227, -0.000227
466 , -0.000227, -0.000227, -0.000227, -0.000113
467 , -0.000113, -0.000113, -0.000113, -0.000113
468 , -0.000113, -0.000113, -0.000113, -0.000113
469 , -0.000113, -0.000113, -0.000113, -0.000113
470 , -0.000113, -0.000113, -0.000113, -0.000113
471 , -0.000113, -0.000113, -0.000113, -0.000113
472 , -0.000113, -0.000113, -0.000113, -0.000113
473 , -0.000113, -0.000113, -0.000113, -0.000113
474 , -0.000113, -0.000113, -0.000113, -0.000113
475 , -0.000113, -0.000113, -0.000113, -0.000113
476 , -0.000113, -0.000113, -0.000113, -0.000113
477 , -0.000113, -0.000113, -0.000113, -0.000113
478 , -0.000113, -0.000113, -0.000113, -0.000113
479 , -0.000113, -0.000113, -0.000113, -0.000113
480 , -0.000113, -0.000113, -0.000113, -0.000113
481 , -0.000113, -0.000113, -0.000113, -0.000113
482 , -0.000113, -0.000113, -0.000113, -0.000113
483 , -0.000113, -0.000113, -0.000113, -0.000113
484 , -0.000113, -0.000113, -0.000113, -0.000113
485 , -0.000113, -0.000113, -0.000113, -0.000113
486 , -0.000113, -0.000113, -0.000113, 0.000000
487 , 0.000000, 0.000000, 0.000000, 0.000000
488 , 0.000000, 0.000000, 0.000000, 0.000000
489 , 0.000000, 0.000000, 0.000000, 0.000000
490 , 0.000000, 0.000000, 0.000000, 0.000000
491 , 0.000000, 0.000000, 0.000000, 0.000000
492 , 0.000000, 0.000000, 0.000000, 0.000000
493 , 0.000000, 0.000000, 0.000000, 0.000000
494 , 0.000000, 0.000000, 0.000000, 0.000000
495 , 0.000000, 0.000000, 0.000000, 0.000000
496 , 0.000000, 0.000000, 0.000000, 0.000000 };
497
498 // increase CrossTalk to measurements
499 for (Int_t ipasa = 0; ipasa < kNpasa; ipasa++) {
500 xtalk[ipasa] *= 1.75;
501 }
502
503 if (fTRFsmp) delete [] fTRFsmp;
504 fTRFsmp = new Float_t[fTRFbin];
505 if (fCTsmp) delete [] fCTsmp;
506 fCTsmp = new Float_t[fTRFbin];
507
508 Float_t loTRF = TMath::Max(fTRFlo, time[0]);
509 Float_t hiTRF = TMath::Min(fTRFhi, time[kNpasa-1]);
510 Float_t binWidth = (hiTRF - loTRF) / ((Float_t) fTRFbin);
511
512 // Take the linear interpolation
513 for (Int_t iBin = 0; iBin < fTRFbin; iBin++) {
514
515 Float_t bin = (((Float_t) iBin) + 0.5) * binWidth + loTRF;
516 ipos1 = ipos2 = 0;
517 diff = 0;
518 do {
519 diff = bin - time[ipos2++];
520 } while (diff > 0);
521 ipos2--;
522 if (ipos2 >= kNpasa) ipos2 = kNpasa - 1;
523 ipos1 = ipos2 - 1;
524
525 fTRFsmp[iBin] = signal[ipos2]
526 + diff * (signal[ipos2] - signal[ipos1])
527 / ( time[ipos2] - time[ipos1]);
528
529 fCTsmp[iBin] = xtalk[ipos2]
530 + diff * (xtalk[ipos2] - xtalk[ipos1])
531 / ( time[ipos2] - time[ipos1]);
532
533 }
534
535}
536
537//_____________________________________________________________________________
538Double_t AliTRDSimParam::TimeResponse(Double_t time) const
539{
540 //
541 // Applies the preamp shaper time response
542 //
543
544 Int_t iBin = ((Int_t) ((time) / fTRFwid));
545 //Int_t iBin = ((Int_t) ((time - fTRFlo) / fTRFwid));
546 if ((iBin >= 0) && (iBin < fTRFbin)) {
547 return fTRFsmp[iBin];
548 }
549 else {
550 return 0.0;
551 }
552
553}
554
555//_____________________________________________________________________________
556Double_t AliTRDSimParam::CrossTalk(Double_t time) const
557{
558 //
559 // Applies the pad-pad capacitive cross talk
560 //
561
562 Int_t iBin = ((Int_t) ((time - fTRFlo) / fTRFwid));
563 if ((iBin >= 0) && (iBin < fTRFbin)) {
564 return fCTsmp[iBin];
565 }
566 else {
567 return 0.0;
568 }
569
570}
571