Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:43

0001 #ifndef DataFormats_ReadMath_h
0002 #define DataFormats_ReadMath_h
0003 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0004 #include "FWCore/Utilities/interface/InputTag.h"
0005 
0006 class ReadMath : public edm::one::EDAnalyzer<> {
0007 public:
0008   ReadMath(const edm::ParameterSet&);
0009 
0010 private:
0011   void analyze(const edm::Event&, const edm::EventSetup&);
0012   edm::InputTag src;
0013 };
0014 
0015 #endif