#include <PhysicsTools/UtilAlgos/interface/DummySelector.h>
Public Member Functions | |
DummySelector (const edm::ParameterSet &) | |
void | newEvent (const edm::Event &, const edm::EventSetup &) |
template<typename T> | |
bool | operator() (const T &) |
Private Attributes | |
bool | updated_ |
Definition at line 20 of file DummySelector.h.
DummySelector::DummySelector | ( | const edm::ParameterSet & | ) | [inline, explicit] |
void DummySelector::newEvent | ( | const edm::Event & | , | |
const edm::EventSetup & | ||||
) | [inline] |
bool DummySelector::operator() | ( | const T & | ) | [inline] |
Definition at line 25 of file DummySelector.h.
References edm::errors::Configuration, and updated_.
00025 { 00026 if(!updated_) 00027 throw edm::Exception(edm::errors::Configuration) 00028 << "DummySelector: forgot to call newEvent\n"; 00029 return true; 00030 }
bool DummySelector::updated_ [private] |