StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StXiMc.cc
1 /***********************************************************************
2  *
3  * $Id: StXiMc.cc,v 3.2 2001/05/04 20:15:15 genevb Exp $
4  * $Log: StXiMc.cc,v $
5  * Revision 3.2 2001/05/04 20:15:15 genevb
6  * Common interfaces and reorganization of components, add MC event info
7  *
8  * Revision 3.1 2000/07/14 21:28:34 genevb
9  * Added V0Mc index for XiMc, fixed bug with entries for XiMc, cleaned up controllers
10  *
11  * Revision 3.0 2000/07/14 12:56:50 genevb
12  * Revision 3 has event multiplicities and dedx information for vertex tracks
13  *
14  * Revision 2.0 2000/06/05 05:19:46 genevb
15  * New version of Strangeness micro DST package
16  *
17  *
18  ***********************************************************************
19  *
20  * Description: Monte Carlo Xi micro dst class
21  *
22  ***********************************************************************/
23 #include "StXiMc.hh"
24 
25 ClassImp(StXiMc)
26 
27 StXiMc::StXiMc() : StXiI(), StKinkMc()
28 { v0 = -1; }
29 
30 StXiMc::StXiMc(StMcVertex* mcVertex, StMcTrack* mcDaughterTrack,
31  StStrangeEvMuDst* mcEvent) : StXiI(),
32  StKinkMc(mcVertex, mcDaughterTrack)
33 { v0 = -1; mEvent = mcEvent; }
34 
35 StXiMc::~StXiMc()
36 {}
37 
Definition: StXiI.hh:24
Monte Carlo Track class All information on a simulated track is stored in this class: kinematics...
Definition: StMcTrack.hh:144
Definition: StXiMc.hh:17