CMS 3D CMS Logo

FEConfigLUTInfo.h
Go to the documentation of this file.
1 #ifndef FECONFIGLUT_H
2 #define FECONFIGLUT_H
3 
4 #include <map>
5 #include <string>
6 
10 
11 class FEConfigLUTInfo : public IODConfig {
12 public:
13  friend class EcalCondDBInterface;
14 
16  ~FEConfigLUTInfo() override;
17 
18  // Methods for user data
19  inline std::string getTable() override { return "FE_CONFIG_LUT_INFO"; }
20 
21  inline void setNumberOfGroups(int iov_id) { m_iov_id = iov_id; }
22  int getNumberOfGroups() const { return m_iov_id; }
23 
24  inline void setId(int id) { m_ID = id; }
25  inline int getId() const { return m_ID; }
26  // for compatibility
27  void setID(int id) { setId(id); }
28  int getID() { return getId(); }
29  // the tag is already in IODConfig
30  inline void setVersion(int id) { m_version = id; }
31  inline int getVersion() const { return m_version; }
32 
33  Tm getDBTime() const { return m_db_time; }
34  void setDBTime(const Tm& x) { m_db_time = x; }
35 
36  // Methods from IUniqueDBObject
37  int fetchID() noexcept(false);
38  int fetchNextId() noexcept(false);
39  void setByID(int id) noexcept(false);
40  void setParameters(const std::map<std::string, std::string>& my_keys_map);
41 
42  // operators
43  inline bool operator==(const FEConfigLUTInfo& r) const { return (m_ID == r.m_ID); }
44  inline bool operator!=(const FEConfigLUTInfo& r) const { return !(*this == r); }
45 
46 private:
47  // User data for this IOV
48  int m_iov_id;
49  int m_ID;
51  int m_version;
52 
53  void prepareWrite() noexcept(false) override;
54  void writeDB() noexcept(false);
55  void clear();
56  void fetchData(FEConfigLUTInfo* result) noexcept(false);
57  void fetchLastData(FEConfigLUTInfo* result) noexcept(false);
58 };
59 
60 #endif
EcalCondDBInterface
Definition: EcalCondDBInterface.h:37
funct::false
false
Definition: Factorize.h:34
FEConfigLUTInfo::getId
int getId() const
Definition: FEConfigLUTInfo.h:25
IODConfig.h
FEConfigLUTInfo::setParameters
void setParameters(const std::map< std::string, std::string > &my_keys_map)
Definition: FEConfigLUTInfo.cc:70
DDAxes::x
watchdog.const
const
Definition: watchdog.py:83
FEConfigLUTInfo::setNumberOfGroups
void setNumberOfGroups(int iov_id)
Definition: FEConfigLUTInfo.h:21
Utilities.operator
operator
Definition: Utilities.py:24
FEConfigLUTInfo::FEConfigLUTInfo
FEConfigLUTInfo()
Definition: FEConfigLUTInfo.cc:13
FEConfigLUTInfo::getTable
std::string getTable() override
Definition: FEConfigLUTInfo.h:19
FEConfigLUTInfo::setID
void setID(int id)
Definition: FEConfigLUTInfo.h:27
FEConfigLUTInfo::getNumberOfGroups
int getNumberOfGroups() const
Definition: FEConfigLUTInfo.h:22
FEConfigLUTInfo::fetchID
int fetchID() noexcept(false)
Definition: FEConfigLUTInfo.cc:161
FEConfigLUTInfo::getID
int getID()
Definition: FEConfigLUTInfo.h:28
Tm
Definition: Tm.h:13
FEConfigLUTInfo::writeDB
void writeDB() noexcept(false)
Definition: FEConfigLUTInfo.cc:84
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FEConfigLUTInfo::getDBTime
Tm getDBTime() const
Definition: FEConfigLUTInfo.h:33
FEConfigLUTInfo::~FEConfigLUTInfo
~FEConfigLUTInfo() override
Definition: FEConfigLUTInfo.cc:26
FEConfigLUTInfo::m_db_time
Tm m_db_time
Definition: FEConfigLUTInfo.h:50
FEConfigLUTInfo::prepareWrite
void prepareWrite() noexcept(false) override
Definition: FEConfigLUTInfo.cc:48
FEConfigLUTInfo::fetchData
void fetchData(FEConfigLUTInfo *result) noexcept(false)
Definition: FEConfigLUTInfo.cc:105
FEConfigLUTInfo::getVersion
int getVersion() const
Definition: FEConfigLUTInfo.h:31
Tm.h
FEConfigLUTInfo
Definition: FEConfigLUTInfo.h:11
IODConfig
Definition: IODConfig.h:18
FEConfigLUTInfo::setVersion
void setVersion(int id)
Definition: FEConfigLUTInfo.h:30
FEConfigLUTInfo::fetchNextId
int fetchNextId() noexcept(false)
Definition: FEConfigLUTInfo.cc:28
alignCSCRings.r
r
Definition: alignCSCRings.py:93
FEConfigLUTInfo::setDBTime
void setDBTime(const Tm &x)
Definition: FEConfigLUTInfo.h:34
std
Definition: JetResolutionObject.h:76
FEConfigLUTInfo::fetchLastData
void fetchLastData(FEConfigLUTInfo *result) noexcept(false)
Definition: FEConfigLUTInfo.cc:137
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
FEConfigLUTInfo::m_ID
int m_ID
Definition: FEConfigLUTInfo.h:49
FEConfigLUTInfo::clear
void clear()
Definition: FEConfigLUTInfo.cc:24
DateHandler.h
mps_fire.result
result
Definition: mps_fire.py:303
genParticles_cff.map
map
Definition: genParticles_cff.py:11
FEConfigLUTInfo::setByID
void setByID(int id) noexcept(false)
Definition: FEConfigLUTInfo.cc:191
FEConfigLUTInfo::setId
void setId(int id)
Definition: FEConfigLUTInfo.h:24
FEConfigLUTInfo::operator!=
bool operator!=(const FEConfigLUTInfo &r) const
Definition: FEConfigLUTInfo.h:44
FEConfigLUTInfo::m_iov_id
int m_iov_id
Definition: FEConfigLUTInfo.h:48
FEConfigLUTInfo::m_version
int m_version
Definition: FEConfigLUTInfo.h:51