#include <RunLaserRunDat.h>
Definition at line 11 of file RunLaserRunDat.h.
RunLaserRunDat::RunLaserRunDat |
( |
| ) |
|
Definition at line 11 of file RunLaserRunDat.cc.
oracle::occi::Environment * m_env
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
std::string m_laserSeqCond
std::string m_laserSeqType
RunLaserRunDat::~RunLaserRunDat |
( |
| ) |
|
|
override |
Definition at line 72 of file RunLaserRunDat.cc.
References MillePedeFileConverter_cfg::e, AlCaHLTBitMon_ParallelJobs::p, setLaserSequenceCond(), and setLaserSequenceType().
Referenced by getLaserSequenceCond().
86 Statement* stmt =
m_conn->createStatement();
87 stmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, " 88 "d.laser_sequence_type, d.laser_sequence_cond " 89 "FROM channelview cv JOIN run_laserrun_config_dat d " 90 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to " 91 "WHERE d.iov_id = :iov_id");
92 stmt->setInt(1, iovID);
93 ResultSet* rset = stmt->executeQuery();
95 std::pair< EcalLogicID, RunLaserRunDat >
p;
111 m_conn->terminateStatement(stmt);
112 }
catch (SQLException &
e) {
113 throw(std::runtime_error(
"RunLaserRunDat::fetchData(): "+e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setLaserSequenceCond(std::string x)
void setLaserSequenceType(std::string x)
void setConnection(oracle::occi::Environment *env, oracle::occi::Connection *conn)
int fetchID() noexcept(false) override
std::string RunLaserRunDat::getLaserSequenceCond |
( |
| ) |
const |
|
inline |
std::string RunLaserRunDat::getLaserSequenceType |
( |
| ) |
const |
|
inline |
std::string RunLaserRunDat::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
void RunLaserRunDat::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
Implements IDataItem.
Definition at line 28 of file RunLaserRunDat.cc.
References MillePedeFileConverter_cfg::e.
Referenced by getLaserSequenceCond().
35 m_writeStmt->setSQL(
"INSERT INTO run_laserrun_config_dat (iov_id, logic_id, " 36 "laser_sequence_type, laser_sequence_cond) " 39 }
catch (SQLException &
e) {
40 throw(std::runtime_error(
"RunLaserRunDat::prepareWrite(): "+e.getMessage()));
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void RunLaserRunDat::setLaserSequenceCond |
( |
std::string |
x | ) |
|
|
inline |
void RunLaserRunDat::setLaserSequenceType |
( |
std::string |
x | ) |
|
|
inline |
Definition at line 46 of file RunLaserRunDat.cc.
References MillePedeFileConverter_cfg::e.
Referenced by getLaserSequenceCond().
53 if (!iovID) {
throw(std::runtime_error(
"RunLaserRunDat::writeDB: IOV not in DB")); }
56 if (!logicID) {
throw(std::runtime_error(
"RunLaserRunDat::writeDB: Bad EcalLogicID")); }
65 }
catch (SQLException &
e) {
66 throw(std::runtime_error(
"RunLaserRunDat::writeDB(): "+e.getMessage()));
oracle::occi::Statement * m_writeStmt
void checkPrepare() noexcept(false)
std::string getLaserSequenceCond() const
void checkConnection() const noexcept(false)
std::string getLaserSequenceType() const
int fetchID() noexcept(false) override
std::string RunLaserRunDat::m_laserSeqCond |
|
private |
std::string RunLaserRunDat::m_laserSeqType |
|
private |