1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DataFormats_ReadMath_h
#define DataFormats_ReadMath_h
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Utilities/interface/InputTag.h"
class ReadMath : public edm::one::EDAnalyzer<> {
public:
ReadMath(const edm::ParameterSet&);
private:
void analyze(const edm::Event&, const edm::EventSetup&);
edm::InputTag src;
};
#endif
|