CMS 3D CMS Logo

L1ConfigOnlineProdBase.h
Go to the documentation of this file.
1 #ifndef CondTools_L1Trigger_L1ConfigOnlineProdBase_h
2 #define CondTools_L1Trigger_L1ConfigOnlineProdBase_h
3 // -*- C++ -*-
4 //
5 // Package: L1Trigger
6 // Class : L1ConfigOnlineProdBase
7 //
18 //
19 // Original Author: Werner Sun
20 // Created: Tue Sep 2 22:48:15 CEST 2008
21 // $Id: L1ConfigOnlineProdBase.h,v 1.9 2010/02/16 21:55:43 wsun Exp $
22 //
23 
24 // system include files
25 #include <memory>
26 
27 // user include files
29 
33 
38 
42 
45 
48 
49 // forward declarations
50 
51 template <class TRcd, class TData>
53 public:
55  ~L1ConfigOnlineProdBase() override;
56 
57  virtual std::unique_ptr<TData> produce(const TRcd& iRecord);
58 
59  virtual std::unique_ptr<TData> newObject(const std::string& objectKey) = 0;
60 
61 private:
62  // ----------member data ---------------------------
63 
64 protected:
67 
68  // Called from produce methods.
69  // bool is true if the object data should be made.
70  // If bool is false, produce method should throw
71  // DataAlreadyPresentException.
72  bool getObjectKey(const TRcd& record, std::string& objectKey);
73 
74  // For reading object directly from a CondDB w/o PoolDBOutputService
77 };
78 
79 template <class TRcd, class TData>
81  : m_omdsReader(),
82  m_forceGeneration(iConfig.getParameter<bool>("forceGeneration")),
83  m_dbSession(),
84  m_copyFromCondDB(false) {
85  //the following line is needed to tell the framework what
86  // data is being produced
87  setWhatProduced(this);
88 
89  //now do what ever other initialization is needed
90 
91  if (iConfig.exists("copyFromCondDB")) {
92  m_copyFromCondDB = iConfig.getParameter<bool>("copyFromCondDB");
93 
94  if (m_copyFromCondDB) {
95  cond::persistency::ConnectionPool connectionPool;
96  // Connect DB Session
97  connectionPool.setAuthenticationPath(iConfig.getParameter<std::string>("onlineAuthentication"));
98  connectionPool.configure();
99  m_dbSession = connectionPool.createSession(iConfig.getParameter<std::string>("onlineDB"));
100  }
101  } else {
102  m_omdsReader.connect(iConfig.getParameter<std::string>("onlineDB"),
103  iConfig.getParameter<std::string>("onlineAuthentication"));
104  }
105 }
106 
107 template <class TRcd, class TData>
109  // do anything here that needs to be done at desctruction time
110  // (e.g. close files, deallocate resources etc.)
111 }
112 
113 template <class TRcd, class TData>
114 std::unique_ptr<TData> L1ConfigOnlineProdBase<TRcd, TData>::produce(const TRcd& iRecord) {
115  std::unique_ptr<TData> pData;
116 
117  // Get object key and check if already in ORCON
119  if (getObjectKey(iRecord, key) || m_forceGeneration) {
120  if (m_copyFromCondDB) {
121  // Get L1TriggerKeyList from EventSetup
122  const L1TriggerKeyListRcd& keyListRcd = iRecord.template getRecord<L1TriggerKeyListRcd>();
124  keyListRcd.get(keyList);
125 
126  // Find payload token
127  std::string recordName = edm::typelookup::className<TRcd>();
128  std::string dataType = edm::typelookup::className<TData>();
129  std::string payloadToken = keyList->token(recordName, dataType, key);
130 
131  edm::LogVerbatim("L1-O2O") << "Copying payload for " << recordName << "@" << dataType << " obj key " << key
132  << " from CondDB.";
133  edm::LogVerbatim("L1-O2O") << "TOKEN " << payloadToken;
134 
135  // Get object from POOL
136  // Copied from l1t::DataWriter::readObject()
137  if (!payloadToken.empty()) {
138  m_dbSession.transaction().start();
139  pData = m_dbSession.fetchPayload<TData>(payloadToken);
140  m_dbSession.transaction().commit();
141  }
142  } else {
143  pData = newObject(key);
144  }
145 
146  // if( pData.get() == 0 )
147  if (pData == std::unique_ptr<TData>()) {
148  std::string dataType = edm::typelookup::className<TData>();
149 
150  throw l1t::DataInvalidException("Unable to generate " + dataType + " for key " + key + ".");
151  }
152  } else {
153  std::string dataType = edm::typelookup::className<TData>();
154 
155  throw l1t::DataAlreadyPresentException(dataType + " for key " + key + " already in CondDB.");
156  }
157 
158  return pData;
159 }
160 
161 template <class TRcd, class TData>
163  // Get L1TriggerKey
164  const L1TriggerKeyRcd& keyRcd = record.template getRecord<L1TriggerKeyRcd>();
165 
166  // Explanation of funny syntax: since record is dependent, we are not
167  // expecting getRecord to be a template so the compiler parses it
168  // as a non-template. http://gcc.gnu.org/ml/gcc-bugs/2005-11/msg03685.html
169 
170  // If L1TriggerKey is invalid, then all configuration objects are
171  // already in ORCON.
173  try {
174  keyRcd.get(key);
175  } catch (l1t::DataAlreadyPresentException& ex) {
176  objectKey = std::string();
177  return false;
178  }
179 
180  // Get object key from L1TriggerKey
181  std::string recordName = edm::typelookup::className<TRcd>();
182  std::string dataType = edm::typelookup::className<TData>();
183 
184  objectKey = key->get(recordName, dataType);
185 
186  /* edm::LogVerbatim( "L1-O2O" ) */
187  /* << "L1ConfigOnlineProdBase record " << recordName */
188  /* << " type " << dataType << " obj key " << objectKey ; */
189 
190  // Get L1TriggerKeyList
191  L1TriggerKeyList keyList;
192  l1t::DataWriter dataWriter;
193  if (!dataWriter.fillLastTriggerKeyList(keyList)) {
194  edm::LogError("L1-O2O") << "Problem getting last L1TriggerKeyList";
195  }
196 
197  // If L1TriggerKeyList does not contain object key, token is empty
198  return keyList.token(recordName, dataType, objectKey).empty();
199 }
200 
201 #endif
DataWriter.h
electrons_cff.bool
bool
Definition: electrons_cff.py:393
ConnectionPool.h
MessageLogger.h
funct::false
false
Definition: Factorize.h:29
Exception.h
l1t::OMDSReader
Definition: OMDSReader.h:42
OMDSReader.h
ESHandle.h
L1ConfigOnlineProdBase::m_omdsReader
l1t::OMDSReader m_omdsReader
Definition: L1ConfigOnlineProdBase.h:65
L1TriggerKeyRcd
Definition: L1TriggerKeyRcd.h:30
align_cfg.recordName
recordName
Definition: align_cfg.py:66
edm::ESProducer::setWhatProduced
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:163
ESProducer.h
GlobalPosition_Frontier_DevDB_cff.record
record
Definition: GlobalPosition_Frontier_DevDB_cff.py:10
typelookup.h
l1t::DataAlreadyPresentException
Definition: Exception.h:32
L1ConfigOnlineProdBase::~L1ConfigOnlineProdBase
~L1ConfigOnlineProdBase() override
Definition: L1ConfigOnlineProdBase.h:108
L1ConfigOnlineProdBase
Definition: L1ConfigOnlineProdBase.h:52
L1ConfigOnlineProdBase::m_forceGeneration
bool m_forceGeneration
Definition: L1ConfigOnlineProdBase.h:66
cond::persistency::ConnectionPool::createSession
Session createSession(const std::string &connectionString, bool writeCapable=false)
Definition: ConnectionPool.cc:172
L1ConfigOnlineProdBase::produce
virtual std::unique_ptr< TData > produce(const TRcd &iRecord)
Definition: L1ConfigOnlineProdBase.h:114
DTskim_cfg.dataType
dataType
Definition: DTskim_cfg.py:56
l1t::DataInvalidException
Definition: Exception.h:51
L1ConfigOnlineProdBase::newObject
virtual std::unique_ptr< TData > newObject(const std::string &objectKey)=0
L1ConfigOnlineProdBase::L1ConfigOnlineProdBase
L1ConfigOnlineProdBase(const edm::ParameterSet &)
Definition: L1ConfigOnlineProdBase.h:80
L1TriggerKey.h
cond::persistency::ConnectionPool
Definition: ConnectionPool.h:35
edm::ESHandle
Definition: DTSurvey.h:22
l1t::OMDSReader::connect
void connect(const std::string &connectString, const std::string &authenticationPath)
Definition: OMDSReader.cc:43
L1ConfigOnlineProdBase::getObjectKey
bool getObjectKey(const TRcd &record, std::string &objectKey)
Definition: L1ConfigOnlineProdBase.h:162
edm::eventsetup::DependentRecordImplementation::get
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
Definition: DependentRecordImplementation.h:103
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::ParameterSet::exists
bool exists(std::string const &parameterName) const
checks if a parameter exists
Definition: ParameterSet.cc:681
L1TriggerKeyList
Definition: L1TriggerKeyList.h:32
edm::ParameterSet
Definition: ParameterSet.h:47
cond::persistency::Session
Definition: Session.h:63
cond::persistency::ConnectionPool::setAuthenticationPath
void setAuthenticationPath(const std::string &p)
Definition: ConnectionPool.cc:35
L1TriggerKeyList.h
L1ConfigOnlineProdBase::m_copyFromCondDB
bool m_copyFromCondDB
Definition: L1ConfigOnlineProdBase.h:76
cond::persistency::ConnectionPool::configure
void configure()
Definition: ConnectionPool.cc:127
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
L1TriggerKeyRcd.h
L1ConfigOnlineProdBase::m_dbSession
cond::persistency::Session m_dbSession
Definition: L1ConfigOnlineProdBase.h:75
ModuleFactory.h
l1t::DataWriter::fillLastTriggerKeyList
bool fillLastTriggerKeyList(L1TriggerKeyList &output)
Definition: DataWriter.cc:147
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
EventSetup.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
l1t::DataWriter
Definition: DataWriter.h:35
edm::ESProducer
Definition: ESProducer.h:104
edm::eventsetup::EventSetupRecordImplementation::get
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
Definition: EventSetupRecordImplementation.h:74
L1TriggerKeyList::token
std::string token(const std::string &tscKey) const
Definition: L1TriggerKeyList.cc:96
L1TriggerKeyListRcd
Definition: L1TriggerKeyListRcd.h:24
Session.h
crabWrapper.key
key
Definition: crabWrapper.py:19
L1TriggerKeyListRcd.h