CMS 3D CMS Logo

FEConfigWeightInfo.h
Go to the documentation of this file.
1 #ifndef FECONFIGWEIGHT_H
2 #define FECONFIGWEIGHT_H
3 
4 #include <map>
5 #include <string>
6 
10 
11 class FEConfigWeightInfo : public IODConfig {
12 public:
13  friend class EcalCondDBInterface;
14 
16  ~FEConfigWeightInfo() override;
17 
18  // Methods for user data
19  inline std::string getTable() override { return "FE_CONFIG_WEIGHT_INFO"; }
20 
21  void setNumberOfGroups(int n) { m_ngr = n; }
22  int getNumberOfGroups() const { return m_ngr; }
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 FEConfigWeightInfo& r) const { return (m_ID == r.m_ID); }
44  inline bool operator!=(const FEConfigWeightInfo& r) const { return !(*this == r); }
45 
46 private:
47  // User data for this IOV
48  int m_ngr;
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(FEConfigWeightInfo* result) noexcept(false);
58 };
59 
60 #endif
FEConfigWeightInfo::setId
void setId(int id)
Definition: FEConfigWeightInfo.h:24
FEConfigWeightInfo::m_db_time
Tm m_db_time
Definition: FEConfigWeightInfo.h:50
EcalCondDBInterface
Definition: EcalCondDBInterface.h:37
FEConfigWeightInfo::m_ngr
int m_ngr
Definition: FEConfigWeightInfo.h:48
FEConfigWeightInfo::getId
int getId() const
Definition: FEConfigWeightInfo.h:25
FEConfigWeightInfo::setByID
void setByID(int id) noexcept(false)
Definition: FEConfigWeightInfo.cc:191
funct::false
false
Definition: Factorize.h:34
dqmiodumpmetadata.n
n
Definition: dqmiodumpmetadata.py:28
FEConfigWeightInfo::m_ID
int m_ID
Definition: FEConfigWeightInfo.h:49
FEConfigWeightInfo::setID
void setID(int id)
Definition: FEConfigWeightInfo.h:27
FEConfigWeightInfo::setDBTime
void setDBTime(const Tm &x)
Definition: FEConfigWeightInfo.h:34
FEConfigWeightInfo::setVersion
void setVersion(int id)
Definition: FEConfigWeightInfo.h:30
FEConfigWeightInfo::FEConfigWeightInfo
FEConfigWeightInfo()
Definition: FEConfigWeightInfo.cc:13
IODConfig.h
DDAxes::x
FEConfigWeightInfo::setParameters
void setParameters(const std::map< std::string, std::string > &my_keys_map)
Definition: FEConfigWeightInfo.cc:70
FEConfigWeightInfo::setNumberOfGroups
void setNumberOfGroups(int n)
Definition: FEConfigWeightInfo.h:21
watchdog.const
const
Definition: watchdog.py:83
Utilities.operator
operator
Definition: Utilities.py:24
FEConfigWeightInfo::~FEConfigWeightInfo
~FEConfigWeightInfo() override
Definition: FEConfigWeightInfo.cc:26
FEConfigWeightInfo::getID
int getID()
Definition: FEConfigWeightInfo.h:28
FEConfigWeightInfo
Definition: FEConfigWeightInfo.h:11
FEConfigWeightInfo::getTable
std::string getTable() override
Definition: FEConfigWeightInfo.h:19
FEConfigWeightInfo::prepareWrite
void prepareWrite() noexcept(false) override
Definition: FEConfigWeightInfo.cc:48
FEConfigWeightInfo::fetchLastData
void fetchLastData(FEConfigWeightInfo *result) noexcept(false)
Definition: FEConfigWeightInfo.cc:137
Tm
Definition: Tm.h:13
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FEConfigWeightInfo::getVersion
int getVersion() const
Definition: FEConfigWeightInfo.h:31
Tm.h
IODConfig
Definition: IODConfig.h:18
FEConfigWeightInfo::fetchNextId
int fetchNextId() noexcept(false)
Definition: FEConfigWeightInfo.cc:28
alignCSCRings.r
r
Definition: alignCSCRings.py:93
FEConfigWeightInfo::m_version
int m_version
Definition: FEConfigWeightInfo.h:51
std
Definition: JetResolutionObject.h:76
FEConfigWeightInfo::operator!=
bool operator!=(const FEConfigWeightInfo &r) const
Definition: FEConfigWeightInfo.h:44
FEConfigWeightInfo::fetchID
int fetchID() noexcept(false)
Definition: FEConfigWeightInfo.cc:161
FEConfigWeightInfo::getNumberOfGroups
int getNumberOfGroups() const
Definition: FEConfigWeightInfo.h:22
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
FEConfigWeightInfo::clear
void clear()
Definition: FEConfigWeightInfo.cc:24
DateHandler.h
mps_fire.result
result
Definition: mps_fire.py:303
FEConfigWeightInfo::fetchData
void fetchData(FEConfigWeightInfo *result) noexcept(false)
Definition: FEConfigWeightInfo.cc:105
genParticles_cff.map
map
Definition: genParticles_cff.py:11
FEConfigWeightInfo::writeDB
void writeDB() noexcept(false)
Definition: FEConfigWeightInfo.cc:84
FEConfigWeightInfo::getDBTime
Tm getDBTime() const
Definition: FEConfigWeightInfo.h:33