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
|