1 |
kiesel |
1.1 |
#ifndef TreeObjects_h
|
2 |
|
|
#define TreeObjects_h
|
3 |
|
|
|
4 |
|
|
namespace tree {
|
5 |
|
|
// In this namespace classes for the trees are defined.
|
6 |
|
|
|
7 |
|
|
class Particle {
|
8 |
|
|
public:
|
9 |
|
|
float pt, eta, phi;
|
10 |
|
|
};
|
11 |
|
|
|
12 |
|
|
class Photon : public Particle {
|
13 |
|
|
public:
|
14 |
|
|
float r9, sigmaIetaIeta, hadTowOverEm, pixelseed;
|
15 |
|
|
float chargedIso, neutralIso, photonIso;
|
16 |
kiesel |
1.4 |
bool conversionSafeVeto;
|
17 |
kiesel |
1.1 |
};
|
18 |
|
|
|
19 |
|
|
class Jet : public Particle{
|
20 |
|
|
public:
|
21 |
kiesel |
1.3 |
float bCSV;
|
22 |
kiesel |
1.1 |
};
|
23 |
|
|
|
24 |
|
|
bool EtGreater(const tree::Particle, const tree::Particle);
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
} // end namespace definition
|
28 |
|
|
|
29 |
|
|
#endif
|
30 |
kiesel |
1.2 |
|
31 |
|
|
|
32 |
|
|
|