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