]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCDDLRawData.h
Fix in order to avoid streamer problems in case of invalid ROOTSTYS. The famous magic...
[u/mrichter/AliRoot.git] / TPC / AliTPCDDLRawData.h
index 164747ff6ebadc07fc84284f0cd81854dd98f1e7..b8a294ef2f558d2f977457145e580d01d40b0eda 100644 (file)
@@ -2,7 +2,7 @@
  * See cxx source for full Copyright notice                               */
 
 /////////////////////////////////////////////////////
-// Class used for the fifth ALICE data challenge  //
+// Class used for the ALICE data challenges        //
 /////////////////////////////////////////////////////
 
 #ifndef AliTPCDDLRAWDATA_H
 
 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(const char* inputFileName = "AliTPCDDL.dat");
   //This method is used to create the slides (sequence of files)
-  void  RawData(Int_t LDCsNumber);
-  //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
-  Int_t RawDataCompDecompress(Int_t LDCsNumber,Int_t Comp=0);
-  //This method is used to create the Altro format file from "AliTPCDDL.dat"
-  void  RawDataAltro();
-  //This method is used to Construct an Altro format file starting from
-  //the slices compressed or uncompressed
-  void RawDataAltroDecode(Int_t LDCsNumber,Int_t Comp=0);
+  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)
 };