ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ProofAnalysisFramework/MyAnalysisTESCO.h
Revision: 1.2
Committed: Wed Aug 11 19:48:06 2010 UTC (14 years, 8 months ago) by iglezh
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Wrong place

File Contents

# Content
1 #ifndef MYANALYSISTESCO_H
2 #define MYANALYSISTESCO_H 1
3
4 #include "CMSAnalysisSelectorTESCO.h"
5
6 #include <TH1F.h>
7 #include "TCounterUI.h"
8
9 class MyAnalysisTESCO: public CMSAnalysisSelectorTESCO {
10
11 public:
12 MyAnalysisTESCO(TTree *tree=0);
13 virtual ~MyAnalysisTESCO() {}
14
15 protected:
16 virtual void Initialise();
17 virtual void InsideLoop();
18 virtual void SetDataMembersAtTermination();
19 virtual void Summary();
20
21 public:
22 // My Declarations:
23 // Histograms
24 TH1F *myHistogram;
25 TH1F *fHmuPT;
26
27 // Counters
28 TCounterUI *nEvents;
29
30 // Variables used to locate Input Parameters
31 TString ss;
32 TString sss;
33 Int_t ii;
34 Int_t iii;
35 Double_t dd;
36 Double_t ddd;
37 Bool_t bb;
38 Bool_t bbb;
39
40 ClassDef(MyAnalysisTESCO,0);
41 };
42 #endif