StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
McParticle.cxx
1 /*
2  * Created by S. Gliske, May 2012
3  *
4  * Description: McParticle_t, used in the McEEmcTree.
5  *
6  * Note: this class does not explicitly depend on the STAR framework,
7  * and so the trees can be read outside of the STAR framework. Note:
8  * data members are all public, to allow a lighter weight implementation.
9  *
10  *
11  */
12 
13 #include <Rtypes.h>
14 #include <TVector3.h>
15 
16 #include "McParticle.h"
17 
18 // default constructor
19 McParticle_t::McParticle_t() : parentIdx(-1), startVertexIdx(-1), stopVertexIdx(-1), gId(0), pId(0), E(0),
20  sector(-1), uPos(0), vPos(0), uE(0), vE(0),
21  eTow(0), ePre1(0), ePre2(0), ePost(0) { /* */ };
22 
23 
24 // deconstructor
25 McParticle_t::~McParticle_t() { /* */ };
26 
27 ClassImp( McParticle_t );
28 
29 /*
30  * $Id: McParticle.cxx,v 1.1 2012/11/26 19:04:30 sgliske Exp $
31  * $Log: McParticle.cxx,v $
32  * Revision 1.1 2012/11/26 19:04:30 sgliske
33  * moved from offline/users/sgliske/StRoot/StEEmcPool/EEmcTreeContainers to StRoot/StEEmcPool/EEmcTreeContainers
34  *
35  *
36  */