]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCGenDBConf.h
Possibility to include ARVersion.h
[u/mrichter/AliRoot.git] / TPC / AliTPCGenDBConf.h
1 /////////////////////////////////////////////////////////////////
2 // Class to generate temperature sensor data base entries.
3 //
4 // Existing data base structure read at start of processsing.
5 // 20/12-2006 HH.
6 // Modification log:
7 /////////////////////////////////////////////////////////////////
8
9 #ifndef AliTPCGenDBConf_h
10 #define AliTPCGenDBConf_h
11
12 #include <TROOT.h>
13 #include <TFile.h>
14 #include <TObjArray.h>
15 #include <TEnv.h>
16
17 #include "AliTPCPreprocessor.h"
18 #include "AliLog.h"
19 #include "AliDCSGenDB.h"
20
21 class AliTPCGenDBConf : public AliDCSGenDB {
22
23 public:
24
25 // constructors
26
27   AliTPCGenDBConf();
28   AliTPCGenDBConf(const char *defaultStorage, const char *specificStorage);
29   ~AliTPCGenDBConf();
30
31 // functionality
32
33   void            MakeConfig(const char *file, Int_t firstRun, Int_t lastRun, const char *confDir);
34
35 // getters/setters
36
37
38 private:
39   AliTPCGenDBConf(const AliTPCGenDBConf& org);
40   AliTPCGenDBConf& operator= (const AliTPCGenDBConf& org);
41
42    ClassDef(AliTPCGenDBConf,1)
43 };
44 #endif