CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/FastSimulation/Event/src/FSimVertex.cc

Go to the documentation of this file.
00001 #include "FastSimulation/Event/interface/FSimVertex.h"
00002 
00004 FSimVertex::FSimVertex() : SimVertex(), mom_(0), id_(-1) {;}
00005   
00007 FSimVertex::FSimVertex(const XYZTLorentzVector& v, int im, int id, FBaseSimEvent* mom) : 
00008   //    SimVertex(Hep3Vector(v.vect(),v.e(),im), mom_(mom), id_(id) 
00009   SimVertex(v.Vect(),v.T(),im,id), mom_(mom), id_(id),
00010   position_(v) {;}
00011 
00012 std::ostream& operator <<(std::ostream& o , const FSimVertex& t) {
00013   return o << t;
00014 }