]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCDigitizer.cxx
Fixes in order to write correct raw-data on big-endian platforms (Marco)
[u/mrichter/AliRoot.git] / ZDC / AliZDCDigitizer.cxx
CommitLineData
8309c1ab 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// ZDC digitizer class //
21// //
22///////////////////////////////////////////////////////////////////////////////
23
24#include <stdlib.h>
25
26// --- ROOT system
27#include <TTree.h>
28#include <TFile.h>
29#include <TNtuple.h>
30#include <TRandom.h>
31
32// --- AliRoot header files
33#include "AliLog.h"
34#include "AliRun.h"
35#include "AliHeader.h"
36#include "AliGenHijingEventHeader.h"
37#include "AliRunDigitizer.h"
38#include "AliRunLoader.h"
78d18275 39#include "AliCDBManager.h"
48642b09 40#include "AliCDBEntry.h"
8309c1ab 41#include "AliZDCSDigit.h"
42#include "AliZDCDigit.h"
43#include "AliZDCFragment.h"
44#include "AliZDCDigitizer.h"
8a2624cc 45
46class AliCDBStorage;
47class AliZDCCalibData;
8309c1ab 48
49ClassImp(AliZDCDigitizer)
50
51
52//____________________________________________________________________________
53AliZDCDigitizer::AliZDCDigitizer()
54{
55// Default constructor
56
57}
58
59//____________________________________________________________________________
60AliZDCDigitizer::AliZDCDigitizer(AliRunDigitizer* manager):
61 AliDigitizer(manager)
62{
abf60186 63 fIsCalibration=0; //By default the simulation doesn't create calib. data
78d18275 64 // Get calibration data
7f73eb6b 65 fCalibData = GetCalibData();
31af5828 66 if(fIsCalibration!=0) printf("\t **** AliZDCDigitizer -> Creating calibration data (pedestals)\n");
78d18275 67
8309c1ab 68}
69
70//____________________________________________________________________________
71AliZDCDigitizer::~AliZDCDigitizer()
72{
73// Destructor
74
75}
76
77
cc2abffd 78//____________________________________________________________________________
79AliZDCDigitizer::AliZDCDigitizer(const AliZDCDigitizer &digitizer):
80 AliDigitizer()
81{
82 // Copy constructor
83
84 for(Int_t i=0; i<6; i++){
85 for(Int_t j=0; j<5; j++){
86 fPMGain[i][j] = digitizer.fPMGain[i][j];
87 }
88 }
89 for(Int_t i=0; i<2; i++) fADCRes[i] = digitizer.fADCRes[i];
90 fIsCalibration = digitizer.fIsCalibration;
91 fCalibData = digitizer.fCalibData;
92
93}
94
8309c1ab 95//____________________________________________________________________________
96Bool_t AliZDCDigitizer::Init()
97{
48642b09 98 // Initialize the digitizer
99 // NB -> PM gain vs. HV & ADC resolutions will move to DCDB ***************
7f73eb6b 100 for(Int_t j = 0; j < 5; j++){
101 fPMGain[0][j] = 50000.;
102 fPMGain[1][j] = 100000.;
103 fPMGain[2][j] = 100000.;
a017f01b 104 fPMGain[3][j] = 50000.;
105 fPMGain[4][j] = 100000.;
106 fPMGain[5][j] = 100000.;
7f73eb6b 107 }
108 // ADC Caen V965
109 fADCRes[0] = 0.0000008; // ADC Resolution high gain: 200 fC/adcCh
110 fADCRes[1] = 0.0000064; // ADC Resolution low gain: 25 fC/adcCh
8309c1ab 111
112 return kTRUE;
113}
114
115//____________________________________________________________________________
116void AliZDCDigitizer::Exec(Option_t* /*option*/)
117{
48642b09 118 // Execute digitization
8309c1ab 119
d79f8d50 120 // ------------------------------------------------------------
121 // !!! 2nd ZDC set added (needed for trigger purposes!)
7f73eb6b 122 // *** 1st 3 arrays are digits from REAL (simulated) hits
123 // *** last 2 are copied from simulated digits
124 // --- pm[0][...] = light in ZN right [C, Q1, Q2, Q3, Q4]
125 // --- pm[1][...] = light in ZP right [C, Q1, Q2, Q3, Q4]
48642b09 126 // --- pm[2][...] = light in ZEM [x, 1, 2, x, x]
7f73eb6b 127 // --- pm[3][...] = light in ZN left [C, Q1, Q2, Q3, Q4] ->NEW!
128 // --- pm[4][...] = light in ZP left [C, Q1, Q2, Q3, Q4] ->NEW!
d79f8d50 129 // ------------------------------------------------------------
130 Float_t pm[5][5];
8574b308 131 for(Int_t iSector1=0; iSector1<5; iSector1++)
132 for(Int_t iSector2=0; iSector2<5; iSector2++){
8309c1ab 133 pm[iSector1][iSector2] = 0;
134 }
d79f8d50 135
136 // ------------------------------------------------------------
137 // ### Out of time ADC added (22 channels)
138 // --- same codification as for signal PTMs (see above)
139 // ------------------------------------------------------------
140 Float_t pmoot[5][5];
8574b308 141 for(Int_t iSector1=0; iSector1<5; iSector1++)
142 for(Int_t iSector2=0; iSector2<5; iSector2++){
d79f8d50 143 pmoot[iSector1][iSector2] = 0;
144 }
8309c1ab 145
146 // impact parameter and number of spectators
147 Float_t impPar = -1;
148 Int_t specN = 0;
149 Int_t specP = 0;
150
151 // loop over input streams
8574b308 152 for(Int_t iInput = 0; iInput<fManager->GetNinputs(); iInput++){
8309c1ab 153
154 // get run loader and ZDC loader
155 AliRunLoader* runLoader =
156 AliRunLoader::GetRunLoader(fManager->GetInputFolderName(iInput));
157 AliLoader* loader = runLoader->GetLoader("ZDCLoader");
8574b308 158 if(!loader) continue;
8309c1ab 159
160 // load sdigits
161 loader->LoadSDigits();
162 TTree* treeS = loader->TreeS();
8574b308 163 if(!treeS) continue;
8309c1ab 164 AliZDCSDigit sdigit;
165 AliZDCSDigit* psdigit = &sdigit;
166 treeS->SetBranchAddress("ZDC", &psdigit);
167
168 // loop over sdigits
8574b308 169 for(Int_t iSDigit=0; iSDigit<treeS->GetEntries(); iSDigit++){
8309c1ab 170 treeS->GetEntry(iSDigit);
7f73eb6b 171 //
8574b308 172 if(!psdigit) continue;
173 if((sdigit.GetSector(1) < 0) || (sdigit.GetSector(1) > 4)){
8309c1ab 174 AliError(Form("\nsector[0] = %d, sector[1] = %d\n",
175 sdigit.GetSector(0), sdigit.GetSector(1)));
176 continue;
177 }
7f73eb6b 178 //
48642b09 179 pm[(sdigit.GetSector(0))-1][sdigit.GetSector(1)] += sdigit.GetLightPM();
7f73eb6b 180 /*printf("\n\t Detector %d, Tower %d -> pm[%d][%d] = %.0f \n",
48642b09 181 sdigit.GetSector(0), sdigit.GetSector(1),sdigit.GetSector(0)-1,
182 sdigit.GetSector(1), pm[sdigit.GetSector(0)-1][sdigit.GetSector(1)]); // Chiara debugging!
abf60186 183 */
8309c1ab 184 }
185
8309c1ab 186 loader->UnloadSDigits();
187
188 // get the impact parameter and the number of spectators in case of hijing
8574b308 189 if(!runLoader->GetAliRun()) runLoader->LoadgAlice();
8309c1ab 190 AliHeader* header = runLoader->GetAliRun()->GetHeader();
8574b308 191 if(!header) continue;
8309c1ab 192 AliGenEventHeader* genHeader = header->GenEventHeader();
8574b308 193 if(!genHeader) continue;
194 if(!genHeader->InheritsFrom(AliGenHijingEventHeader::Class())) continue;
8309c1ab 195 impPar = ((AliGenHijingEventHeader*) genHeader)->ImpactParameter();
85a96223 196 //
197 specN = ((AliGenHijingEventHeader*) genHeader)->ProjSpectatorsn();
198 specP = ((AliGenHijingEventHeader*) genHeader)->ProjSpectatorsp();
78d18275 199 AliDebug(2, Form("\n AliZDCDigitizer -> b = %f fm, Nspecn = %d, Nspecp = %d\n",
8309c1ab 200 impPar, specN, specP));
d79f8d50 201 printf("\n\t AliZDCDigitizer -> b = %f fm, NSpecn = %d, NSpecp = %d\n", impPar, specN, specP);
8309c1ab 202 }
203
204 // add spectators
8574b308 205 if(impPar >= 0) {
8309c1ab 206 Int_t freeSpecN, freeSpecP;
207 Fragmentation(impPar, specN, specP, freeSpecN, freeSpecP);
78d18275 208 printf("\n\t AliZDCDigitizer ---- Adding signal for %d free spectator n\n",freeSpecN);
8309c1ab 209 SpectatorSignal(1, freeSpecN, pm);
78d18275 210 printf("\t AliZDCDigitizer ---- Adding signal for %d free spectator p\n\n",freeSpecP);
8309c1ab 211 SpectatorSignal(2, freeSpecP, pm);
212 }
213
8a2624cc 214
8309c1ab 215 // get the output run loader and loader
216 AliRunLoader* runLoader =
217 AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
218 AliLoader* loader = runLoader->GetLoader("ZDCLoader");
8574b308 219 if(!loader) {
8309c1ab 220 AliError("no ZDC loader found");
221 return;
222 }
223
224 // create the output tree
225 const char* mode = "update";
8574b308 226 if(runLoader->GetEventNumber() == 0) mode = "recreate";
8309c1ab 227 loader->LoadDigits(mode);
228 loader->MakeTree("D");
229 TTree* treeD = loader->TreeD();
230 AliZDCDigit digit;
231 AliZDCDigit* pdigit = &digit;
232 const Int_t kBufferSize = 4000;
233 treeD->Branch("ZDC", "AliZDCDigit", &pdigit, kBufferSize);
234
235 // Create digits
7f73eb6b 236 Int_t sector[2], sectorL[2];
d79f8d50 237 Int_t digi[2], digiL[2], digioot[2];
abf60186 238 for(sector[0]=1; sector[0]<=3; sector[0]++){
239 for(sector[1]=0; sector[1]<5; sector[1]++){
240 if((sector[0]==3) && ((sector[1]<1) || (sector[1]>2))) continue;
8574b308 241 for(Int_t res=0; res<2; res++){
abf60186 242 digi[res] = Phe2ADCch(sector[0], sector[1], pm[sector[0]-1][sector[1]], res)
48642b09 243 + Pedestal(sector[0], sector[1], res);
7f73eb6b 244 }
abf60186 245 /*printf("\t DIGIT added -> det = %d, quad = %d - digi[0,1] = [%d, %d]\n",
246 sector[0], sector[1], digi[0], digi[1]); // Chiara debugging!
d79f8d50 247 */
abf60186 248 //
249 new(pdigit) AliZDCDigit(sector, digi);
8309c1ab 250 treeD->Fill();
7f73eb6b 251 //
252 // --- Adding digits for 2nd ZDC set (left side w.r.t. IP) ---
253 // --- they are copied from right ZDC digits
254 if(sector[0]==1 || sector[0]==2){
255 sectorL[0] = sector[0]+3;
256 sectorL[1] = sector[1];
8574b308 257 for(Int_t res=0; res<2; res++){
7f73eb6b 258 digiL[res] = Phe2ADCch(sectorL[0], sectorL[1], pm[sector[0]-1][sector[1]], res)
259 + Pedestal(sectorL[0], sectorL[1], res);
260 }
abf60186 261 /*printf("\t DIGIT added -> det = %d, quad = %d - digi[0,1] = [%d, %d]\n",
262 sectorL[0], sectorL[1], digiL[0], digiL[1]); // Chiara debugging!
263 */
264 //
265 new(pdigit) AliZDCDigit(sectorL, digiL);
266 treeD->Fill();
7f73eb6b 267 }
268 //
abf60186 269 //printf("\t AliZDCDigitizer -> TreeD has %d entries\n",(Int_t) treeD->GetEntries());
8309c1ab 270 }
abf60186 271 }
d79f8d50 272 //
273 // --- Adding digits for out-of-time channels after signal digits
274 for(sector[0]=1; sector[0]<=3; sector[0]++){
275 for(sector[1]=0; sector[1]<5; sector[1]++){
276 if((sector[0]==3) && ((sector[1]<1) || (sector[1]>2))) continue;
8574b308 277 for(Int_t res=0; res<2; res++){
d79f8d50 278 digioot[res] = Pedestal(sector[0], sector[1], res); // out-of-time ADCs
279 }
280 /*printf("\t DIGIToot added -> det = %d, quad = %d - digi[0,1] = [%d, %d]\n",
281 sector[0], sector[1], digioot[0], digioot[1]); // Chiara debugging!
282 */
283 //
284 new(pdigit) AliZDCDigit(sector, digioot);
285 treeD->Fill();
286 //
287 if(sector[0]==1 || sector[0]==2){
288 sectorL[0] = sector[0]+3;
289 sectorL[1] = sector[1];
8574b308 290 for(Int_t res=0; res<2; res++){
d79f8d50 291 digioot[res] = Pedestal(sectorL[0], sectorL[1], res); // out-of-time ADCs
292 }
293 /*printf("\t DIGIToot added -> det = %d, quad = %d - digi[0,1] = [%d, %d]\n",
294 sectorL[0], sectorL[1], digioot[0], digioot[1]); // Chiara debugging!
295 */
296 //
297 new(pdigit) AliZDCDigit(sectorL, digioot);
298 treeD->Fill();
299 }
300 //
301 //printf("\t AliZDCDigitizer -> TreeD has %d entries\n",(Int_t) treeD->GetEntries());
302 }
303 }
8309c1ab 304 // write the output tree
305 loader->WriteDigits("OVERWRITE");
306 loader->UnloadDigits();
307}
308
309
310//_____________________________________________________________________________
311void AliZDCDigitizer::Fragmentation(Float_t impPar, Int_t specN, Int_t specP,
312 Int_t &freeSpecN, Int_t &freeSpecP) const
313{
314// simulate fragmentation of spectators
315
316 Int_t zz[100], nn[100];
317 AliZDCFragment frag(impPar);
8574b308 318 for(Int_t j=0; j<=99; j++){
8309c1ab 319 zz[j] =0;
320 nn[j] =0;
321 }
322
323 // Fragments generation
324 Int_t nAlpha;
325 frag.GenerateIMF(zz, nAlpha);
326
327 // Attach neutrons
328 Int_t ztot=0;
329 Int_t ntot=0;
330 frag.AttachNeutrons(zz, nn, ztot, ntot);
331 freeSpecN = specN-ntot-2*nAlpha;
332 freeSpecP = specP-ztot-2*nAlpha;
3848c666 333 // Removing deuterons
334 Int_t ndeu = (Int_t) (frag.DeuteronNumber());
335 freeSpecN -= ndeu;
336 //
8309c1ab 337 if(freeSpecN<0) freeSpecN=0;
338 if(freeSpecP<0) freeSpecP=0;
339 AliDebug(2, Form("FreeSpn = %d, FreeSpp = %d", freeSpecN, freeSpecP));
340}
341
342//_____________________________________________________________________________
343void AliZDCDigitizer::SpectatorSignal(Int_t SpecType, Int_t numEvents,
344 Float_t pm[3][5]) const
345{
346// add signal of the spectators
347
348 TFile* file = NULL;
8574b308 349 if(SpecType == 1) { // --- Signal for spectator neutrons
e689b8ea 350 file = TFile::Open("$ALICE_ROOT/ZDC/ZNsignalntu.root");
8574b308 351 } else if(SpecType == 2) { // --- Signal for spectator protons
e689b8ea 352 file = TFile::Open("$ALICE_ROOT/ZDC/ZPsignalntu.root");
8309c1ab 353 }
8574b308 354 if(!file || !file->IsOpen()) {
8309c1ab 355 AliError("Opening of file failed");
356 return;
357 }
358
359 TNtuple* zdcSignal = (TNtuple*) file->Get("ZDCSignal");
360 Int_t nentries = (Int_t) zdcSignal->GetEntries();
361
362 Float_t *entry, hitsSpec[7];
363 Int_t pl, i, j, k, iev=0, rnd[125], volume[2];
48642b09 364 for(pl=0;pl<125;pl++) rnd[pl] = 0;
8574b308 365 if(numEvents > 125) {
8309c1ab 366 AliWarning(Form("numEvents (%d) is larger than 125", numEvents));
367 numEvents = 125;
368 }
369 for(pl=0;pl<numEvents;pl++){
370 rnd[pl] = (Int_t) (9999*gRandom->Rndm());
85a96223 371 if(rnd[pl] >= 9999) rnd[pl] = 9998;
8309c1ab 372 //printf(" rnd[%d] = %d\n",pl,rnd[pl]);
373 }
374 // Sorting vector in ascending order with C function QSORT
375 qsort((void*)rnd,numEvents,sizeof(Int_t),comp);
376 do{
377 for(i=0; i<nentries; i++){
378 zdcSignal->GetEvent(i);
379 entry = zdcSignal->GetArgs();
380 if(entry[0] == rnd[iev]){
381 for(k=0; k<2; k++) volume[k] = (Int_t) entry[k+1];
382 for(j=0; j<7; j++) hitsSpec[j] = entry[j+3];
48642b09 383 //
8309c1ab 384 Float_t lightQ = hitsSpec[4];
385 Float_t lightC = hitsSpec[5];
78d18275 386 AliDebug(3, Form("SpectatorSignal -> vol = (%d, %d), lightQ = %.0f, lightC = %.0f",
8309c1ab 387 volume[0], volume[1], lightQ, lightC));
48642b09 388 //printf("\n Volume = (%d, %d), lightQ = %.0f, lightC = %.0f",
389 // volume[0], volume[1], lightQ, lightC);
8574b308 390 if(volume[0] < 3) { // ZN or ZP
8309c1ab 391 pm[volume[0]-1][0] += lightC;
392 pm[volume[0]-1][volume[1]] += lightQ;
48642b09 393 //printf("\n pm[%d][0] = %.0f, pm[%d][%d] = %.0f\n",(volume[0]-1),pm[volume[0]-1][0],
394 // (volume[0]-1),volume[1],pm[volume[0]-1][volume[1]]);
395 }
396 else {
8574b308 397 if(volume[1] == 1) pm[2][1] += lightC; // ZEM 1
48642b09 398 else pm[2][2] += lightQ; // ZEM 2
399 //printf("\n pm[2][1] = %.0f, pm[2][2] = %.0f\n",pm[2][1],pm[2][2]);
400 }
8309c1ab 401 }
402 else if(entry[0] > rnd[iev]){
403 iev++;
404 continue;
405 }
406 }
407 }while(iev<numEvents);
408
409 file->Close();
410 delete file;
411}
412
413
414//_____________________________________________________________________________
415Int_t AliZDCDigitizer::Phe2ADCch(Int_t Det, Int_t Quad, Float_t Light,
416 Int_t Res) const
417{
48642b09 418 // Evaluation of the ADC channel corresponding to the light yield Light
8a2624cc 419 Int_t vADCch = (Int_t) (Light * fPMGain[Det-1][Quad] * fADCRes[Res]);
78d18275 420 //printf("\t Phe2ADCch -> det %d quad %d - phe %.0f ADC %d\n", Det,Quad,Light,ADCch);
7f73eb6b 421
8a2624cc 422 return vADCch;
48642b09 423}
8309c1ab 424
48642b09 425//_____________________________________________________________________________
426Int_t AliZDCDigitizer::Pedestal(Int_t Det, Int_t Quad, Int_t Res) const
427{
8a2624cc 428 // Returns a pedestal for detector det, PM quad, channel with res.
429 //
abf60186 430 Float_t PedValue;
dbc8d7fc 431
abf60186 432 // Normal run
433 if(fIsCalibration == 0){
434 Float_t meanPed, Pedwidth;
435 Int_t index=0;
436 if(Det==1|| Det==2) index = 10*(Det-1)+Quad+5*Res; // ZN1, ZP1
437 else if(Det==3) index = 10*(Det-1)+(Quad-1)+Res; // ZEM
438 else if(Det==4|| Det==5) index = 10*(Det-2)+Quad+5*Res+4; // ZN2, ZP2
439 meanPed = fCalibData->GetMeanPed(index);
440 Pedwidth = fCalibData->GetMeanPedWidth(index);
441 PedValue = gRandom->Gaus(meanPed,Pedwidth);
442 //
443 /*printf("\t Pedestal -> det = %d, quad = %d, res = %d - Ped[%d] = %d\n",
444 Det, Quad, index,(Int_t) PedValue); // Chiara debugging!
445 */
446 }
48642b09 447
7f73eb6b 448 // To create calibration object
abf60186 449 else PedValue = gRandom->Gaus((40.+10.*gRandom->Rndm()),5.);
450
dbc8d7fc 451
abf60186 452 return (Int_t) PedValue;
8309c1ab 453}
454
455//_____________________________________________________________________________
78d18275 456AliCDBStorage* AliZDCDigitizer::SetStorage(const char *uri)
8309c1ab 457{
8309c1ab 458
78d18275 459 Bool_t deleteManager = kFALSE;
48642b09 460
78d18275 461 AliCDBManager *manager = AliCDBManager::Instance();
462 AliCDBStorage *defstorage = manager->GetDefaultStorage();
48642b09 463
78d18275 464 if(!defstorage || !(defstorage->Contains("ZDC"))){
465 AliWarning("No default storage set or default storage doesn't contain ZDC!");
466 manager->SetDefaultStorage(uri);
467 deleteManager = kTRUE;
468 }
469
470 AliCDBStorage *storage = manager->GetDefaultStorage();
471
472 if(deleteManager){
473 AliCDBManager::Instance()->UnsetDefaultStorage();
474 defstorage = 0; // the storage is killed by AliCDBManager::Instance()->Destroy()
475 }
476
477 return storage;
478}
48642b09 479
78d18275 480//_____________________________________________________________________________
7f73eb6b 481AliZDCCalibData* AliZDCDigitizer::GetCalibData() const
78d18275 482{
4fda3ba1 483
484 // Getting calibration object for ZDC set
485
486 AliCDBEntry *entry = AliCDBManager::Instance()->Get("ZDC/Calib/Data");
457a440d 487 if(!entry) AliFatal("No calibration data loaded!");
488
489 AliZDCCalibData *calibdata = dynamic_cast<AliZDCCalibData*> (entry->GetObject());
490 if(!calibdata) AliFatal("Wrong calibration object in calibration file!");
8309c1ab 491
78d18275 492 return calibdata;
8309c1ab 493}
4fda3ba1 494