00001 #ifndef ODSRPCYCLE_H 00002 #define ODSRPCYCLE_H 00003 00004 #include <stdexcept> 00005 #include <iostream> 00006 00007 #include "OnlineDB/EcalCondDB/interface/IODConfig.h" 00008 00009 00010 00011 class ODSRPCycle : public IODConfig { 00012 public: 00013 friend class EcalCondDBInterface; 00014 friend class ODEcalCycle; 00015 00016 ODSRPCycle(); 00017 ~ODSRPCycle(); 00018 00019 inline std::string getTable() { return "ECAL_SRP_CYCLE"; } 00020 00021 inline void setId(int id){m_ID=id;} 00022 inline int getId()const{ return m_ID;} ; 00023 00024 // Methods for user data 00025 inline void setSRPConfigurationID(int x){m_srp_config_id=x;} 00026 inline int getSRPConfigurationID() const{return m_srp_config_id;} 00027 00028 // Operators 00029 inline bool operator==(const ODSRPCycle &m) const { return ( m_ID == m.m_ID); } 00030 inline bool operator!=(const ODSRPCycle &m) const { return !(*this == m); } 00031 00032 private: 00033 // User data 00034 int m_ID; 00035 int m_srp_config_id; 00036 void writeDB() throw(std::runtime_error); 00037 void prepareWrite() throw(std::runtime_error); 00038 void clear(); 00039 void fetchData(ODSRPCycle * result) throw(std::runtime_error); 00040 void insertConfig() throw(std::runtime_error); 00041 00042 00043 // Methods from IUniqueDBObject 00044 int fetchID() throw(std::runtime_error); 00045 void setByID(int id) throw(std::runtime_error); 00046 00047 00048 }; 00049 00050 #endif