#ifndef __JDB_JDATALOGNUMBERS__ #define __JDB_JDATALOGNUMBERS__ #include #include #include /** * \author mdejong */ namespace JDATABASE {} namespace JPP { using namespace JDATABASE; } namespace JDATABASE { struct JDatalogNumbers : public TObject { static const char* const getName() { return "datalognumbers"; } //!< Table name std::string DETID; ///< constraint int RUN; long long int UNIXTIME; std::string SOURCE_NAME; std::string PARAMETER_NAME; double DATA_VALUE; /** * Get time. * * \return time [s] */ inline double getTime() const { return UNIXTIME * 1.0e-3; } ClassDef(JDatalogNumbers, 1); }; } #endif