File indexing completed on 2025-08-03 08:20:55
0001 #ifndef ONLMONDATABASE_ONCALDBODBC_H
0002 #define ONLMONDATABASE_ONCALDBODBC_H
0003
0004 #include <string>
0005
0006 class OnCalDBodbc
0007 {
0008 public:
0009 OnCalDBodbc() {}
0010 virtual ~OnCalDBodbc() {}
0011
0012 void identify() const;
0013 int GetLastCalibratedRun(const int runno) const;
0014 void Verbosity(const int i) { verbosity = i; }
0015
0016 private:
0017 int verbosity = 0;
0018 std::string dbname = "Phenix";
0019 std::string dbowner = "phnxrc";
0020 std::string dbpasswd = "";
0021 };
0022
0023 #endif