#ifndef ALHOLDERDB_HH #define ALHOLDERDB_HH 1 // // Extend AlHolder to do database actions // // AlHolder a,b,c; // a.readFromFile("a.txt"); // read SVX data from a, for example // b.putDatabase("ofotl_dev",100000,1); // db, run, version // // Ray Culbertson, FNAL // 11/2/01 - original // #include #include #include "Alignment/AlHolder.hh" class AlHolderDB : public AlHolder { public: AlHolderDB() {}; ~AlHolderDB() {}; // put or get to a data base. The arguments are: the database // "ofotl_dev" for example, run number, version, and status int putDatabase(std::string dbid, int run, int version, std::string status); int getDatabase(std::string dbid, int run, int version, std::string status); }; // end class #endif