]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ZDC/AliZDCRawStream.h
load libPWG3vertexingOld
[u/mrichter/AliRoot.git] / ZDC / AliZDCRawStream.h
index d919374ee005f3fb531fc3afc1a71ba8c840268a..23af45d43dccd2de193e2dce4b63185fde653e7d 100644 (file)
@@ -25,6 +25,7 @@ class AliZDCRawStream: public TObject {
     UInt_t           GetADCRaw() const {return fRawADC;};
     Int_t            GetSector(Int_t i) const {return fSector[i];};
     Int_t            GetADCModule() const {return fADCModule;};
+    Int_t            GetADCChannel() const {return fADCChannel;};
     Int_t            GetADCValue() const {return fADCValue;};
     Int_t            GetADCGain() const {return fADCGain;};
     Bool_t           IsADCDataWord() const {return fIsADCDataWord;};
@@ -42,11 +43,12 @@ class AliZDCRawStream: public TObject {
     UInt_t           fRawADC;        // raw ADC
     Int_t            fSector[2];     // index of current sector
     Int_t            fADCModule;     // ADC module;
-    Int_t            fADCValue;      // ADC value;
+    Int_t            fADCChannel;    // ADC module;
+    Int_t            fADCValue;      // ADC channel;
     Int_t            fADCGain;       // ADC gain (0=high range; 1=low range)
     Bool_t           fIsADCDataWord; //True when data word
 
-    ClassDef(AliZDCRawStream, 2)    // class for reading ZDC raw digits
+    ClassDef(AliZDCRawStream, 3)    // class for reading ZDC raw digits
 };
 
 #endif