ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/FGolf/Tools/GenParticleStruct.h
Revision: 1.3
Committed: Mon May 28 22:00:21 2012 UTC (12 years, 11 months ago) by fgolf
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +4 -2 lines
Log Message:
add eta to gen particle struct

File Contents

# Content
1 #ifndef GENPARTICLESTRUCT_H
2 #define GENPARTICLESTRUCT_H
3
4 struct GenParticleStruct {
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 };
18
19 #endif