CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RunPTMTempDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 
7 
8 using namespace std;
9 using namespace oracle::occi;
10 
12 {
13  m_env = NULL;
14  m_conn = NULL;
15  m_writeStmt = NULL;
16  m_readStmt = NULL;
17 
18  m_temperature = 0;
19 }
20 
21 
22 
24 {
25 }
26 
27 
28 
30  throw(std::runtime_error)
31 {
32  this->checkConnection();
33 
34  try {
35  m_writeStmt = m_conn->createStatement();
36  m_writeStmt->setSQL("INSERT INTO run_temperature_ptm_dat (iov_id, logic_id, "
37  "temperature) "
38  "VALUES (:iov_id, :logic_id, "
39  ":temperature)");
40  } catch (SQLException &e) {
41  throw(std::runtime_error("RunPTMTempDat::prepareWrite(): "+e.getMessage()));
42  }
43 }
44 
45 
46 
47 void RunPTMTempDat::writeDB(const EcalLogicID* ecid, const RunPTMTempDat* item, RunIOV* iov)
48  throw(std::runtime_error)
49 {
50  this->checkConnection();
51  this->checkPrepare();
52 
53  int iovID = iov->fetchID();
54  if (!iovID) { throw(std::runtime_error("RunPTMTempDat::writeDB: IOV not in DB")); }
55 
56  int logicID = ecid->getLogicID();
57  if (!logicID) { throw(std::runtime_error("RunPTMTempDat::writeDB: Bad EcalLogicID")); }
58 
59  try {
60  m_writeStmt->setInt(1, iovID);
61  m_writeStmt->setInt(2, logicID);
62  m_writeStmt->setFloat(3, item->getTemperature());
63 
64  m_writeStmt->executeUpdate();
65  } catch (SQLException &e) {
66  throw(std::runtime_error("RunPTMTempDat::writeDB(): "+e.getMessage()));
67  }
68 }
69 
70 
71 
72 void RunPTMTempDat::fetchData(map< EcalLogicID, RunPTMTempDat >* fillMap, RunIOV* iov)
73  throw(std::runtime_error)
74 {
75  this->checkConnection();
76  fillMap->clear();
77 
78  iov->setConnection(m_env, m_conn);
79  int iovID = iov->fetchID();
80  if (!iovID) {
81  // throw(std::runtime_error("RunPTMTempDat::writeDB: IOV not in DB"));
82  return;
83  }
84 
85  try {
86 
87  m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
88  "d.temperature "
89  "FROM channelview cv JOIN RUN_TEMPERATURE_PTM_DAT d "
90  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
91  "WHERE d.iov_id = :iov_id");
92  m_readStmt->setInt(1, iovID);
93  ResultSet* rset = m_readStmt->executeQuery();
94 
95  std::pair< EcalLogicID, RunPTMTempDat > p;
96  RunPTMTempDat dat;
97  while(rset->next()) {
98  p.first = EcalLogicID( rset->getString(1), // name
99  rset->getInt(2), // logic_id
100  rset->getInt(3), // id1
101  rset->getInt(4), // id2
102  rset->getInt(5), // id3
103  rset->getString(6)); // maps_to
104 
105  dat.setTemperature( rset->getFloat(7) );
106 
107  p.second = dat;
108  fillMap->insert(p);
109  }
110 
111  } catch (SQLException &e) {
112  throw(std::runtime_error("RunPTMTempDat::fetchData(): "+e.getMessage()));
113  }
114 }
void writeDB(const EcalLogicID *ecid, const RunPTMTempDat *item, RunIOV *iov)
void prepareWrite()
#define NULL
Definition: scimark2.h:8
oracle::occi::SQLException SQLException
Definition: HcalDbOmds.cc:27
tuple iov
Definition: o2o.py:307
void fetchData(std::map< EcalLogicID, RunPTMTempDat > *fillMap, RunIOV *iov)
void setTemperature(float t)
Definition: RunPTMTempDat.h:19
oracle::occi::ResultSet ResultSet
Definition: HcalDbOmds.cc:26
Definition: RunIOV.h:13