#include <RunBase.h>
Public Member Functions | |
virtual bool | atEnd () const =0 |
virtual Long64_t | fileIndex () const |
virtual bool | getByLabel (const std::type_info &, const char *, const char *, const char *, void *) 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 (const std::type_info &, const std::type_info &, 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 | ( | const std::type_info & | , |
const char * | , | ||
const char * | , | ||
const char * | , | ||
void * | |||
) | const [pure virtual] |
Implemented in fwlite::Run.
Referenced by getByLabelImpl().
edm::BasicHandle RunBase::getByLabelImpl | ( | const std::type_info & | iWrapperInfo, |
const std::type_info & | , | ||
const edm::InputTag & | iTag | ||
) | const [private, virtual] |
Implements edm::RunBase.
Definition at line 53 of file RunBase.cc.
References getByLabel(), edm::InputTag::instance(), edm::InputTag::label(), edm::InputTag::process(), CrabTask::prod, edm::errors::ProductNotFound, s_prov(), and relativeConstraints::value.
{ edm::EDProduct* prod=0; void* prodPtr = ∏ getByLabel(iWrapperInfo, iTag.label().c_str(), iTag.instance().empty()?static_cast<const char*>(0):iTag.instance().c_str(), iTag.process().empty()?static_cast<const char*> (0):iTag.process().c_str(), prodPtr); if(0==prod) { 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(boost::shared_ptr<edm::EDProduct>(prod,null_deleter()),&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.