#ifndef __JDB_JRUNCALIBRATION__ #define __JDB_JRUNCALIBRATION__ #include #include #include #include #include "JDB/JSonSupportkit.hh" /** * \author mdejong */ namespace JDATABASE {} namespace JPP { using namespace JDATABASE; } namespace JDATABASE { namespace APIV2 { struct JRunCalibration_t : public JSonHelper, public TObject { std::string CalibrationId; std::string CalibrationType; std::string DetOID; std::string QualityTag; int Ranking; int Run; ClassDef(JRunCalibration_t, 1); }; struct JRunCalibration : public TObject { static const char* const getName() { return "RunCalibration"; } //!< Table name std::string DetOID; ///< constraint int Run; ///< constraint int Ranking; ///< ClassDef(JRunCalibration, 1); }; } } #endif