2 |
|
#define GENPARTICLESTRUCT_H |
3 |
|
|
4 |
|
struct GenParticleStruct { |
5 |
< |
GenParticleStruct (int id, unsigned int idx, float pt, int did, unsigned int didx, float dpt); |
6 |
< |
GenParticleStruct () : id_(0), idx_(999999), pt_(-1.), did_(0), didx_(999999), dpt_(-1.) {}; |
5 |
> |
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 |
|
int id_; |
8 |
|
unsigned int idx_; |
9 |
|
float pt_; |
10 |
+ |
float eta_; |
11 |
|
int did_; |
12 |
|
unsigned int didx_; |
13 |
|
float dpt_; |
14 |
+ |
float deta_; |
15 |
|
int rid_; |
16 |
|
unsigned int ridx_; |
17 |
|
}; |