Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:26

0001 #ifndef RecoExamples_myRawAna_h
0002 #define RecoExamples_myRawAna_h
0003 #include <TH1.h>
0004 #include <TH2.h>
0005 #include <TProfile.h>
0006 #include <TFile.h>
0007 
0008 /* \class myRawAna
0009  *
0010  * \author Jim Hirschauer
0011  *
0012  * \version 1
0013  *
0014  */
0015 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0016 #include "FWCore/ServiceRegistry/interface/Service.h"
0017 #include "CommonTools/UtilAlgos/interface/TFileService.h"
0018 
0019 // class TFile;
0020 
0021 class myRawAna : public edm::one::EDAnalyzer<edm::one::SharedResources> {
0022 public:
0023   myRawAna(const edm::ParameterSet&);
0024 
0025 private:
0026   void beginJob() override;
0027   void analyze(const edm::Event&, const edm::EventSetup&) override;
0028   void endJob() override;
0029 
0030   TH2F* fedSize;
0031   TH1F* totFedSize;
0032 };
0033 
0034 #endif