X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TPC%2FAliTPCDDLRawData.h;h=b8a294ef2f558d2f977457145e580d01d40b0eda;hb=9fee2a0919cf1d0e832b4621e9d45f109c56a3a5;hp=be115ad3e367c3a3b7e924be59ef4d8c5e555a31;hpb=a79660fb135e90a3874b3987baea69eb5658e575;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliTPCDDLRawData.h b/TPC/AliTPCDDLRawData.h index be115ad3e36..b8a294ef2f5 100644 --- a/TPC/AliTPCDDLRawData.h +++ b/TPC/AliTPCDDLRawData.h @@ -11,21 +11,17 @@ class AliTPCDDLRawData:public TObject{ public: - AliTPCDDLRawData(){;}//default constructor + AliTPCDDLRawData():TObject(), + fVerbose(0){}//default constructor virtual ~AliTPCDDLRawData(){;}//destructor AliTPCDDLRawData(const AliTPCDDLRawData &source); // copy constructor AliTPCDDLRawData& operator=(const AliTPCDDLRawData &source); // ass. op. - void RawData(Int_t LDCsNumber); + void RawData(const char* inputFileName = "AliTPCDDL.dat"); //This method is used to create the slides (sequence of files) - Int_t RawDataCompDecompress(Int_t LDCsNumber,Int_t Comp=0); - //This method is used to create the compressed slides starting from the uncompressed ones - //or it can be used to decompress a sequence of compressed slices - void RawDataAltro()const; - //This method is used to create the Altro format file from "AliTPCDDL.dat" - void RawDataAltroDecode(Int_t LDCsNumber,Int_t Comp=0); - //This method is used to construct an Altro format file starting from - //the slices compressed or uncompressed + void SetVerbose(Int_t Verbose){fVerbose=Verbose;} private: + Int_t fVerbose; //Verbose level 0:Silent, 1: cout msg, 2:txt files for debugging + enum {kDDLOffset = 0}; //offset for DDL number ClassDef(AliTPCDDLRawData,1) };