///////////////////////////////////////////////////////////////// // Class to generate temperature sensor data base entries. // // Existing data base structure read at start of processsing. // 20/12-2006 HH. // Modification log: ///////////////////////////////////////////////////////////////// #ifndef AliTPCGenDBTemp_h #define AliTPCGenDBTemp_h #include #include #include #include "AliTPCSensorTempArray.h" #include "AliLog.h" #include "AliDCSGenDB.h" class AliTPCGenDBTemp : public AliDCSGenDB { public: // constructors AliTPCGenDBTemp(); AliTPCGenDBTemp(const AliTPCGenDBTemp& org); ~AliTPCGenDBTemp(); AliTPCGenDBTemp& operator= (const AliTPCGenDBTemp& org); void MakeCalib(const char *file, const char *fMap, const TTimeStamp& startTime, const TTimeStamp& endTime, Int_t run); // functionality static TClonesArray * ReadList(const char* fname); static TTree * ReadListTree(const char* fname); // getters/setters private: ClassDef(AliTPCGenDBTemp,1) }; #endif