ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/TRootJet.h
Revision: 1.1
Committed: Mon May 19 16:12:13 2008 UTC (16 years, 11 months ago) by mlethuil
Content type: text/plain
Branch: MAIN
CVS Tags: cmssw_1_6_12
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 mlethuil 1.1 #ifndef TRootJet_h
2     #define TRootJet_h
3    
4     #include "../interface/TRootParticle.h"
5    
6     #include "Rtypes.h"
7     #include "TObject.h"
8    
9    
10     using namespace std;
11    
12     class TRootJet : public TRootParticle
13     {
14    
15     public:
16    
17     TRootJet() : TRootParticle(), Et_em(0.) {;}
18     TRootJet(Double_t px, Double_t py, Double_t pz, Double_t e) : TRootParticle(px,py,pz,e), Et_em(0.) {;}
19     ~TRootJet() {;}
20    
21     Float_t et_em() { return Et_em; }
22    
23     void setEt_em(Float_t et_em) { Et_em = et_em; }
24    
25     private:
26    
27     Float_t Et_em;
28    
29     ClassDef (TRootJet,1);
30     };
31    
32     #endif