]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSCalibrManager.h
Effective C++ warnings fixed (Timur Pocheptsov)
[u/mrichter/AliRoot.git] / PHOS / AliPHOSCalibrManager.h
1 #ifndef ALIPHOSCALIBRMANAGER_H
2 #define ALIPHOSCALIBRMANAGER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7
8 //_________________________________________________________________________    
9 //                  
10 //*-- Author: D.Peressounko (RRC KI & SUBATECH)
11
12
13 // --- ROOT system ---
14 #include "TNamed.h"
15 #include "TString.h" 
16 class TArrayF ; 
17 // --- Standard library ---
18
19 // --- AliRoot header files ---
20 class AliPHOSConTableDB ;
21 class AliPHOSCalibrationData ;
22
23 class AliPHOSCalibrManager:public TNamed {
24
25 public:
26   AliPHOSCalibrManager() ;          // ctor
27   AliPHOSCalibrManager(const AliPHOSCalibrManager & manager) : TNamed(manager) {
28     // cpy ctor: no need
29     // requested by the Coding Convention
30     Fatal("cpy ctor", "not implemented") ;
31   }
32  
33   virtual ~AliPHOSCalibrManager() ; // dtor
34   static AliPHOSCalibrManager * GetInstance() ;
35   static AliPHOSCalibrManager * GetInstance(const char * filename,const char * kind = "root" ) ; 
36
37   void GetParameters(AliPHOSCalibrationData &data) ; 
38   
39   void SetConTable(AliPHOSConTableDB * ct){fctdb = ct ;}
40
41   void WriteData(AliPHOSCalibrationData &data) ;
42
43   AliPHOSCalibrManager & operator = (const AliPHOSCalibrManager & right) ;
44
45 private:
46   //Read gains of pedestals from ascii file
47   void ReadFromASCII(AliPHOSCalibrationData & data) ;
48
49   void ReadFromRoot(AliPHOSCalibrationData &data) ;
50
51   AliPHOSCalibrManager(const char* filename,const char * kind = "root") ;          
52
53 private:
54   TString   fFileName ;        //Name of file with calibration data
55   Int_t     fInputKind;        //Kind of input to read/write data
56   AliPHOSConTableDB * fctdb ;  //Connection table used to read from ASCII file
57   
58   static AliPHOSCalibrManager * fgCaMa ; // pointer to the unique instance of singleton
59             
60  
61   ClassDef(AliPHOSCalibrManager,1)  // description 
62
63 };
64
65 #endif // AliPHOSCALIBRMANAGER_H