File indexing completed on 2024-04-06 12:12:01
0001 #ifndef FWCore_Framework_EDLooper_h
0002 #define FWCore_Framework_EDLooper_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #include "FWCore/Framework/interface/EDLooperBase.h"
0021
0022 #include <set>
0023 #include <memory>
0024
0025 namespace edm {
0026
0027 class EDLooper : public EDLooperBase {
0028 public:
0029 EDLooper();
0030 ~EDLooper() override;
0031
0032 EDLooper(EDLooper const&) = delete;
0033 EDLooper& operator=(EDLooper const&) = delete;
0034
0035 private:
0036
0037
0038 virtual Status duringLoop(const edm::Event&, const edm::EventSetup&) = 0;
0039
0040
0041
0042 Status duringLoop(const edm::Event&, const edm::EventSetup&, ProcessingController&) override;
0043 };
0044 }
0045
0046 #endif