CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions
edm::EDLooper Class Referenceabstract

#include <EDLooper.h>

Inheritance diagram for edm::EDLooper:
edm::EDLooperBase EcalEleCalibLooper edm::ESProducerLooper edm::IterateNTimesLooper InvRingCalib MuScleFit __class__< T > AlignmentProducer PhysicsTools::MVATrainerLooper Pi0FixedMassWindowCalibration ZeeCalibration PhysicsTools::MVATrainerContainerLooperImpl< Record_t > PhysicsTools::MVATrainerLooperImpl< Record_t >

Public Member Functions

 EDLooper ()
 
 EDLooper (EDLooper const &)=delete
 
EDLooperoperator= (EDLooper const &)=delete
 
virtual ~EDLooper ()
 
- Public Member Functions inherited from edm::EDLooperBase
virtual void attachTo (ActivityRegistry &)
 Override this method if you need to monitor the state of the processing. More...
 
virtual void beginOfJob (EventSetup const &)
 
virtual void beginOfJob ()
 
void copyInfo (ScheduleInfo const &)
 
void doBeginLuminosityBlock (LuminosityBlockPrincipal &, EventSetup const &, ProcessContext *)
 
void doBeginRun (RunPrincipal &, EventSetup const &, ProcessContext *)
 
Status doDuringLoop (EventPrincipal &eventPrincipal, EventSetup const &es, ProcessingController &, StreamContext *)
 
void doEndLuminosityBlock (LuminosityBlockPrincipal &, EventSetup const &, ProcessContext *)
 
Status doEndOfLoop (EventSetup const &es)
 
void doEndRun (RunPrincipal &, EventSetup const &, ProcessContext *)
 
void doStartingNewLoop ()
 
 EDLooperBase ()
 
 EDLooperBase (EDLooperBase const &)=delete
 
virtual void endOfJob ()
 
virtual std::set
< eventsetup::EventSetupRecordKey
modifyingRecords () const
 
EDLooperBaseoperator= (EDLooperBase const &)=delete
 
void prepareForNextLoop (eventsetup::EventSetupProvider *esp)
 
void setActionTable (ExceptionToActionTable const *actionTable)
 
void setModuleChanger (ModuleChanger *)
 
virtual ~EDLooperBase ()
 

Private Member Functions

virtual Status duringLoop (const edm::Event &, const edm::EventSetup &)=0
 
virtual Status duringLoop (const edm::Event &, const edm::EventSetup &, ProcessingController &)
 

Additional Inherited Members

- Public Types inherited from edm::EDLooperBase
enum  Status { kContinue, kStop }
 
- Protected Member Functions inherited from edm::EDLooperBase
ModuleChangermoduleChanger ()
 This only returns a non-zero value during the call to endOfLoop. More...
 
ScheduleInfo const * scheduleInfo () const
 This returns a non-zero value after the constructor has been called. More...
 

Detailed Description

Definition at line 27 of file EDLooper.h.

Constructor & Destructor Documentation

EDLooper::EDLooper ( )

Definition at line 12 of file EDLooper.cc.

EDLooper::~EDLooper ( )
virtual

Definition at line 13 of file EDLooper.cc.

13 { }
edm::EDLooper::EDLooper ( EDLooper const &  )
delete

Member Function Documentation

virtual Status edm::EDLooper::duringLoop ( const edm::Event ,
const edm::EventSetup  
)
privatepure virtual
EDLooperBase::Status EDLooper::duringLoop ( const edm::Event iEvent,
const edm::EventSetup iEventSetup,
ProcessingController  
)
privatevirtual

override base class interface and just call the above duringLoop

Implements edm::EDLooperBase.

Definition at line 16 of file EDLooper.cc.

References duringLoop().

16  {
17  return duringLoop(iEvent, iEventSetup);
18  }
virtual Status duringLoop(const edm::Event &, const edm::EventSetup &)=0
EDLooper& edm::EDLooper::operator= ( EDLooper const &  )
delete