]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCBuffer.h
Initialization of data members
[u/mrichter/AliRoot.git] / TPC / AliTPCBuffer.h
index 28d242f90c56d5276053971b84c46d5dda9a3e6f..8bd8ff78a24ec0deb362452721c6c4cfcb5bef92 100644 (file)
@@ -13,6 +13,7 @@ class fstream;
 #include "Riostream.h"
 #endif
 
+
 class AliSimDigits;
 //class TTree;
 //class TFile;
@@ -27,14 +28,14 @@ public:
   AliTPCBuffer& operator=(const AliTPCBuffer &source); // ass. op.
   void    WriteRowBinary(Int_t eth,AliSimDigits *digrow,Int_t minPad,Int_t maxPad,Int_t flag,Int_t sec,Int_t SubSec,Int_t row);
   //  void    WriteRow(Int_t eth,AliSimDigits *digrow,Int_t minPad,Int_t maxPad,Int_t flag,Int_t sec,Int_t SubSec,Int_t row);
-  ULong_t GetDigNumber()const{return fNumberOfDigits;}
+  UInt_t  GetDigNumber()const{return fNumberOfDigits;}
   void    SetVerbose(Int_t val){fVerbose=val;}
 private:
-  Int_t fVerbose; //Verbosity level: 0-silent, not 0-all printout
+  Int_t fVerbose; //Verbosity level: 0-silent, 1:cout msg, 2: txt files for checking
   fstream f;      //The IO file name
   //TFile *fout;
   //TTree *tree;
-  ULong_t fNumberOfDigits; //Number of TPC digits
+  UInt_t  fNumberOfDigits; //Number of TPC digits
   ClassDef(AliTPCBuffer,1)
 };