StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMcVertexC.cxx
1 /***************************************************************************
2  *
3  * $Id: StMcVertexC.cxx,v 2.2 2013/03/25 23:48:05 perev Exp $
4  *
5  **************************************************************************/
6 #include <algorithm>
7 #ifndef ST_NO_NAMESPACES
8 using std::find;
9 #endif
10 
11 #include "StMcVertexC.h"
12 #include "StMcTrack.hh"
13 
14 static const char rcsid[] = "$Id: StMcVertexC.cxx,v 2.2 2013/03/25 23:48:05 perev Exp $";
15 
16 int StMcVertexC::operator==(const StMcVertexC& v) const
17 {
18  return (geantProcess() == v.geantProcess() &&
19  position() == v.position() &&
20  tof() == v.tof() &&
21  key() == v.key()
22  ) ;
23 }
24 
Definition: tof.h:15