ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Root Listing
root
/
cvsroot
/
UserCode
/
FGolf
/
Tools
/
GenParticleStruct.cc
Revision:
1.3
Committed:
Mon May 28 22:00:22 2012 UTC
(12 years, 11 months ago) by
fgolf
Content type:
text/plain
Branch:
MAIN
CVS Tags:
HEAD
Changes since
1.2
:
+2 -2 lines
Log Message:
add eta to gen particle struct
File Contents
#
Content
1
#include "GenParticleStruct.h"
2
3
GenParticleStruct::GenParticleStruct(int id, unsigned int idx, float pt, float eta, int did, unsigned int didx, float dpt, float deta) :
4
id_(id), idx_(idx), pt_(pt), eta_(eta), did_(did), didx_(didx), dpt_(dpt), deta_(deta)
5
{}
6