#include <RunBase.h>
Public Member Functions | |
virtual bool | atEnd () const =0 |
virtual Long64_t | fileIndex () const |
virtual bool | getByLabel (std::type_info const &, char const *, char const *, char const *, void *) const =0 |
virtual bool | getByLabel (std::type_info const &, char const *, char const *, char const *, edm::WrapperHolder &) const =0 |
virtual const RunBase & | operator++ ()=0 |
RunBase () | |
virtual Long64_t | secondaryFileIndex () const |
virtual const RunBase & | toBegin ()=0 |
virtual | ~RunBase () |
Private Member Functions | |
virtual edm::BasicHandle | getByLabelImpl (std::type_info const &, std::type_info const &, const edm::InputTag &) const |
RunBase::RunBase | ( | ) |
RunBase::~RunBase | ( | ) | [virtual] |
virtual bool fwlite::RunBase::atEnd | ( | ) | const [pure virtual] |
Implemented in fwlite::Run.
virtual Long64_t fwlite::RunBase::fileIndex | ( | ) | const [inline, virtual] |
virtual bool fwlite::RunBase::getByLabel | ( | std::type_info const & | , |
char const * | , | ||
char const * | , | ||
char const * | , | ||
edm::WrapperHolder & | |||
) | const [pure virtual] |
Implemented in fwlite::Run.
virtual bool fwlite::RunBase::getByLabel | ( | std::type_info const & | , |
char const * | , | ||
char const * | , | ||
char const * | , | ||
void * | |||
) | const [pure virtual] |
Implemented in fwlite::Run.
Referenced by getByLabelImpl().
edm::BasicHandle RunBase::getByLabelImpl | ( | std::type_info const & | iWrapperInfo, |
std::type_info const & | , | ||
const edm::InputTag & | iTag | ||
) | const [private, virtual] |
Implements edm::RunBase.
Definition at line 43 of file RunBase.cc.
References compareJSON::const, getByLabel(), edm::InputTag::instance(), edm::WrapperHolder::isPresent(), edm::WrapperHolder::isValid(), edm::InputTag::label(), edm::InputTag::process(), edm::errors::ProductNotFound, s_prov, and relativeConstraints::value.
{ edm::WrapperHolder edp; getByLabel(iWrapperInfo, iTag.label().c_str(), iTag.instance().empty()?static_cast<char const*>(0):iTag.instance().c_str(), iTag.process().empty()?static_cast<char const*> (0):iTag.process().c_str(), edp); if(!edp.isValid() || !edp.isPresent()) { edm::TypeID productType(iWrapperInfo); boost::shared_ptr<cms::Exception> whyFailed(new edm::Exception(edm::errors::ProductNotFound)); *whyFailed << "getByLabel: Found zero products matching all criteria\n" << "Looking for type: " << productType << "\n" << "Looking for module label: " << iTag.label() << "\n" << "Looking for productInstanceName: " << iTag.instance() << "\n" << (iTag.process().empty() ? "" : "Looking for process: ") << iTag.process() << "\n"; edm::BasicHandle failed(whyFailed); return failed; } edm::BasicHandle value(edp, &s_prov); return value; }
virtual const RunBase& fwlite::RunBase::operator++ | ( | ) | [pure virtual] |
Implemented in fwlite::Run.
virtual Long64_t fwlite::RunBase::secondaryFileIndex | ( | ) | const [inline, virtual] |
virtual const RunBase& fwlite::RunBase::toBegin | ( | ) | [pure virtual] |
Implemented in fwlite::Run.