]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCRawStream.cxx
UPdated for new README*txt files.
[u/mrichter/AliRoot.git] / ZDC / AliZDCRawStream.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 // This class provides access to ZDC digits in raw data.                     //
21 //                                                                           //
22 // It loops over all ZDC digits in the raw data given by the AliRawReader.   //
23 // The Next method goes to the next digit. If there are no digits left       //
24 // it returns kFALSE.                                                        //
25 // Getters provide information about the current digit.                      //
26 //                                                                           //
27 ///////////////////////////////////////////////////////////////////////////////
28
29 #include "AliZDCRawStream.h"
30 #include "AliRawReader.h"
31 #include "AliLog.h"
32
33 ClassImp(AliZDCRawStream)
34
35
36 //_____________________________________________________________________________
37 AliZDCRawStream::AliZDCRawStream(AliRawReader* rawReader) :
38   fRawReader(rawReader),
39   fRawADC(0),    
40   fADCModule(0),         
41   fADCValue(-1),         
42   fADCGain(0),
43   fIsADCDataWord(kFALSE)
44 {
45   // Create an object to read ZDC raw digits
46
47   fRawReader->Select("ZDC");
48 }
49
50 //_____________________________________________________________________________
51 AliZDCRawStream::AliZDCRawStream(const AliZDCRawStream& stream) :
52   TObject(stream)
53 {
54   // Copy constructor
55   fRawADC = stream.GetADCRaw();  
56   for(Int_t j=0; j<2; j++) fSector[j] = stream.GetSector(j);     
57   fADCModule = stream.GetADCModule();    
58   fADCValue = stream.GetADCValue();      
59   fADCGain = stream.GetADCGain();        
60   fIsADCDataWord = stream.IsADCDataWord(); 
61     
62 }
63
64 //_____________________________________________________________________________
65 AliZDCRawStream& AliZDCRawStream::operator = (const AliZDCRawStream& 
66                                               /* stream */)
67 {
68   // Assignment operator
69   Fatal("operator =", "assignment operator not implemented");
70   return *this;
71 }
72
73 //_____________________________________________________________________________
74 AliZDCRawStream::~AliZDCRawStream()
75 {
76 // Destructor
77
78 }
79
80
81 //_____________________________________________________________________________
82 Bool_t AliZDCRawStream::Next()
83 {
84   // Read the next raw digit
85   // Returns kFALSE if there is no digit left
86
87   if(!fRawReader->ReadNextInt((UInt_t&) fRawADC)) return kFALSE;
88   fIsADCDataWord = kFALSE;
89   
90   printf("fRawADC %x",fRawADC);
91   //
92   if((fRawADC == 0xe52b6300) || (fRawADC == 0xdeadface) || (fRawADC == 0xffffffff) || (fRawADC == 0xdeadbeef)){
93     printf("    This is a DARC header!!!\n");
94   }
95   else if(fRawADC == 0xcafefade) printf("    End of data!\n");
96   else{
97     if((fRawADC & 0x6000000) == 0x6000000){//Not valid datum
98       printf("    AliZDCRawStream -> Not valid datum in ADC module!!! %d\n",fADCModule);
99     }
100     else if((fRawADC & 0x4000000) == 0x4000000){//ADC EOB
101       printf("    AliZDCRawStream -> ADC %d End Of Block - Event no. %d\n\n",fADCModule, (fRawADC & 0xffffff));
102       fSector[0] = fSector[1] = 99;
103     } 
104     else if((fRawADC & 0x2000000) == 0x2000000){//ADC Header
105       fADCModule++;
106       printf("    AliZDCRawStream -> Header ADC %d - ADC datum contains %d data words \n",fADCModule,((fRawADC & 0x3f00) >> 8));
107     }
108     else{//ADC data word
109       fIsADCDataWord = kTRUE;
110       printf(" \t \t ADC Data Word");
111       if(!(fRawADC & 0x1000) && !(fRawADC & 0x2000)){ // Valid ADC data
112         fADCGain = (fRawADC & 0x10000) >> 16;
113         fADCValue = (fRawADC & 0xfff);   
114         //
115         Int_t vADCChannel = (fRawADC & 0x1e0000) >> 17;
116         if(fADCModule==1 || fADCModule==3){  //1st & 3rd ADC modules
117           if(vADCChannel >= 0 && vADCChannel <= 4){ 
118             fSector[0] = 1; // ZN1
119             fSector[1] = vADCChannel;
120           } 
121           else if(vADCChannel >= 8 && vADCChannel <= 12){
122             fSector[0] = 2; // ZP1
123             fSector[1] = vADCChannel-8;
124           } 
125           else if(vADCChannel == 5 || vADCChannel == 13){
126             fSector[0] = 3; // ZEM 1,2
127             fSector[1] = ((vADCChannel-5)/8)+1;
128           }
129         }
130         else if(fADCModule==2 || fADCModule==4){  //2nd & 4rth ADC modules
131           if(vADCChannel >= 0 && vADCChannel <= 4){ 
132             fSector[0] = 4; // ZN2
133           fSector[1] = vADCChannel;
134           } 
135           else if(vADCChannel >= 8 && vADCChannel <= 12){
136             fSector[0] = 5; // ZP2
137             fSector[1] = vADCChannel-8;
138           } 
139           else if(vADCChannel == 5 || vADCChannel == 13){
140             fSector[0] = (vADCChannel-5)*3/8+1; // PM Ref 1,2
141             fSector[1] = 5;
142           }
143         }
144         else{
145           AliWarning("    AliZDCRawStream -> No valid ADC module!!!");
146           printf(" ADCmod = %d\n", fADCModule);
147           fRawReader->AddMajorErrorLog(kInvalidADCModule);
148         }
149         printf("  ADC %d ch %d range %d -> det %d quad %d value %x\n",
150            fADCModule, vADCChannel, fADCGain, fSector[0], fSector[1], fADCValue);//Chiara debugging
151       
152       }
153       else if(fRawADC & 0x1000) 
154         printf("  ADC %d ch %d range %d  overflow\n",fADCModule, (fRawADC & 0x1e0000) >> 17, fADCGain); // Overflow
155       else if(fRawADC & 0x2000) 
156         printf("  ADC %d ch %d range %d  underflow\n",fADCModule, (fRawADC & 0x1e0000) >> 17, fADCGain); // Underflow
157     }
158   }//Not DARC Header
159
160   return kTRUE;
161 }