]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCDDLRawData.h
Test for Coverity
[u/mrichter/AliRoot.git] / TPC / AliTPCDDLRawData.h
index 782de47297fee2d598b87c856b5a90594998cccf..b8a294ef2f558d2f977457145e580d01d40b0eda 100644 (file)
 
 class AliTPCDDLRawData:public TObject{
  public:
-  AliTPCDDLRawData(){fVerbose=0;}//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(const char* inputFileName = "AliTPCDDL.dat");
   //This method is used to create the slides (sequence of files)
-  Int_t RawDataCompDecompress(Bool_t compress = kTRUE);
-  //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 char* inputFileName = "AliTPCDDL.dat", const char* outputFileName = "AltroFormatDDL.dat")const;
-  //This method is used to create the Altro format file from "AliTPCDDL.dat"
-  void RawDataAltroDecode(const char* outputFileName);
-  //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