Go to the documentation of this file.00001
00002
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef L1_ABSTRACT_PROCESSOR_H
00016 #define L1_ABSTRACT_PROCESSOR_H
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <FWCore/Framework/interface/EventSetup.h>
00031
00032
00033
00034
00035
00036 class L1AbstractProcessor {
00037
00038 public:
00039
00041 virtual ~L1AbstractProcessor() {}
00042
00044 virtual void run() {};
00045
00046 virtual void run(const edm::EventSetup& c) {};
00047
00049 virtual void reset() = 0;
00050
00051 };
00052
00053 #endif