#include <EDLooper.h>
Public Member Functions | |
EDLooper () | |
virtual | ~EDLooper () |
Private Member Functions | |
virtual Status | duringLoop (const edm::Event &, const edm::EventSetup &)=0 |
virtual Status | duringLoop (const edm::Event &, const edm::EventSetup &, ProcessingController &) |
EDLooper (const EDLooper &) | |
const EDLooper & | operator= (const EDLooper &) |
Definition at line 28 of file EDLooper.h.
EDLooper::EDLooper | ( | ) |
Definition at line 12 of file EDLooper.cc.
: EDLooperBase(){ }
EDLooper::~EDLooper | ( | ) | [virtual] |
Definition at line 13 of file EDLooper.cc.
{ }
edm::EDLooper::EDLooper | ( | const EDLooper & | ) | [private] |
virtual Status edm::EDLooper::duringLoop | ( | const edm::Event & | , |
const edm::EventSetup & | |||
) | [private, pure virtual] |
Called after all event modules have had a chance to process the edm::Event.
Implemented in AlignmentProducer, EcalEleCalibLooper, InvRingCalib, Pi0FixedMassWindowCalibration, ZeeCalibration, edm::IterateNTimesLooper, loopername, MuScleFit, MuScleFit, and PhysicsTools::MVATrainerLooper.
Referenced by duringLoop().
EDLooperBase::Status EDLooper::duringLoop | ( | const edm::Event & | iEvent, |
const edm::EventSetup & | iEventSetup, | ||
ProcessingController & | |||
) | [private, virtual] |
override base class interface and just call the above duringLoop
Implements edm::EDLooperBase.
Definition at line 16 of file EDLooper.cc.
References duringLoop().
{ return duringLoop(iEvent, iEventSetup); }