ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DGele/MiniTreeFormat/TTbar/interface/ZJetsEvtMC.h
Revision: 1.1
Committed: Tue Oct 20 17:15:16 2009 UTC (15 years, 6 months ago) by dgele
Content type: text/plain
Branch: MAIN
Branch point for: ANA
Log Message:
Initial revision

File Contents

# User Rev Content
1 dgele 1.1 #ifndef __TOP_TREE_Z_JETSEVTMC_H__
2     #define __TOP_TREE_Z_JETSEVTMC_H__
3    
4     //-------------------------------------------------------------------------------
5     // Header file
6     //
7     // $Author: J.Speck
8     // modif DGele
9     //
10     //-------------------------------------------------------------------------------
11    
12     #include "Vec.h"
13     #include "vector.h"
14    
15     namespace TopTree{
16    
17     class ZJetsEvtMC {
18    
19     public:
20    
21     ZJetsEvtMC();
22     ~ZJetsEvtMC();
23    
24     void Reset();
25    
26     LorentzVector p4_Z_gen;
27     LorentzVector p4_Lep1_gen;
28     LorentzVector p4_Lep2_gen;
29     double Q_Lep1_gen;
30     double Q_Lep2_gen;
31     int Lep1_pdgID;
32     int Lep2_pdgID;
33     int nJets;
34     int Tmeme;
35     int Zgtobb;
36    
37     std::vector<LorentzVector> p4_Jets;
38    
39     private:
40    
41     };
42     }
43    
44     #endif //__TOP_TREE_Z_JETSEVTMC_H__