StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StTrackPing.hh
1 //
2 // $Id: StTrackPing.hh,v 1.2 2009/11/10 20:57:28 fisyak Exp $
3 // simple struct
4 // for keeping track of common hits between tracks
5 //
6 #ifndef StTrackPing_hh
7 #define StTrackPing_hh
8 class StTrack;
9 
10 struct StTrackPing {
11  StTrack* mTrack;
12  unsigned int mNPings;
13 };
14 
15 bool compStTrackPing(StTrackPing& rhs, StTrackPing& lhs);
16 #endif