File indexing completed on 2023-03-17 11:00:45
0001 #include "FastSimulation/Event/interface/FSimVertex.h"
0002
0003
0004 FSimVertex::FSimVertex() : SimVertex(), mom_(nullptr), id_(-1) { ; }
0005
0006
0007 FSimVertex::FSimVertex(const XYZTLorentzVector& v, int im, int id, FBaseSimEvent* mom)
0008 :
0009 SimVertex(v.Vect(), v.T(), im, id),
0010 mom_(mom),
0011 id_(id),
0012 position_(v) {
0013 ;
0014 }
0015
0016 std::ostream& operator<<(std::ostream& o, const FSimVertex& t) { return o << static_cast<SimVertex const&>(t); }