]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCGenDBConf.h
rlu_hijing has to be float to work correctly with gfortran (Fedora Core 7)
[u/mrichter/AliRoot.git] / TPC / AliTPCGenDBConf.h
CommitLineData
077d9d0a 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
21class AliTPCGenDBConf : public AliDCSGenDB {
22
23public:
24
25// constructors
26
27 AliTPCGenDBConf();
28 AliTPCGenDBConf(const AliTPCGenDBConf& org);
29 ~AliTPCGenDBConf();
30 AliTPCGenDBConf& operator= (const AliTPCGenDBConf& org);
31
32// functionality
33
34 void MakeConfig(const char *file, Int_t firstRun, Int_t lastRun, const char *confDir);
35
36// getters/setters
37
38
39private:
40
41 ClassDef(AliTPCGenDBConf,1)
42};
43#endif