ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/FGolf/Tools/GenParticleStruct.h
Revision: 1.1
Committed: Wed Feb 8 05:43:53 2012 UTC (13 years, 2 months ago) by fgolf
Content type: text/plain
Branch: MAIN
Log Message:
struct containing info for generator-level lepton studies

File Contents

# User Rev Content
1 fgolf 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);
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