Skip to content
Snippets Groups Projects
Commit 651d4fe9 authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'range.StoreGate-20200402' into 'master'

StoreGate: Allow returning range through WriteCondHandle::isValid.

See merge request !31694
parents b87aa9dc 977bd0fc
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!31694StoreGate: Allow returning range through WriteCondHandle::isValid.
......@@ -40,9 +40,12 @@ namespace SG {
const std::string& key() const { return m_hkey.key(); }
const DataObjID& fullKey() const { return m_hkey.fullKey(); }
bool isValid();
bool isValid() const;
bool isValid(const EventIDBase& t) const;
bool isValid(EventIDRange& range) const;
bool isValid(const EventIDBase& t, EventIDRange& range) const;
template <typename R>
void addDependency(SG::ReadCondHandle<R>& rch);
......@@ -243,13 +246,32 @@ namespace SG {
template <typename T>
bool
WriteCondHandle<T>::isValid() {
WriteCondHandle<T>::isValid() const {
return (m_cc->valid(m_ctx.eventID()));
}
//---------------------------------------------------------------------------
template <typename T>
bool
WriteCondHandle<T>::isValid(const EventIDBase& t, EventIDRange& range) const {
return (m_cc->range(t, range));
}
//---------------------------------------------------------------------------
template <typename T>
bool
WriteCondHandle<T>::isValid (EventIDRange& range) const {
return (m_cc->range(m_ctx.eventID(), range));
}
//---------------------------------------------------------------------------
// Can't take a const RCH, as RCH.range() can load the ptr.
template <typename T>
template< typename R>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment