1 |
fgolf |
1.1 |
#ifndef GENPARTICLESTRUCT_H
|
2 |
|
|
#define GENPARTICLESTRUCT_H
|
3 |
|
|
|
4 |
fgolf |
1.2 |
struct GenParticleStruct {
|
5 |
fgolf |
1.3 |
GenParticleStruct (int id, unsigned int idx, float pt, float eta, int did, unsigned int didx, float dpt, float deta);
|
6 |
|
|
GenParticleStruct () : id_(0), idx_(999999), pt_(-1.), eta_(-999999.), did_(0), didx_(999999), dpt_(-1.), deta_(-999999.) {};
|
7 |
fgolf |
1.1 |
int id_;
|
8 |
|
|
unsigned int idx_;
|
9 |
|
|
float pt_;
|
10 |
fgolf |
1.3 |
float eta_;
|
11 |
fgolf |
1.1 |
int did_;
|
12 |
|
|
unsigned int didx_;
|
13 |
|
|
float dpt_;
|
14 |
fgolf |
1.3 |
float deta_;
|
15 |
fgolf |
1.1 |
int rid_;
|
16 |
|
|
unsigned int ridx_;
|
17 |
|
|
};
|
18 |
|
|
|
19 |
|
|
#endif
|