CMS 3D CMS Logo

myRawAna.h
Go to the documentation of this file.
1 #ifndef RecoExamples_myRawAna_h
2 #define RecoExamples_myRawAna_h
3 #include <TH1.h>
4 #include <TH2.h>
5 #include <TProfile.h>
6 #include <TFile.h>
7 
8 /* \class myRawAna
9  *
10  * \author Jim Hirschauer
11  *
12  * \version 1
13  *
14  */
18 
19 // class TFile;
20 
21 class myRawAna : public edm::EDAnalyzer {
22 
23 public:
24  myRawAna( const edm::ParameterSet & );
25 
26 private:
27  void beginJob( ) override;
28  void analyze ( const edm::Event& , const edm::EventSetup& ) override;
29  void endJob() override;
30 
31  TH2F *fedSize;
32  TH1F *totFedSize;
33 
34 };
35 
36 #endif
myRawAna(const edm::ParameterSet &)
Definition: myRawAna.cc:31
void beginJob() override
Definition: myRawAna.cc:38
TH2F * fedSize
Definition: myRawAna.h:31
TH1F * totFedSize
Definition: myRawAna.h:32
void endJob() override
Definition: myRawAna.cc:81
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: myRawAna.cc:50