ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/PollackPrograms/src/TCTriggerObject.h
Revision: 1.1
Committed: Tue Jul 24 20:24:58 2012 UTC (12 years, 9 months ago) by bpollack
Content type: text/plain
Branch: MAIN
Log Message:
adding a cleaned-up analyzer for 2012

File Contents

# Content
1 #ifndef _TCTriggerObject_H
2 #define _TCTriggerObject_H
3
4 #include "TObject.h"
5 #include "TLorentzVector.h"
6
7 class TCTriggerObject : public TLorentzVector {
8 private:
9 int id;
10
11 public:
12 TCTriggerObject();
13 virtual ~TCTriggerObject();
14
15 void setId(int i);
16
17 int getId();
18
19 ClassDef(TCTriggerObject, 1);
20 };
21
22 #endif