ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DGele/MiniTreeFormat/TTbar/interface/WJetsEvtMC.h
Revision: 1.1.1.1 (vendor branch)
Committed: Tue Oct 20 17:15:16 2009 UTC (15 years, 6 months ago) by dgele
Content type: text/plain
Branch: ANA
CVS Tags: start
Changes since 1.1: +0 -0 lines
Error occurred while calculating annotation data.
Log Message:
version CMSSW_2_2_10

File Contents

# Content
1 #ifndef __TOP_TREE_W_JET_EVTMC_H__
2 #define __TOP_TREE_W_JET_EVTMC_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 WJetsEvtMC {
18
19 public:
20
21 WJetsEvtMC();
22 ~WJetsEvtMC();
23
24 void Reset();
25
26 LorentzVector p4_Lep_gen;
27 double Q_Lep_gen;
28
29 LorentzVector p4_Neu_gen;
30
31 LorentzVector p4_Wminus_gen;
32 LorentzVector p4_Wplus_gen;
33
34 std::vector<LorentzVector> p4_Jets;
35
36 int nJets;
37 int Tmeme;
38
39 int mcLepId;
40
41
42 private:
43
44
45 };
46
47 }
48
49
50
51
52 #endif //__TOP_TREE_W_JET_PARTON_EVT_H__
53