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