MLexampleModule_1

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef FWCore_MessageService_test_MLexampleModule_1_h
#define FWCore_MessageService_test_MLexampleModule_1_h

#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDAnalyzer.h"

namespace edm {
  class ParameterSet;
}

namespace edmtest {

  class MLexampleModule_1 : public edm::global::EDAnalyzer<> {
  public:
    explicit MLexampleModule_1(edm::ParameterSet const&) {}

    void analyze(edm::StreamID, edm::Event const& e, edm::EventSetup const& c) const override;

  private:
  };

}  // namespace edmtest

#endif  // FWCore_MessageService_test_MLexampleModule_1_h