1 /* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
4 /////////////////////////////////////////////////////
5 // Class used for the ALICE data challenges //
6 /////////////////////////////////////////////////////
8 #ifndef AliTPCDDLRAWDATA_H
9 #define AliTPCDDLRAWDATA_H
12 class AliTPCDDLRawData:public TObject{
14 AliTPCDDLRawData():TObject(),
15 fVerbose(0){}//default constructor
16 virtual ~AliTPCDDLRawData(){;}//destructor
17 AliTPCDDLRawData(const AliTPCDDLRawData &source); // copy constructor
18 AliTPCDDLRawData& operator=(const AliTPCDDLRawData &source); // ass. op.
19 void RawData(const char* inputFileName = "AliTPCDDL.dat");
20 //This method is used to create the slides (sequence of files)
21 void SetVerbose(Int_t Verbose){fVerbose=Verbose;}
23 Int_t fVerbose; //Verbose level 0:Silent, 1: cout msg, 2:txt files for debugging
24 enum {kDDLOffset = 0}; //offset for DDL number
25 ClassDef(AliTPCDDLRawData,1)