]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCGenDBConf.h
Update for extraction of 3D cluster residual maps
[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();
9f016d99 28 AliTPCGenDBConf(const char *defaultStorage, const char *specificStorage);
077d9d0a 29 ~AliTPCGenDBConf();
077d9d0a 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
38private:
9f016d99 39 AliTPCGenDBConf(const AliTPCGenDBConf& org);
40 AliTPCGenDBConf& operator= (const AliTPCGenDBConf& org);
077d9d0a 41
42 ClassDef(AliTPCGenDBConf,1)
43};
44#endif