CMS 3D CMS Logo

EDLooper.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_EDLooper_h
2 #define FWCore_Framework_EDLooper_h
3 // -*- C++ -*-
4 //
5 // Package: Framework
6 // Module: EDLooper
7 //
15 //
16 // Author: Valentin Kuznetsov
17 // Created: Wed Jul 5 11:42:17 EDT 2006
18 //
19 
21 
22 #include <set>
23 #include <memory>
24 
25 namespace edm {
26 
27  class EDLooper : public EDLooperBase {
28  public:
29  EDLooper();
30  ~EDLooper() override;
31 
32  EDLooper(EDLooper const&) = delete; // Disallow copying and moving
33  EDLooper& operator=(EDLooper const&) = delete; // Disallow copying and moving
34 
35  private:
38  virtual Status duringLoop(const edm::Event&, const edm::EventSetup&) = 0;
39 
43  };
44 } // namespace edm
45 
46 #endif
virtual Status duringLoop(const edm::Event &, const edm::EventSetup &)=0
~EDLooper() override
Definition: EDLooper.cc:13
HLT enums.
EDLooper & operator=(EDLooper const &)=delete