ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/PollackPrograms/src/TCTriggerObject.h
Revision: 1.2
Committed: Wed Feb 20 21:39:44 2013 UTC (12 years, 2 months ago) by bpollack
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +12 -4 lines
Log Message:
commiting moriond analysis package

File Contents

# Content
1 #ifndef _TCTriggerObject_H
2 #define _TCTriggerObject_H
3
4 #include "TObject.h"
5 #include "TLorentzVector.h"
6 #include <string>
7
8 using namespace std;
9
10 class TCTriggerObject : public TLorentzVector {
11 private:
12 int _id;
13 string _HLTName;
14 string _moduleName;
15
16 public:
17 TCTriggerObject();
18 virtual ~TCTriggerObject();
19
20 void SetId(int i);
21 void SetHLTName(string s);
22 void SetModuleName(string s);
23 int GetId();
24 string GetHLTName();
25 string GetModuleName();
26
27 ClassDef(TCTriggerObject, 1);
28 };
29
30 #endif