ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/devildog/SWonAnalysis3/Thesis/src/TCMET.h
Revision: 1.2
Committed: Wed Jun 15 22:12:54 2011 UTC (13 years, 10 months ago) by devildog
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -1 lines
Log Message:
Removed custom copy constructor

File Contents

# User Rev Content
1 devildog 1.1 /*
2     * File: TCMET.h
3     * Author: S. Won
4     */
5    
6     #ifndef _TCMET_H
7     #define _TCMET_H
8    
9     #include "TObject.h"
10    
11     class TCMET : public TObject {
12     private:
13     float _Et;
14     float _phi;
15    
16     public:
17     TCMET();
18     virtual ~TCMET();
19    
20     float Et() const;
21     float Phi() const;
22    
23     void SetEt(float Et);
24     void SetPhi(float phi);
25    
26     ClassDef(TCMET, 2);
27    
28     };
29    
30     #endif