ROOT logo
/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/////////////////////////////////////////////////////
// Class used for the ALICE data challenges        //
/////////////////////////////////////////////////////

#ifndef AliTPCDDLRAWDATA_H
#define AliTPCDDLRAWDATA_H


class AliTPCDDLRawData:public TObject{
 public:
  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 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)
};
    
#endif
 AliTPCDDLRawData.h:1
 AliTPCDDLRawData.h:2
 AliTPCDDLRawData.h:3
 AliTPCDDLRawData.h:4
 AliTPCDDLRawData.h:5
 AliTPCDDLRawData.h:6
 AliTPCDDLRawData.h:7
 AliTPCDDLRawData.h:8
 AliTPCDDLRawData.h:9
 AliTPCDDLRawData.h:10
 AliTPCDDLRawData.h:11
 AliTPCDDLRawData.h:12
 AliTPCDDLRawData.h:13
 AliTPCDDLRawData.h:14
 AliTPCDDLRawData.h:15
 AliTPCDDLRawData.h:16
 AliTPCDDLRawData.h:17
 AliTPCDDLRawData.h:18
 AliTPCDDLRawData.h:19
 AliTPCDDLRawData.h:20
 AliTPCDDLRawData.h:21
 AliTPCDDLRawData.h:22
 AliTPCDDLRawData.h:23
 AliTPCDDLRawData.h:24
 AliTPCDDLRawData.h:25
 AliTPCDDLRawData.h:26
 AliTPCDDLRawData.h:27
 AliTPCDDLRawData.h:28