Revision: | 1.1 |
Committed: | Wed Feb 8 05:43:53 2012 UTC (13 years, 3 months ago) by fgolf |
Content type: | text/plain |
Branch: | MAIN |
Log Message: | struct containing info for generator-level lepton studies |
# | Content |
---|---|
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); |
6 | int id_; |
7 | unsigned int idx_; |
8 | float pt_; |
9 | int did_; |
10 | unsigned int didx_; |
11 | float dpt_; |
12 | int rid_; |
13 | unsigned int ridx_; |
14 | }; |
15 | |
16 | #endif |