CMS 3D CMS Logo

RunCrystalErrorsDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 #include <boost/lexical_cast.hpp>
5 
8 
9 using namespace std;
10 using namespace oracle::occi;
11 
13  m_env = nullptr;
14  m_conn = nullptr;
15  m_writeStmt = nullptr;
16  m_errorBits = 0;
17 }
18 
20 
22  this->checkConnection();
23 
24  try {
25  m_writeStmt = m_conn->createStatement();
26  /* Using TO_NUMBER because OCCI does not support 64-bit integers well */
27  m_writeStmt->setSQL(
28  "INSERT INTO run_crystal_errors_dat (iov_id, logic_id, "
29  "error_bits) "
30  "VALUES (:iov_id, :logic_id, "
31  "to_number(:error_bits))");
32  } catch (SQLException& e) {
33  throw(std::runtime_error("RunCrystalErrorsDat::prepareWrite(): " + e.getMessage()));
34  }
35 }
36 
39  RunIOV* iov) noexcept(false) {
40  this->checkConnection();
41  this->checkPrepare();
42 
43  int iovID = iov->fetchID();
44  if (!iovID) {
45  throw(std::runtime_error("RunCrystalErrorsDat::writeDB: IOV not in DB"));
46  }
47 
48  int logicID = ecid->getLogicID();
49  if (!logicID) {
50  throw(std::runtime_error("RunCrystalErrorsDat::writeDB: Bad EcalLogicID"));
51  }
52 
53  try {
54  m_writeStmt->setInt(1, iovID);
55  m_writeStmt->setInt(2, logicID);
56  m_writeStmt->setString(3, std::to_string(item->getErrorBits()));
57  m_writeStmt->executeUpdate();
58  } catch (SQLException& e) {
59  throw(std::runtime_error("RunCrystalErrorsDat::writeDB(): " + e.getMessage()));
60  }
61 }
62 
63 void RunCrystalErrorsDat::fetchData(map<EcalLogicID, RunCrystalErrorsDat>* fillMap, RunIOV* iov) noexcept(false) {
64  this->checkConnection();
65  fillMap->clear();
66 
67  iov->setConnection(m_env, m_conn);
68  int iovID = iov->fetchID();
69  if (!iovID) {
70  // throw(std::runtime_error("RunCrystalErrorsDat::writeDB: IOV not in DB"));
71  return;
72  }
73 
74  try {
75  Statement* stmt = m_conn->createStatement();
76  /* Using TO_CHAR because OCCI does not support 64-bit integers well */
77  stmt->setSQL(
78  "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
79  "to_char(d.error_bits) "
80  "FROM channelview cv JOIN run_crystal_errors_dat d "
81  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
82  "WHERE d.iov_id = :iov_id");
83  stmt->setInt(1, iovID);
84  ResultSet* rset = stmt->executeQuery();
85 
86  std::pair<EcalLogicID, RunCrystalErrorsDat> p;
88  while (rset->next()) {
89  p.first = EcalLogicID(rset->getString(1), // name
90  rset->getInt(2), // logic_id
91  rset->getInt(3), // id1
92  rset->getInt(4), // id2
93  rset->getInt(5), // id3
94  rset->getString(6)); // maps_to
95 
96  dat.setErrorBits(boost::lexical_cast<uint64_t>(rset->getString(7)));
97 
98  p.second = dat;
99  fillMap->insert(p);
100  }
101  m_conn->terminateStatement(stmt);
102 
103  } catch (SQLException& e) {
104  throw(std::runtime_error("RunCrystalErrorsDat::fetchData(): " + e.getMessage()));
105  }
106 }
RunIOV
Definition: RunIOV.h:13
funct::false
false
Definition: Factorize.h:29
RunCrystalErrorsDat::setErrorBits
void setErrorBits(uint64_t bits)
Definition: RunCrystalErrorsDat.h:21
RunIOV.h
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
RunCrystalErrorsDat::prepareWrite
void prepareWrite() noexcept(false) override
Definition: RunCrystalErrorsDat.cc:21
RunCrystalErrorsDat
Definition: RunCrystalErrorsDat.h:12
RunCrystalErrorsDat.h
oracle::occi
Definition: ConnectionManager.h:7
EcalLogicID
Definition: EcalLogicID.h:7
B2GTnPMonitor_cfi.item
item
Definition: B2GTnPMonitor_cfi.py:147
RunCrystalErrorsDat::~RunCrystalErrorsDat
~RunCrystalErrorsDat() override
Definition: RunCrystalErrorsDat.cc:19
std
Definition: JetResolutionObject.h:76
RunCrystalErrorsDat::fetchData
void fetchData(std::map< EcalLogicID, RunCrystalErrorsDat > *fillMap, RunIOV *iov) noexcept(false)
Definition: RunCrystalErrorsDat.cc:63
RunCrystalErrorsDat::RunCrystalErrorsDat
RunCrystalErrorsDat()
Definition: RunCrystalErrorsDat.cc:12
Oracle.h
RunCrystalErrorsDat::writeDB
void writeDB(const EcalLogicID *ecid, const RunCrystalErrorsDat *item, RunIOV *iov) noexcept(false)
Definition: RunCrystalErrorsDat.cc:37
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37