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::one::EDAnalyzer<edm::one::SharedResources> {
22 public:
24 
25 private:
26  void beginJob() override;
27  void analyze(const edm::Event&, const edm::EventSetup&) override;
28  void endJob() override;
29 
30  TH2F* fedSize;
31  TH1F* totFedSize;
32 };
33 
34 #endif
myRawAna(const edm::ParameterSet &)
Definition: myRawAna.cc:31
void beginJob() override
Definition: myRawAna.cc:36
TH2F * fedSize
Definition: myRawAna.h:30
TH1F * totFedSize
Definition: myRawAna.h:31
void endJob() override
Definition: myRawAna.cc:72
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: myRawAna.cc:45