]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDC.cxx
Obsolete code removal
[u/mrichter/AliRoot.git] / ZDC / AliZDC.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 //                      Zero Degree Calorimeter                              //
21 //           This class contains the basic functions for the ZDCs;           //
22 //            functions specific to one particular geometry are              //
23 //                      contained in the derived classes                     //
24 //                                                                           //
25 ///////////////////////////////////////////////////////////////////////////////
26
27 // --- ROOT system
28 #include <TBRIK.h>
29 #include <TClonesArray.h>
30 #include <TGeometry.h>
31 #include <TNode.h>
32 #include <TTree.h>
33 #include <TFile.h>
34 #include <TSystem.h>
35 #include <TRandom.h>
36
37 // --- AliRoot header files
38 #include "AliDetector.h"
39 #include "AliRawDataHeader.h"
40 #include "AliRawReader.h"
41 #include "AliLoader.h"
42 #include "AliRun.h"
43 #include "AliMC.h"
44 #include "AliLog.h"
45 #include "AliDAQ.h"
46 #include "AliZDC.h"
47 #include "AliZDCHit.h"
48 #include "AliZDCSDigit.h"
49 #include "AliZDCDigit.h"
50 #include "AliZDCDigitizer.h"
51 #include "AliZDCRawStream.h"
52 #include "AliZDCCalibData.h"
53 #include "AliFstream.h"
54
55  
56 ClassImp(AliZDC)
57
58 AliZDC *gAliZDC;
59  
60 //_____________________________________________________________________________
61 AliZDC::AliZDC() :
62   AliDetector(),
63   fNoShower  (0),
64   fCalibData (0)
65
66 {
67   //
68   // Default constructor for the Zero Degree Calorimeter base class
69   //
70   
71   fIshunt = 1;
72   fNhits  = 0;
73   fHits = 0;
74   fDigits = 0;
75   fNdigits = 0;
76   
77 }
78  
79 //_____________________________________________________________________________
80 AliZDC::AliZDC(const char *name, const char *title) : 
81   AliDetector(name,title),
82   fNoShower  (0),
83   fCalibData (0)
84                  
85 {
86   //
87   // Standard constructor for the Zero Degree Calorimeter base class
88   //
89     
90   fIshunt = 1;
91   fNhits  = 0;
92   fDigits = 0;
93   fNdigits = 0;
94  
95   fHits = new TClonesArray("AliZDCHit",1000);
96   gAlice->GetMCApp()->AddHitList(fHits);
97   
98   char sensname[5],senstitle[25];
99   sprintf(sensname,"ZDC");
100   sprintf(senstitle,"ZDC dummy");
101   SetName(sensname); SetTitle(senstitle);
102
103   gAliZDC = this;
104
105 }
106
107 //____________________________________________________________________________ 
108 AliZDC::~AliZDC()
109 {
110   //
111   // ZDC destructor
112   //
113
114   fIshunt = 0;
115   gAliZDC = 0;
116
117   delete fCalibData;
118
119 }
120
121 //_____________________________________________________________________________
122 AliZDC::AliZDC(const AliZDC& ZDC) :
123   AliDetector("ZDC","ZDC")
124 {
125   // copy constructor
126     fNoShower = ZDC.fNoShower;
127     fCalibData = ZDC.fCalibData;
128     fZDCCalibFName = ZDC.fZDCCalibFName;
129 }
130
131 //_____________________________________________________________________________
132 AliZDC& AliZDC::operator=(const AliZDC& ZDC)
133 {
134   // assignement operator
135   if(this!=&ZDC){
136     fNoShower = ZDC.fNoShower;
137     fCalibData = ZDC.fCalibData;
138     fZDCCalibFName = ZDC.fZDCCalibFName;
139   } return *this;
140 }
141
142 //_____________________________________________________________________________
143 void AliZDC::AddHit(Int_t track, Int_t *vol, Float_t *hits)
144 {
145   //
146   //            Add a ZDC hit to the hit list.
147   // -> We make use of 2 array of hits:
148   // [1]  fHits (the usual one) that contains hits for each PRIMARY
149   // [2]  fStHits that contains hits for each EVENT and is used to
150   //      obtain digits at the end of each event
151   //
152   
153   static Float_t primKinEn, xImpact, yImpact, sFlag;
154
155   AliZDCHit *newquad, *curprimquad;
156   newquad = new AliZDCHit(fIshunt, track, vol, hits);
157   TClonesArray &lhits = *fHits;
158   
159   if(fNhits==0){
160       // First hit -> setting flag for primary or secondary particle
161       Int_t primary = gAlice->GetMCApp()->GetPrimary(track);     
162       if(track != primary){
163         newquad->SetSFlag(1);  // SECONDARY particle entering the ZDC
164       }
165       else if(track == primary){
166         newquad->SetSFlag(0);  // PRIMARY particle entering the ZDC
167       }  
168       sFlag     = newquad->GetSFlag();
169       primKinEn = newquad->GetPrimKinEn();
170       xImpact   = newquad->GetXImpact();
171       yImpact   = newquad->GetYImpact();
172    }
173    else{       
174       newquad->SetPrimKinEn(primKinEn);
175       newquad->SetXImpact(xImpact);
176       newquad->SetYImpact(yImpact);
177       newquad->SetSFlag(sFlag);
178    }
179  
180   Int_t j;
181   for(j=0; j<fNhits; j++){
182     // If hits are equal (same track, same volume), sum them.
183      curprimquad = (AliZDCHit*) lhits[j];
184      if(*curprimquad == *newquad){
185         *curprimquad = *curprimquad+*newquad;
186         // CH. debug
187         /*if(newquad->GetEnergy() != 0. || newquad->GetLightPMC() != 0. || 
188            newquad->GetLightPMQ() != 0.){
189           printf("\n\t --- Equal hits found\n");
190           curprimquad->Print("");
191           newquad->Print("");
192           printf("\t --- Det. %d, Quad. %d: X = %f, E = %f, LightPMC = %f, LightPMQ = %f\n",
193           curprimquad->GetVolume(0),curprimquad->GetVolume(1),curprimquad->GetXImpact(),
194           curprimquad->GetEnergy(), curprimquad->GetLightPMC(), curprimquad->GetLightPMQ());
195         }*/
196         //
197         delete newquad;
198         return;
199      } 
200   }
201
202     //Otherwise create a new hit
203     new(lhits[fNhits]) AliZDCHit(*newquad);
204     fNhits++;
205     // CH. debug
206     /*printf("\n\t New ZDC hit added! fNhits = %d\n", fNhits);
207     printf("\t Det. %d, Quad.t %d: X = %f, E = %f, LightPMC = %f, LightPMQ = %f\n",
208     newquad->GetVolume(0),newquad->GetVolume(1),newquad->GetXImpact(),
209     newquad->GetEnergy(), newquad->GetLightPMC(), newquad->GetLightPMQ());
210     */
211     delete newquad;
212 }
213
214 //_____________________________________________________________________________
215 void AliZDC::BuildGeometry()
216 {
217   //
218   // Build the ROOT TNode geometry for event display 
219   // in the Zero Degree Calorimeter
220   // This routine is dummy for the moment
221   //
222
223   TNode *node, *top;
224   TBRIK *brik;
225   const int kColorZDC  = kBlue;
226   
227   //
228   top=gAlice->GetGeometry()->GetNode("alice");
229   
230   // ZDC
231     brik = new TBRIK("S_ZDC","ZDC box","void",300,300,5);
232     top->cd();
233     node = new TNode("ZDC","ZDC","S_ZDC",0,0,600,"");
234     node->SetLineColor(kColorZDC);
235     fNodes->Add(node);
236 }
237
238 //____________________________________________________________________________
239 Float_t AliZDC::ZMin(void) const
240 {
241   // Minimum dimension of the ZDC module in z
242   return -11600.;
243 }
244
245 //____________________________________________________________________________
246 Float_t AliZDC::ZMax(void) const
247 {
248   // Maximum dimension of the ZDC module in z
249   return -11750.;
250 }
251   
252
253 //_____________________________________________________________________________
254 void AliZDC::MakeBranch(Option_t *opt)
255 {
256   //
257   // Create Tree branches for the ZDC
258   //
259
260   char branchname[10];
261   sprintf(branchname,"%s",GetName());
262
263   const char *cH = strstr(opt,"H");
264   
265   if(cH && fLoader->TreeH())
266    fHits   = new TClonesArray("AliZDCHit",1000); 
267   
268   AliDetector::MakeBranch(opt);
269 }
270
271 //_____________________________________________________________________________
272 void AliZDC::Hits2SDigits()
273 {
274   // Create summable digits from hits
275   
276   AliDebug(1,"\n        Entering AliZDC::Hits2Digits() ");
277   
278   fLoader->LoadHits("read");
279   fLoader->LoadSDigits("recreate");
280   AliRunLoader* runLoader = fLoader->GetRunLoader();
281   AliZDCSDigit sdigit;
282   AliZDCSDigit* psdigit = &sdigit;
283
284   // Event loop
285   for(Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
286     Float_t pmCZN = 0, pmCZP = 0, pmQZN[4], pmQZP[4], pmZEM1 = 0, pmZEM2 = 0;
287     for(Int_t i = 0; i < 4; i++) pmQZN[i] = pmQZP[i] = 0;
288
289     runLoader->GetEvent(iEvent);
290     TTree* treeH = fLoader->TreeH();
291     Int_t ntracks = (Int_t) treeH->GetEntries();
292     ResetHits();
293
294     // Tracks loop
295     Int_t sector[2];
296     for(Int_t itrack = 0; itrack < ntracks; itrack++) {
297       treeH->GetEntry(itrack);
298       for(AliZDCHit* zdcHit = (AliZDCHit*)FirstHit(-1); zdcHit;
299                       zdcHit = (AliZDCHit*)NextHit()) { 
300                       
301         sector[0] = zdcHit->GetVolume(0);
302         sector[1] = zdcHit->GetVolume(1);
303         if((sector[1] < 1) || (sector[1] > 4)) {
304           Error("Hits2SDigits", "sector[0] = %d, sector[1] = %d", 
305                 sector[0], sector[1]);
306           continue;
307         }
308         Float_t lightQ = zdcHit->GetLightPMQ();
309         Float_t lightC = zdcHit->GetLightPMC();
310      
311         if(sector[0] == 1) {          //ZN 
312           pmCZN += lightC;
313           pmQZN[sector[1]-1] += lightQ;
314         } else if(sector[0] == 2) {   //ZP 
315           pmCZP += lightC;
316           pmQZP[sector[1]-1] += lightQ;
317         } else if(sector[0] == 3) {   //ZEM 
318           if(sector[1] == 1) pmZEM1 += lightC;
319           else                pmZEM2 += lightQ;
320         }
321       }//Hits loop
322     }
323
324     // create the output tree
325     fLoader->MakeTree("S");
326     TTree* treeS = fLoader->TreeS();
327     const Int_t kBufferSize = 4000;
328     treeS->Branch(GetName(), "AliZDCSDigit", &psdigit, kBufferSize);
329
330     // Create sdigits for ZN1
331     sector[0] = 1; // Detector = ZN1
332     sector[1] = 0; // Common PM ADC
333     new(psdigit) AliZDCSDigit(sector, pmCZN);
334     if(pmCZN > 0) treeS->Fill();
335     for(Int_t j = 0; j < 4; j++) {
336       sector[1] = j+1; // Towers PM ADCs
337       new(psdigit) AliZDCSDigit(sector, pmQZN[j]);
338       if(pmQZN[j] > 0) treeS->Fill();
339     }
340   
341     // Create sdigits for ZP1
342     sector[0] = 2; // Detector = ZP1
343     sector[1] = 0; // Common PM ADC
344     new(psdigit) AliZDCSDigit(sector, pmCZP);
345     if(pmCZP > 0) treeS->Fill();
346     for(Int_t j = 0; j < 4; j++) {
347       sector[1] = j+1; // Towers PM ADCs
348       new(psdigit) AliZDCSDigit(sector, pmQZP[j]);
349       if(pmQZP[j] > 0) treeS->Fill();
350     }
351
352     // Create sdigits for ZEM
353     sector[0] = 3; 
354     sector[1] = 1; // Detector = ZEM1
355     new(psdigit) AliZDCSDigit(sector, pmZEM1);
356     if(pmZEM1 > 0) treeS->Fill();
357     sector[1] = 2; // Detector = ZEM2
358     new(psdigit) AliZDCSDigit(sector, pmZEM2);
359     if(pmZEM2 > 0) treeS->Fill();
360
361     // write the output tree
362     fLoader->WriteSDigits("OVERWRITE");
363   }
364
365   fLoader->UnloadHits();
366   fLoader->UnloadSDigits();
367 }
368
369 //_____________________________________________________________________________
370 AliDigitizer* AliZDC::CreateDigitizer(AliRunDigitizer* manager) const
371 {
372   // Create the digitizer for ZDC
373
374   return new AliZDCDigitizer(manager);
375 }
376
377 //_____________________________________________________________________________
378 void AliZDC::Digits2Raw()
379 {
380   // Convert ZDC digits to raw data
381
382   // Format: 24 int values -> ZN1(C+Q1-4), ZP1(C+Q1-4), ZEM1, ZEM2, ZN(C+Q1-4), ZP2(C+Q1-4), 2 Ref PMs
383   //         + 24 int values for the corresponding out of time channels
384   // For the CAEN module V965 we have an Header, the Data Words and an End Of Block
385   //    12 channels x 2 gain chains read from 1st ADC module
386   //    12 channels x 2 gain chains read from 2nd ADC module
387   //    12 channels x 2 gain chains read from 3rd ADC module (o.o.t.)
388   //    12 channels x 2 gain chains read from 4rth ADC module (o.o.t.)
389   //
390   const int knADCData1=24, knADCData2=24; // In principle the 2 numbers can be different!
391   UInt_t lADCHeader1; 
392   UInt_t lADCHeader2; 
393   UInt_t lADCData1[knADCData1];
394   UInt_t lADCData2[knADCData2];
395   UInt_t lADCData3[knADCData1];
396   UInt_t lADCData4[knADCData2];
397   //
398   UInt_t lADCEndBlock;
399
400   // load the digits
401   fLoader->LoadDigits("read");
402   AliZDCDigit digit;
403   AliZDCDigit* pdigit = &digit;
404   TTree* treeD = fLoader->TreeD();
405   if(!treeD) return;
406   treeD->SetBranchAddress("ZDC", &pdigit);
407   //printf("\t AliZDC::Digits2Raw -> TreeD has %d entries\n",(Int_t) treeD->GetEntries());
408
409   // Fill data array
410   // ADC header
411   UInt_t lADCHeaderGEO = 0;
412   UInt_t lADCHeaderCRATE = 0;
413   UInt_t lADCHeaderCNT1 = knADCData1;
414   UInt_t lADCHeaderCNT2 = knADCData2;
415     
416   lADCHeader1 = lADCHeaderGEO << 27 | 0x1 << 25 | lADCHeaderCRATE << 16 |
417                lADCHeaderCNT1 << 8 ;
418   lADCHeader2 = lADCHeaderGEO << 27 | 0x1 << 25 | lADCHeaderCRATE << 16 |
419                lADCHeaderCNT2 << 8 ;
420       
421   // ADC data word
422   UInt_t lADCDataGEO = lADCHeaderGEO;
423   //
424   UInt_t lADCDataValue1[knADCData1];
425   UInt_t lADCDataValue2[knADCData2];
426   UInt_t lADCDataValue3[knADCData1];
427   UInt_t lADCDataValue4[knADCData2];
428   //
429   UInt_t lADCDataOvFlw1[knADCData1];
430   UInt_t lADCDataOvFlw2[knADCData2];
431   UInt_t lADCDataOvFlw3[knADCData1];
432   UInt_t lADCDataOvFlw4[knADCData2];
433   //
434   for(Int_t i=0; i<knADCData1 ; i++){
435     lADCDataValue1[i] = 0;
436     lADCDataOvFlw1[i] = 0;
437     lADCDataValue3[i] = 0;
438     lADCDataOvFlw3[i] = 0;
439   }
440   for(Int_t i=0; i<knADCData2 ; i++){
441     lADCDataValue2[i] = 0;
442     lADCDataOvFlw2[i] = 0;
443     lADCDataValue4[i] = 0;
444     lADCDataOvFlw4[i] = 0;
445   }
446   //
447   UInt_t lADCDataChannel = 0;
448   
449   // loop over digits
450   for(Int_t iDigit=0; iDigit<treeD->GetEntries(); iDigit++){
451     treeD->GetEntry(iDigit);
452     if(!pdigit) continue;
453     //digit.Print("");
454     
455     // *** ADC data
456     Int_t index=0;
457     if(digit.GetSector(1)!=5){ // ZDC signal channels
458       // *** ADC1 (ZN1, ZP1, ZEM1,2) or ADC3 (ZN1, ZP1, ZEM1,2 o.o.t.)
459       if(digit.GetSector(0)==1 || digit.GetSector(0)==2 || digit.GetSector(0)==3){
460         if(digit.GetSector(0)==1 || digit.GetSector(0)==2){
461           index = (digit.GetSector(0)-1) + 4*digit.GetSector(1); // ZN1 or ZP1
462           lADCDataChannel = 8*(digit.GetSector(0)-1) + digit.GetSector(1);
463         }
464         else if(digit.GetSector(0)==3){ // ZEM 1,2
465           index = 20 + (digit.GetSector(1)-1);
466           lADCDataChannel = 5 + 8*(digit.GetSector(1)-1);
467         }
468         //
469         /*printf("\t AliZDC::Digits2Raw -> idig%d det %d quad %d index %d, ADCch %d ADCVal[%d, %d]\n",
470                 iDigit,digit.GetSector(0),digit.GetSector(1),index,lADCDataChannel,
471                 digit.GetADCValue(0),digit.GetADCValue(1));// Ch. debug
472         */
473         //
474         if(iDigit<knADCData1){ // *** In-time signals
475           lADCDataValue1[index] = digit.GetADCValue(0);   // High gain ADC ch.    
476           if(lADCDataValue1[index] > 2047) lADCDataOvFlw1[index] = 1; 
477           lADCDataValue1[index+2] = digit.GetADCValue(1); // Low gain ADC ch.
478           if(lADCDataValue1[index+2] > 2047) lADCDataOvFlw1[index+2] = 1; 
479         
480           lADCData1[index] = lADCDataGEO << 27 | 0x1 << 24 | lADCDataChannel << 17 | 
481                           lADCDataOvFlw1[index] << 12 | (lADCDataValue1[index] & 0xfff); 
482           lADCData1[index+2] = lADCDataGEO << 27 | 0x1 << 24  | lADCDataChannel << 17 | 0x1 << 16 |
483                           lADCDataOvFlw1[index+2] << 12 | (lADCDataValue1[index+2] & 0xfff);  
484         }
485         else{ // *** Out-of-time signals
486           lADCDataValue3[index] = digit.GetADCValue(0);   // High gain ADC ch.    
487           if(lADCDataValue3[index] > 2047) lADCDataOvFlw3[index] = 1; 
488           lADCDataValue3[index+2] = digit.GetADCValue(1); // Low gain ADC ch.
489           if(lADCDataValue3[index+2] > 2047) lADCDataOvFlw3[index+2] = 1; 
490       
491           lADCData3[index] = lADCDataGEO << 27 | lADCDataChannel << 17 | 
492                           lADCDataOvFlw3[index] << 12 | (lADCDataValue3[index] & 0xfff); 
493           lADCData3[index+2] = lADCDataGEO << 27 | lADCDataChannel << 17 | 0x1 << 16 |
494                           lADCDataOvFlw3[index+2] << 12 | (lADCDataValue3[index+2] & 0xfff);  
495         }                  
496       }
497       // *** ADC2 (ZN2, ZP2) or ADC4 (ZN2, ZP2 o.o.t.)
498       else if(digit.GetSector(0)==4 || digit.GetSector(0)==5){
499         index = (digit.GetSector(0)-4) + 4*digit.GetSector(1); // ZN2 or ZP2
500         lADCDataChannel = 8*(digit.GetSector(0)-4) + digit.GetSector(1);
501         //
502         /*printf("\t AliZDC::Digits2Raw -> idig%d det %d quad %d index %d, ADCch %d ADCVal[%d, %d]\n",
503                 iDigit,digit.GetSector(0),digit.GetSector(1),index,lADCDataChannel,
504                 digit.GetADCValue(0),digit.GetADCValue(1));// Ch. debug
505         */
506         //
507         if(iDigit<knADCData2){ // *** In-time signals
508           lADCDataValue2[index] = digit.GetADCValue(0);
509           if(lADCDataValue2[index] > 2047) lADCDataOvFlw2[index] = 1; 
510           lADCDataValue2[index+2] = digit.GetADCValue(1);
511           if(lADCDataValue2[index+2] > 2047) lADCDataOvFlw2[index+2] = 1; 
512           //
513           lADCData2[index] =   lADCDataGEO << 27 | lADCDataChannel << 17 | 
514                           lADCDataOvFlw2[index] << 12 | (lADCDataValue2[index] & 0xfff); 
515           lADCData2[index+2] = lADCDataGEO << 27 | lADCDataChannel << 17 | 0x1 << 16 |
516                           lADCDataOvFlw2[index+2] << 12 | (lADCDataValue2[index+2] & 0xfff);   
517         }                 
518         else{ // *** Out-of-time signals
519           lADCDataValue4[index] = digit.GetADCValue(0);
520           if(lADCDataValue4[index] > 2047) lADCDataOvFlw4[index] = 1; 
521           lADCDataValue4[index+2] = digit.GetADCValue(1);
522           if(lADCDataValue4[index+2] > 2047) lADCDataOvFlw4[index+2] = 1; 
523           //
524           lADCData4[index] =   lADCDataGEO << 27 | lADCDataChannel << 17 | 
525                         lADCDataOvFlw4[index] << 12 | (lADCDataValue4[index] & 0xfff); 
526           lADCData4[index+2] = lADCDataGEO << 27 | lADCDataChannel << 17 | 0x1 << 16 |
527                         lADCDataOvFlw4[index+2] << 12 | (lADCDataValue4[index+2] & 0xfff);   
528         }                 
529       }
530     }
531     // *** ADC2 (Reference PTMs) or ADC4 (Reference PTMs o.o.t.)
532     else if(digit.GetSector(1)==5){
533       index = 20 + (digit.GetSector(0)-1)*1/3; 
534       lADCDataChannel = 5 + (digit.GetSector(0)-1)*8/3;
535       //
536       /*printf("\t AliZDC::Digits2Raw -> idig%d det %d quad %d index %d, ADCch %d ADCVal[%d, %d]\n",
537                 iDigit,digit.GetSector(0),digit.GetSector(1),index,lADCDataChannel,
538                 digit.GetADCValue(0),digit.GetADCValue(1));// Ch. debug
539       */
540       //
541       if(iDigit<knADCData2){ // *** In-time signals
542         lADCDataValue2[index] = digit.GetADCValue(0);
543         if(lADCDataValue2[index] > 2047) lADCDataOvFlw2[index] = 1; 
544         lADCDataValue2[index+2] = digit.GetADCValue(1);
545         if(lADCDataValue2[index+2] > 2047) lADCDataOvFlw2[index+2] = 1; 
546         //
547         lADCData2[index] =   lADCDataGEO << 27 | lADCDataChannel << 17 | 
548                         lADCDataOvFlw2[index] << 12 | (lADCDataValue2[index] & 0xfff); 
549         lADCData2[index+2] = lADCDataGEO << 27 | lADCDataChannel << 17 | 0x1 << 16 |
550                         lADCDataOvFlw2[index+2] << 12 | (lADCDataValue2[index+2] & 0xfff);   
551       }                 
552       else{ // *** Out-of-time signals
553         lADCDataValue4[index] = digit.GetADCValue(0);
554         if(lADCDataValue4[index] > 2047) lADCDataOvFlw4[index] = 1; 
555         lADCDataValue4[index+2] = digit.GetADCValue(1);
556         if(lADCDataValue4[index+2] > 2047) lADCDataOvFlw4[index+2] = 1; 
557         //
558         lADCData4[index] =   lADCDataGEO << 27 | lADCDataChannel << 17 | 
559                       lADCDataOvFlw4[index] << 12 | (lADCDataValue4[index] & 0xfff); 
560         lADCData4[index+2] = lADCDataGEO << 27 | lADCDataChannel << 17 | 0x1 << 16 |
561                       lADCDataOvFlw4[index+2] << 12 | (lADCDataValue4[index+2] & 0xfff);   
562       }                 
563            
564     }
565     if((index<0) || (index>23)) {
566       Error("Digits2Raw", "sector[0] = %d, sector[1] = %d", 
567             digit.GetSector(0), digit.GetSector(1));
568       continue;
569     }
570     
571     
572   }
573   //
574   /*
575   for(Int_t i=0;i<24;i++) printf("\t ADCData1[%d] = %x\n",i,lADCData1[i]);
576   for(Int_t i=0;i<20;i++) printf("\t ADCData2[%d] = %x\n",i,lADCData2[i]);
577   for(Int_t i=0;i<24;i++) printf("\t ADCData3[%d] = %x\n",i,lADCData3[i]);
578   for(Int_t i=0;i<20;i++) printf("\t ADCData4[%d] = %x\n",i,lADCData4[i]);
579   */
580  
581   // End of Block
582   UInt_t lADCEndBlockGEO = lADCHeaderGEO;
583   UInt_t lADCEndBlockEvCount = gAlice->GetEventNrInRun();
584   //  
585   lADCEndBlock = lADCEndBlockGEO << 27 | 0x1 << 26 | lADCEndBlockEvCount;
586   //printf("\t AliZDC::Digits2Raw -> ADCEndBlock = %d\n",lADCEndBlock);
587
588
589   // open the output file
590   char fileName[30];
591   strcpy(fileName,AliDAQ::DdlFileName("ZDC",0));
592
593   AliFstream* file = new AliFstream(fileName);
594
595   // write the DDL data header
596   AliRawDataHeader header;
597   header.fSize = sizeof(header) + 
598                  sizeof(lADCHeader1) + sizeof(lADCData1) + sizeof(lADCEndBlock) +
599                  sizeof(lADCHeader2) + sizeof(lADCData2) + sizeof(lADCEndBlock) +
600                  sizeof(lADCHeader1) + sizeof(lADCData3) + sizeof(lADCEndBlock) +
601                  sizeof(lADCHeader2) + sizeof(lADCData4) + sizeof(lADCEndBlock);
602   //
603   /*printf("sizeof header = %d, ADCHeader1 = %d, ADCData1 = %d, ADCEndBlock = %d\n",
604           sizeof(header),sizeof(lADCHeader1),sizeof(lADCData1),sizeof(lADCEndBlock));
605   printf("sizeof header = %d, ADCHeader2 = %d, ADCData2 = %d, ADCEndBlock = %d\n",
606           sizeof(header),sizeof(lADCHeader2),sizeof(lADCData2),sizeof(lADCEndBlock));
607   */
608   //     
609   header.SetAttribute(0);  // valid data
610   file->WriteBuffer((char*)(&header), sizeof(header));
611
612   // write the raw data and close the file
613   file->WriteBuffer((char*) &lADCHeader1, sizeof (lADCHeader1));
614   file->WriteBuffer((char*)(lADCData1), sizeof(lADCData1));
615   file->WriteBuffer((char*) &lADCEndBlock, sizeof(lADCEndBlock));
616   file->WriteBuffer((char*) &lADCHeader2, sizeof (lADCHeader2));
617   file->WriteBuffer((char*)(lADCData2), sizeof(lADCData2));
618   file->WriteBuffer((char*) &lADCEndBlock, sizeof(lADCEndBlock));
619   file->WriteBuffer((char*) &lADCHeader1, sizeof (lADCHeader1));
620   file->WriteBuffer((char*)(lADCData3), sizeof(lADCData3));
621   file->WriteBuffer((char*) &lADCEndBlock, sizeof(lADCEndBlock));
622   file->WriteBuffer((char*) &lADCHeader2, sizeof (lADCHeader2));
623   file->WriteBuffer((char*)(lADCData4), sizeof(lADCData4));
624   file->WriteBuffer((char*) &lADCEndBlock, sizeof(lADCEndBlock));
625   delete file;
626
627   // unload the digits
628   fLoader->UnloadDigits();
629 }
630
631 //_____________________________________________________________________________
632 Bool_t AliZDC::Raw2SDigits(AliRawReader* rawReader)
633 {
634   // Convert ZDC raw data to Sdigits
635   
636   AliLoader* loader = (gAlice->GetRunLoader())->GetLoader("ZDCLoader");
637   if(!loader) {
638     AliError("no ZDC loader found");
639     return kFALSE;
640   }
641
642 //  // Event loop
643   Int_t iEvent = 0;
644   while(rawReader->NextEvent()){
645     (gAlice->GetRunLoader())->GetEvent(iEvent++);
646     // Create the output digit tree
647     TTree* treeS = loader->TreeS();
648     if(!treeS){
649       loader->MakeTree("S");
650       treeS = loader->TreeS();
651     }
652     //
653     AliZDCSDigit sdigit;
654     AliZDCSDigit* psdigit = &sdigit;
655     const Int_t kBufferSize = 4000;
656     treeS->Branch("ZDC", "AliZDCSDigit",  &psdigit, kBufferSize);
657     //
658     AliZDCRawStream rawStream(rawReader);
659     Int_t sector[2], ADCRes, ADCRaw, ADCPedSub, nPheVal;
660     Int_t jcount = 0;
661     while(rawStream.Next()){
662       if(rawStream.IsADCDataWord()){
663         //For the moment only in-time SDigits are foreseen (1st 48 raw values)
664         if(jcount < 48){ 
665           for(Int_t j=0; j<2; j++) sector[j] = rawStream.GetSector(j);
666           ADCRaw = rawStream.GetADCValue();
667           ADCRes = rawStream.GetADCGain();
668           //printf("\t RAw2SDigits raw%d ->  RawADC[%d, %d, %d] read\n",
669           //    jcount, sector[0], sector[1], ADCRaw);
670           //
671           ADCPedSub = ADCRaw - Pedestal(sector[0], sector[1], ADCRes);
672           if(ADCPedSub<0) ADCPedSub=0;
673           nPheVal = ADCch2Phe(sector[0], sector[1], ADCPedSub, ADCRes);
674           //
675           //printf("\t \t ->  SDigit[%d, %d, %d] created\n",
676           //    sector[0], sector[1], nPheVal);
677           //
678           new(psdigit) AliZDCSDigit(sector, (Float_t) nPheVal);
679           treeS->Fill();
680           jcount++;
681         }
682       }//IsADCDataWord
683     }//rawStream.Next
684     // write the output tree
685     fLoader->WriteSDigits("OVERWRITE");
686     fLoader->UnloadSDigits();
687   }//Event loop 
688    
689   return kTRUE;
690 }
691
692 //_____________________________________________________________________________
693 Int_t AliZDC::Pedestal(Int_t Det, Int_t Quad, Int_t Res) const
694 {
695   // Returns a pedestal for detector det, PM quad, channel with res.
696   //
697   // Getting calibration object for ZDC set
698   AliCDBManager *man = AliCDBManager::Instance();
699   AliCDBEntry  *entry = man->Get("ZDC/Calib/Data");
700   AliZDCCalibData *CalibData = (AliZDCCalibData*) entry->GetObject();
701   //
702   if(!CalibData){
703     printf("\t No calibration object found for ZDC!");
704     return -1;
705   }
706   //
707   Float_t PedValue;
708   Float_t meanPed, Pedwidth;
709   Int_t index=0;
710   if(Quad!=5){
711     if(Det==1 || Det==2)      index = 10*(Det-1)+Quad+5*Res;   // ZN1, ZP1
712     else if(Det==3)           index = 10*(Det-1)+(Quad-1)+Res; // ZEM
713     else if(Det==4 || Det==5) index = 10*(Det-2)+Quad+5*Res+4; // ZN2, ZP2
714   }
715   else index = 10*(Quad-1)+(Det-1)*1/3+2*Res+4; // Reference PMs
716   //
717   //
718   meanPed = CalibData->GetMeanPed(index);
719   Pedwidth = CalibData->GetMeanPedWidth(index);
720   PedValue = gRandom->Gaus(meanPed,Pedwidth);
721   //
722   //printf("\t AliZDC::Pedestal - det(%d, %d) - Ped[%d] = %d\n",Det, Quad, index,(Int_t) PedValue); // Chiara debugging!
723   
724   
725
726   return (Int_t) PedValue;
727 }
728
729
730 //_____________________________________________________________________________
731 Int_t AliZDC::ADCch2Phe(Int_t Det, Int_t Quad, Int_t ADCVal, Int_t Res) const
732 {
733   // Evaluation of the no. of phe produced
734   Float_t PMGain[6][5];
735   Float_t ADCRes[2];
736   for(Int_t j = 0; j < 5; j++){
737     PMGain[0][j] = 50000.;
738     PMGain[1][j] = 100000.;
739     PMGain[2][j] = 100000.;
740     PMGain[3][j] = 50000.;
741     PMGain[4][j] = 100000.;
742     PMGain[5][j] = 100000.;
743   }
744   // ADC Caen V965
745   ADCRes[0] = 0.0000008; // ADC Resolution high gain: 200 fC/adcCh
746   ADCRes[1] = 0.0000064; // ADC Resolution low gain:  25  fC/adcCh
747   //
748   Int_t nPhe = (Int_t) (ADCVal * PMGain[Det-1][Quad] * ADCRes[Res]);
749   //
750   //printf("\t AliZDC::ADCch2Phe -> det(%d, %d) - ADC %d  phe %d\n",Det,Quad,ADCVal,nPhe);
751
752   return nPhe;
753 }
754
755 //______________________________________________________________________
756 void AliZDC::SetTreeAddress(){
757
758   // Set branch address for the Trees.
759   if(fLoader->TreeH() && (fHits == 0x0))
760     fHits   = new TClonesArray("AliZDCHit",1000);
761       
762   AliDetector::SetTreeAddress();
763 }
764  
765 //________________________________________________________________
766 void AliZDC::CreateCalibData()
767 {
768   // 
769   //if(fCalibData) delete fCalibData; // delete previous version
770   fCalibData = new AliZDCCalibData(GetName());
771 }
772 //________________________________________________________________
773 void AliZDC::WriteCalibData(Int_t option)
774 {
775   //
776   const int kCompressLevel = 9;
777   char* fnam = GetZDCCalibFName();
778   if(!fnam || fnam[0]=='\0') {
779     fnam = gSystem->ExpandPathName("$(ALICE_ROOT)/data/AliZDCCalib.root");
780     Warning("WriteCalibData","No File Name is provided, using default %s",fnam);
781   }
782   TFile* cdfile = TFile::Open(fnam,"UPDATE","",kCompressLevel);
783
784   // Writes Calibration Data to current directory. 
785   // User MUST take care of corresponding file opening and ->cd()... !!!
786   // By default, the object is overwritten. Use 0 option for opposite.
787   if(option) option = TObject::kOverwrite;
788   if(fCalibData) fCalibData->Write(0,option);
789   else if(fCalibData) fCalibData->Write(0,option);
790
791   cdfile->Close();
792   delete cdfile;
793 }
794
795 //________________________________________________________________
796 void AliZDC::LoadCalibData()
797 {
798   //
799   char* fnam = GetZDCCalibFName();
800   if(!fnam || fnam[0]=='\0') return; 
801   if(!gAlice->IsFileAccessible(fnam)) {
802     Error("LoadCalibData","ZDC Calibration Data file is not accessible, %s",fnam);
803     exit(1);
804   }
805   TFile* cdfile = TFile::Open(fnam);
806
807   // Loads Calibration Data from current directory. 
808   // User MUST take care of corresponding file opening and ->cd()...!!!
809   //
810   if(fCalibData) delete fCalibData; // delete previous version
811   TString dtname = "Calib_";
812   dtname += GetName();
813   fCalibData = (AliZDCCalibData*) gDirectory->Get(dtname.Data());
814   if(!fCalibData) { 
815     Error("LoadCalibData","No Calibration data found for %s",GetName());
816     exit(1);
817   }
818
819   cdfile->Close();
820   delete cdfile;
821 }
822