#include <RunBase.h>
Public Member Functions | |
Timestamp const & | beginTime () const |
Timestamp const & | endTime () const |
template<typename PROD > | |
bool | getByLabel (InputTag const &tag, Handle< PROD > &result) const |
same as above, but using the InputTag class | |
template<class T > | |
bool | getByLabel (const InputTag &tag, Handle< T > &result) const |
RunID const & | id () const |
RunNumber_t | run () const |
virtual edm::RunAuxiliary const & | runAuxiliary () const =0 |
RunBase () | |
virtual | ~RunBase () |
Private Member Functions | |
virtual BasicHandle | getByLabelImpl (const std::type_info &iWrapperType, const std::type_info &iProductType, const InputTag &iTag) const =0 |
RunBase::RunBase | ( | ) |
RunBase::~RunBase | ( | ) | [virtual] |
Timestamp const& edm::RunBase::beginTime | ( | ) | const [inline] |
Definition at line 45 of file RunBase.h.
References edm::RunAuxiliary::beginTime(), and runAuxiliary().
Referenced by DQMEventInfo::beginRun(), BeamMonitorBx::beginRun(), BeamMonitor::beginRun(), XmasToDQMEventInfo::beginRun(), and PhiSymmetryCalibration::endRun().
{return runAuxiliary().beginTime();}
Timestamp const& edm::RunBase::endTime | ( | ) | const [inline] |
Definition at line 46 of file RunBase.h.
References edm::RunAuxiliary::endTime(), and runAuxiliary().
Referenced by PhiSymmetryCalibration::endRun().
{return runAuxiliary().endTime();}
bool edm::RunBase::getByLabel | ( | const InputTag & | tag, |
Handle< T > & | result | ||
) | const |
Definition at line 64 of file RunBase.h.
References edm::HandleBase::clear(), edm::convert_handle(), edm::BasicHandle::failedToGet(), and getByLabelImpl().
{ result.clear(); BasicHandle bh = this->getByLabelImpl(typeid(edm::Wrapper<T>), typeid(T), tag); convert_handle(bh, result); // throws on conversion error if (bh.failedToGet()) { return false; } return true; }
virtual BasicHandle edm::RunBase::getByLabelImpl | ( | const std::type_info & | iWrapperType, |
const std::type_info & | iProductType, | ||
const InputTag & | iTag | ||
) | const [private, pure virtual] |
Implemented in fwlite::RunBase, and edm::Run.
Referenced by getByLabel().
RunID const& edm::RunBase::id | ( | void | ) | const [inline] |
Definition at line 43 of file RunBase.h.
References edm::RunAuxiliary::id(), and runAuxiliary().
Referenced by ZDCMonitorClient::beginRun(), FourVectorHLTriggerOffline::beginRun(), HLTOverallSummary::beginRun(), HLTSeedL1LogicScalers::beginRun(), HLTMuonCertSummary::beginRun(), HLTJetMETDQMSource::beginRun(), DQMEventInfo::beginRun(), DTTrigProd::beginRun(), HLTMonSimpleBTag::beginRun(), PhotonDataCertification::beginRun(), TrigResRateMon::beginRun(), EcalBarrelMonitorClient::beginRun(), HcalMonitorClient::beginRun(), HcalBeamMonitor::beginRun(), HLTScalersClient::beginRun(), FourVectorHLTOffline::beginRun(), MulticoreRunLumiEventChecker::beginRun(), EcalEndcapMonitorClient::beginRun(), FourVectorHLTOnline::beginRun(), HLTScalers::beginRun(), DQMFileSaver::beginRun(), FourVectorHLT::beginRun(), FourVectorHLTOnline::endRun(), HLTMonSimpleBTag::endRun(), DataCertificationJetMET::endRun(), AlignmentProducer::endRun(), L1GtHwValidation::endRun(), FourVectorHLTOffline::endRun(), EcalEndcapMonitorClient::endRun(), FourVectorHLT::endRun(), JetMETHLTOfflineSource::endRun(), ConditionDBWriter< SiStripApvGain >::endRun(), MulticoreRunLumiEventChecker::endRun(), EcalBarrelMonitorClient::endRun(), L1ExtraDQM::endRun(), ZDCMonitorClient::endRun(), HLTJetMETDQMSource::endRun(), HLTScalers::endRun(), AlcaBeamSpotHarvester::endRun(), BTagHLTOfflineSource::endRun(), TrigResRateMon::endRun(), AlcaBeamMonitorClient::endRun(), FourVectorHLTriggerOffline::endRun(), HLTConfigProvider::init(), and main().
{return runAuxiliary().id();}
RunNumber_t edm::RunBase::run | ( | void | ) | const [inline] |
Definition at line 44 of file RunBase.h.
References edm::RunAuxiliary::run(), and runAuxiliary().
Referenced by L1GtAnalyzer::analyzeConditionsInRunBlock(), GlobalHitsProdHistStripper::beginRun(), LumiCalculator::beginRun(), APVCyclePhaseMonitor::beginRun(), LumiProducer::beginRun(), SiStripQualityHistory::beginRun(), APVCyclePhaseProducerFromL1TS::beginRun(), AlCaRecoTriggerBitsRcdRead::beginRun(), MEtoEDMConverter::beginRun(), HLTMonBitSummary::beginRun(), RunHistogramManager::beginRun(), ConfigurableAPVCyclePhaseProducer::beginRun(), SiPixelHistoricInfoReader::beginRun(), SiPixelHistoricInfoEDAClient::beginRun(), CastorRawToDigi::beginRun(), SiStripCorrelateNoise::beginRun(), APVCyclePhaseProducerFromL1ABC::beginRun(), BaseHistoParams::beginRun(), IgProfModule::beginRun(), BeamMonitor::beginRun(), TKStatus::beginRun(), EDMtoMEConverter::beginRun(), SiStripFedCablingBuilder::beginRun(), SiPixelHistoricInfoEDAClient::endRun(), PhiSymmetryCalibration::endRun(), LumiCalculator::endRun(), cms::Analyzer_minbias::endRun(), DummyCondDBWriter< TObject, TObjectO, TRecord >::endRun(), SiPixelHistoricInfoDQMClient::endRun(), HLTrigReport::endRun(), edm::service::IgProfService::postBeginRun(), and FamosManager::setupGeometryAndField().
{return runAuxiliary().run();}
virtual edm::RunAuxiliary const& edm::RunBase::runAuxiliary | ( | ) | const [pure virtual] |
Implemented in fwlite::Run, and edm::Run.
Referenced by beginTime(), endTime(), id(), and run().