00001 #include "SimDataFormats/Vertex/interface/SimVertex.h" 00002 00003 SimVertex::SimVertex() {} 00004 00005 SimVertex::SimVertex(const math::XYZVectorD& v, float tof) : 00006 Core(v,tof), itrack(-1) {} 00007 00008 SimVertex::SimVertex(const math::XYZVectorD& v, float tof, int it) : 00009 Core(v,tof), itrack(it) {} 00010 00011 SimVertex::SimVertex(const CoreSimVertex & v, int it) : 00012 Core(v), itrack(it) {} 00013 00014 std::ostream & operator <<(std::ostream & o , const SimVertex & v) 00015 { return o << (SimVertex::Core)(v) << ", " << v.parentIndex(); }