1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
16 ///_________________________________________________________________________
18 /// This class constructs Digits out of Hits
22 // --- Standard library ---
24 // --- ROOT system ---
28 // --- AliRoot header files ---
29 #include "AliVZEROConst.h"
32 #include "AliVZEROhit.h"
33 #include "AliRunLoader.h"
34 #include "AliLoader.h"
35 #include "AliRunDigitizer.h"
36 #include "AliCDBManager.h"
37 #include "AliCDBStorage.h"
38 #include "AliCDBEntry.h"
39 #include "AliVZEROCalibData.h"
41 #include "AliVZEROdigit.h"
42 #include "AliVZERODigitizer.h"
44 ClassImp(AliVZERODigitizer)
46 AliVZERODigitizer::AliVZERODigitizer()
48 fCalibData(GetCalibData()),
49 fPhotoCathodeEfficiency(0.18),
51 fPMGain(TMath::Power((fPMVoltage / 112.5) ,7.04277)),
56 // default constructor
61 // fPhotoCathodeEfficiency = 0.18;
62 // fPMVoltage = 768.0;
63 // fPMGain = TMath::Power((fPMVoltage / 112.5) ,7.04277);
65 // fCalibData = GetCalibData();
68 //____________________________________________________________________________
69 AliVZERODigitizer::AliVZERODigitizer(AliRunDigitizer* manager)
70 :AliDigitizer(manager),
71 fCalibData(GetCalibData()),
72 fPhotoCathodeEfficiency(0.18),
74 fPMGain(TMath::Power((fPMVoltage / 112.5) ,7.04277)),
84 // fPhotoCathodeEfficiency = 0.18;
85 // fPMVoltage = 768.0;
86 // fPMGain = TMath::Power( (fPMVoltage / 112.5) ,7.04277 );
88 // fCalibData = GetCalibData();
92 //____________________________________________________________________________
93 AliVZERODigitizer::~AliVZERODigitizer()
104 //_____________________________________________________________________________
105 Bool_t AliVZERODigitizer::Init()
107 // Initialises the digitizer
109 // Initialises the Digit array
110 fDigits = new TClonesArray ("AliVZEROdigit", 1000);
115 //____________________________________________________________________________
116 void AliVZERODigitizer::Exec(Option_t* /*option*/)
118 // Creates digits from hits
120 Int_t map[80]; // 48 values on V0C + 32 on V0A
121 Int_t adc[64]; // 32 PMs on V0C + 32 PMs on V0A
122 Float_t time[80], time2[64], adc_gain[80];
124 Float_t cPM = fPhotoCathodeEfficiency * fPMGain;
126 // Retrieval of ADC gain values from local CDB
127 // I use only the first 64th values of the calibration array in CDB
128 // as I have no beam burst structure - odd or even beam burst number
130 // Reminder : We have 16 scintillating cells mounted on 8 PMs
131 // on Ring 3 and Ring 4 in V0C - added to produce ADC outputs
134 for(Int_t i=0; i<16; i++) { adc_gain[i] = fCalibData->GetGain(i) ; };
136 for(Int_t j=16; j<48; j=j+2) {
138 adc_gain[j] = fCalibData->GetGain(i) ;
139 adc_gain[j+1] = fCalibData->GetGain(i) ; }
140 for(Int_t i=48; i<80; i++) { adc_gain[i] = fCalibData->GetGain(i-16) ; }
142 // for(Int_t i=0; i<80; i++) { printf(" i = %d gain = %f\n\n", i, adc_gain[i] );}
144 AliRunLoader* outRunLoader =
145 AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
147 Error("Exec", "Can not get output Run Loader");
150 AliLoader* outLoader = outRunLoader->GetLoader("VZEROLoader");
152 Error("Exec", "Can not get output VZERO Loader");
155 outLoader->LoadDigits("update");
156 if (!outLoader->TreeD()) outLoader->MakeTree("D");
157 outLoader->MakeDigitsContainer();
158 TTree* treeD = outLoader->TreeD();
159 Int_t bufsize = 16000;
160 treeD->Branch("VZERODigit", &fDigits, bufsize);
162 for (Int_t iInput = 0; iInput < fManager->GetNinputs(); iInput++) {
163 AliRunLoader* runLoader =
164 AliRunLoader::GetRunLoader(fManager->GetInputFolderName(iInput));
165 AliLoader* loader = runLoader->GetLoader("VZEROLoader");
167 Error("Exec", "Can not get VZERO Loader for input %d", iInput);
170 if (!runLoader->GetAliRun()) runLoader->LoadgAlice();
172 AliVZERO* vzero = (AliVZERO*) runLoader->GetAliRun()->GetDetector("VZERO");
174 Error("Exec", "No VZERO detector for input %d", iInput);
178 TTree* treeH = loader->TreeH();
180 Error("Exec", "Cannot get TreeH for input %d", iInput);
183 Float_t timeV0 = 1e12;
184 for(Int_t i=0; i<80; i++) { map[i] = 0; time[i] = 0.0; }
186 TClonesArray* hits = vzero->Hits();
188 // Now makes Digits from hits
190 Int_t nTracks = (Int_t) treeH->GetEntries();
191 for (Int_t iTrack = 0; iTrack < nTracks; iTrack++) {
193 treeH->GetEvent(iTrack);
194 Int_t nHits = hits->GetEntriesFast();
195 for (Int_t iHit = 0; iHit < nHits; iHit++) {
196 AliVZEROhit* hit = (AliVZEROhit *)hits->UncheckedAt(iHit);
197 Int_t nPhot = hit->Nphot();
198 Int_t cell = hit->Cell();
200 Float_t dt_scintillator = gRandom->Gaus(0,0.7);
201 time[cell] = dt_scintillator + 1e9*hit->Tof();
202 if(time[cell] < timeV0) timeV0 = time[cell];
206 loader->UnloadHits();
210 // Now builds the scintillator cell response (80 cells i.e. 80 responses)
212 for (Int_t i=0; i<80; i++) {
213 Float_t q1 = Float_t ( map[i] )* cPM * kQe;
214 Float_t noise = gRandom->Gaus(10.5,3.22);
215 Float_t pmResponse = q1/kC*TMath::Power(ktheta/kthau,1/(1-ktheta/kthau))
217 map[i] = Int_t( pmResponse * adc_gain[i]);
221 // Now transforms 80 cell responses into 64 photomultiplier responses
223 for (Int_t j=0; j<32; j++){
227 for (Int_t j=48; j<80; j++){
229 time2[j-16]= time[j];}
231 for (Int_t j=0; j<16; j++){
232 adc[16+j] = map [16 + 2*j]+ map [16 + 2*j + 1];
233 time2[16+j] = TMath::Min(time [16 + 2*j], time [16 + 2*j + 1]);}
235 // Now add digits to the digit Tree
237 for (Int_t i=0; i<64; i++) {
239 // printf(" Event, cell, adc, tof = %d %d %d %f\n",
240 // outRunLoader->GetEventNumber(),i, map[i], time[i]*100.0);
241 // multiply by 10 to have 100 ps per channel :
242 AddDigit(i, adc[i], Int_t(time2[i]*10.0) );
248 outLoader->WriteDigits("OVERWRITE");
249 outLoader->UnloadDigits();
253 //____________________________________________________________________________
254 void AliVZERODigitizer::AddDigit(Int_t PMnumber, Int_t adc, Int_t time)
259 TClonesArray &ldigits = *fDigits;
260 new(ldigits[fNdigits++]) AliVZEROdigit(PMnumber,adc,time);
262 //____________________________________________________________________________
263 void AliVZERODigitizer::ResetDigit()
269 if (fDigits) fDigits->Delete();
272 //____________________________________________________________________________
273 AliVZEROCalibData* AliVZERODigitizer::GetCalibData() const
276 AliCDBManager *man = AliCDBManager::Instance();
278 AliCDBEntry *entry=0;
280 entry = man->Get("VZERO/Calib/Data");
283 AliWarning("Load of calibration data from default storage failed!");
284 AliWarning("Calibration data will be loaded from local storage ($ALICE_ROOT)");
285 Int_t runNumber = man->GetRun();
286 entry = man->GetStorage("local://$ALICE_ROOT")
287 ->Get("VZERO/Calib/Data",runNumber);
291 // Retrieval of data in directory VZERO/Calib/Data:
294 AliVZEROCalibData *calibdata = 0;
296 if (entry) calibdata = (AliVZEROCalibData*) entry->GetObject();
297 if (!calibdata) AliError("No calibration data from calibration database !");