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 -3 lines |
Log Message: | Removed custom copy constructor |
# | User | Rev | Content |
---|---|---|---|
1 | devildog | 1.1 | /* |
2 | * File: TCMET.cc | ||
3 | * Author: S. Won | ||
4 | */ | ||
5 | |||
6 | #include "TCMET.h" | ||
7 | #include <iostream> | ||
8 | |||
9 | TCMET::TCMET() { | ||
10 | } | ||
11 | |||
12 | TCMET::~TCMET() { | ||
13 | } | ||
14 | |||
15 | // "get" methods ------------------------------------- | ||
16 | |||
17 | float TCMET::Phi() const { | ||
18 | return _phi; | ||
19 | } | ||
20 | |||
21 | float TCMET::Et() const { | ||
22 | return _Et; | ||
23 | } | ||
24 | |||
25 | // set methods | ||
26 | void TCMET::SetPhi(float phi) { | ||
27 | _phi = phi; | ||
28 | } | ||
29 | |||
30 | void TCMET::SetEt(float Et) { | ||
31 | _Et = Et; | ||
32 | } | ||
33 |