Revision: | 1.1 |
Committed: | Fri Jan 29 23:13:26 2010 UTC (15 years, 3 months ago) by anghel |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | HEAD |
Error occurred while calculating annotation data. | |
Log Message: | Revision 29Jan2010 |
# | Content |
---|---|
1 | #ifndef myEvent_GUARD |
2 | #define myEvent_GUARD |
3 | #include "Rtypes.h" |
4 | #include "TLorentzVector.h" |
5 | #include <vector> |
6 | |
7 | class myEvent { |
8 | public: |
9 | myEvent() {} |
10 | myEvent(int isTight, int isLoose) { isTight_ = isTight; isLoose_ = isLoose; } |
11 | virtual ~myEvent() {} |
12 | const int isTight() const { return isTight_; } |
13 | const int isLoose() const { return isLoose_; } |
14 | protected: |
15 | int isTight_; |
16 | int isLoose_; |
17 | ClassDef(myEvent,1) |
18 | }; |
19 | |
20 | #endif |