///////////////////////////////////////////////////////////////// // Class to generate temperature sensor data base entries. // // Existing data base structure read at start of processsing. // 20/12-2006 HH. // Modification log: ///////////////////////////////////////////////////////////////// #ifndef AliTPCGenDBConf_h #define AliTPCGenDBConf_h #include #include #include #include #include "AliTPCPreprocessor.h" #include "AliLog.h" #include "AliDCSGenDB.h" class AliTPCGenDBConf : public AliDCSGenDB { public: // constructors AliTPCGenDBConf(); AliTPCGenDBConf(const AliTPCGenDBConf& org); ~AliTPCGenDBConf(); AliTPCGenDBConf& operator= (const AliTPCGenDBConf& org); // functionality void MakeConfig(const char *file, Int_t firstRun, Int_t lastRun, const char *confDir); // getters/setters private: ClassDef(AliTPCGenDBConf,1) }; #endif