]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSresponseSDD.cxx
Fix bug in digitization of multiple events
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSDD.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 #include "AliITSresponseSDD.h"
17 //////////////////////////////////////////////////////
18 //  Base response class forITS                      //
19 //  It is used to set static data members           //
20 //  connected to parameters equal for all           //
21 //  the modules                                     //
22 //                                                  //
23 //                                                  //
24 //////////////////////////////////////////////////////
25
26
27 const Int_t AliITSresponseSDD::fgkMaxAdcDefault = 1024;
28 const Float_t AliITSresponseSDD::fgkDynamicRangeDefault = 132.;
29 const Float_t AliITSresponseSDD::fgkfChargeLossDefault = 0;
30 const Float_t AliITSresponseSDD::fgkDiffCoeffDefault = 3.23;
31 const Float_t AliITSresponseSDD::fgkDiffCoeff1Default = 30.;
32 const TString AliITSresponseSDD::fgkParam1Default = "same";
33 const TString AliITSresponseSDD::fgkParam2Default = "same";
34 const TString AliITSresponseSDD::fgkOptionDefault = "1D";
35 const Float_t AliITSresponseSDD::fgkDriftSpeedDefault = 7.3;
36 const Float_t AliITSresponseSDD::fgkNsigmasDefault = 3.;
37 const Int_t AliITSresponseSDD::fgkNcompsDefault = 121;
38
39 ClassImp(AliITSresponseSDD)
40
41 //_________________________________________________________________________
42 AliITSresponseSDD::AliITSresponseSDD():
43 AliITSresponse(),
44 fJitterError(0.),
45 fDynamicRange(0.),
46 fChargeLoss(0.),
47 fDriftSpeed(fgkDriftSpeedDefault),
48 fElectronics(0),
49 fMaxAdc(fgkMaxAdcDefault),
50 fNsigmas(fgkNsigmasDefault),
51 fGaus(),
52 fNcomps(0),
53 fBitComp(kFALSE),
54 fOption(),
55 fParam1(),
56 fParam2() {
57   // default constructor
58   fGaus = 0;
59   SetDiffCoeff(fgkDiffCoeffDefault,fgkDiffCoeff1Default);
60   //  SetNLookUp(fgkNcompsDefault);
61
62   SetJitterError();
63   SetElectronics();
64   SetDynamicRange(fgkDynamicRangeDefault);
65   SetChargeLoss(fgkfChargeLossDefault);
66   SetParamOptions(fgkParam1Default.Data(),fgkParam2Default.Data());
67   SetZeroSupp(fgkOptionDefault);
68   SetDo10to8();
69   SetOutputOption();
70 }
71
72
73 //______________________________________________________________________
74 AliITSresponseSDD::~AliITSresponseSDD() { 
75
76   if(fGaus) delete fGaus;
77 }
78
79
80 //______________________________________________________________________
81 Int_t AliITSresponseSDD::Convert8to10(Int_t signal) const {
82   // Undo the lossive 10 to 8 bit compression.
83   // code from Davide C. and Albert W.
84
85   if(Do10to8()){  // kTRUE if the compression is active
86     if (signal < 0 || signal > 255) {
87       Warning("Convert8to10","out of range signal=%d",signal);
88       return 0;
89     } // end if signal <0 || signal >255
90
91     if (signal < 128) return signal;
92     if (signal < 192) {
93       if (TMath::Odd(signal)) return (128+((signal-128)<<1));
94       else  return (128+((signal-128)<<1)+1);
95     } // end if signal < 192
96     if (signal < 224) {
97       if (TMath::Odd(signal)) return (256+((signal-192)<<3)+3);
98       else  return (256+((signal-192)<<3)+4);
99     } // end if signal < 224
100     if (TMath::Odd(signal)) return (512+((signal-224)<<4)+7);
101     return (512+((signal-224)<<4)+8);
102   }
103   else {  
104     return signal;
105   }
106 }
107
108 //________________________________________________________________________
109 void AliITSresponseSDD::SetNLookUp(Int_t p1){
110   // Set number of sigmas over which cluster disintegration is performed
111   fNcomps=p1;
112   if (fGaus) delete fGaus;
113   fGaus = new TArrayF(fNcomps+1);
114   for(Int_t i=0; i<=fNcomps; i++) {
115     Float_t x = -fNsigmas + (2.*i*fNsigmas)/(fNcomps-1);
116     (*fGaus)[i] = exp(-((x*x)/2));
117   }
118 }