1 |
mlethuil |
1.1 |
#ifndef TRootJet_h
|
2 |
|
|
#define TRootJet_h
|
3 |
|
|
|
4 |
|
|
#include "../interface/TRootParticle.h"
|
5 |
|
|
|
6 |
|
|
#include "Rtypes.h"
|
7 |
|
|
#include "TObject.h"
|
8 |
|
|
|
9 |
|
|
|
10 |
|
|
using namespace std;
|
11 |
|
|
|
12 |
|
|
class TRootJet : public TRootParticle
|
13 |
|
|
{
|
14 |
|
|
|
15 |
|
|
public:
|
16 |
|
|
|
17 |
|
|
TRootJet() : TRootParticle(), Et_em(0.) {;}
|
18 |
|
|
TRootJet(Double_t px, Double_t py, Double_t pz, Double_t e) : TRootParticle(px,py,pz,e), Et_em(0.) {;}
|
19 |
|
|
~TRootJet() {;}
|
20 |
|
|
|
21 |
|
|
Float_t et_em() { return Et_em; }
|
22 |
|
|
|
23 |
|
|
void setEt_em(Float_t et_em) { Et_em = et_em; }
|
24 |
|
|
|
25 |
|
|
private:
|
26 |
|
|
|
27 |
|
|
Float_t Et_em;
|
28 |
|
|
|
29 |
|
|
ClassDef (TRootJet,1);
|
30 |
|
|
};
|
31 |
|
|
|
32 |
|
|
#endif
|