# | Line 1 | Line 1 | |
---|---|---|
1 | #ifndef GENPARTICLESTRUCT_H | |
2 | #define GENPARTICLESTRUCT_H | |
3 | ||
4 | < | struct genParticleStruct { |
5 | < | genParticleStruct (int id, unsigned int idx, float pt, int did, unsigned int didx, float dpt); |
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.) {}; |
7 | int id_; | |
8 | unsigned int idx_; | |
9 | float pt_; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |