ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Root Listing
root
/
cvsroot
/
UserCode
/
FGolf
/
Tools
/
GenParticleStruct.cc
Revision:
1.2
Committed:
Sat Mar 17 19:48:44 2012 UTC
(13 years, 1 month ago) by
fgolf
Content type:
text/plain
Branch:
MAIN
Changes since
1.1
:
+2 -1 lines
Log Message:
change capitalization; add default constructor
File Contents
#
User
Rev
Content
1
fgolf
1.1
#include "GenParticleStruct.h"
2
3
fgolf
1.2
GenParticleStruct::GenParticleStruct(int id, unsigned int idx, float pt, int did, unsigned int didx, float dpt) :
4
fgolf
1.1
id_(id), idx_(idx), pt_(pt), did_(did), didx_(didx), dpt_(dpt)
5
{}
6
fgolf
1.2