ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ProofAnalysisFramework/MyAnalysisTESCO.h
Revision: 1.1
Committed: Thu Jun 10 09:55:51 2010 UTC (14 years, 10 months ago) by iglezh
Content type: text/plain
Branch: MAIN
Log Message:
First version supporting Mini Trees and TESCO Trees

File Contents

# User Rev Content
1 iglezh 1.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