CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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( );
28  void analyze ( const edm::Event& , const edm::EventSetup& );
29  void endJob();
30 
31  TH2F *fedSize;
32  TH1F *totFedSize;
33 
34 };
35 
36 #endif
myRawAna(const edm::ParameterSet &)
Definition: myRawAna.cc:31
TH2F * fedSize
Definition: myRawAna.h:31
void beginJob()
Definition: myRawAna.cc:38
TH1F * totFedSize
Definition: myRawAna.h:32
void analyze(const edm::Event &, const edm::EventSetup &)
Definition: myRawAna.cc:50
void endJob()
Definition: myRawAna.cc:81