Go to the documentation of this file.00001 #ifndef RecoExamples_myRawAna_h
00002 #define RecoExamples_myRawAna_h
00003 #include <TH1.h>
00004 #include <TH2.h>
00005 #include <TProfile.h>
00006 #include <TFile.h>
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "FWCore/Framework/interface/EDAnalyzer.h"
00016 #include "FWCore/ServiceRegistry/interface/Service.h"
00017 #include "CommonTools/UtilAlgos/interface/TFileService.h"
00018
00019
00020
00021 class myRawAna : public edm::EDAnalyzer {
00022
00023 public:
00024 myRawAna( const edm::ParameterSet & );
00025
00026 private:
00027 void beginJob( );
00028 void analyze ( const edm::Event& , const edm::EventSetup& );
00029 void endJob();
00030
00031 TH2F *fedSize;
00032 TH1F *totFedSize;
00033
00034 };
00035
00036 #endif