CMS 3D CMS Logo

FSimVertex.cc
Go to the documentation of this file.
2 
4 FSimVertex::FSimVertex() : SimVertex(), mom_(0), id_(-1) {;}
5 
7 FSimVertex::FSimVertex(const XYZTLorentzVector& v, int im, int id, FBaseSimEvent* mom) :
8  // SimVertex(Hep3Vector(v.vect(),v.e(),im), mom_(mom), id_(id)
9  SimVertex(v.Vect(),v.T(),im,id), mom_(mom), id_(id),
10  position_(v) {;}
11 
12 std::ostream& operator <<(std::ostream& o , const FSimVertex& t) {
13  return o << t;
14 }
int id() const
the index in FBaseSimEvent
Definition: FSimVertex.h:44
math::XYZTLorentzVector position_
Definition: FSimVertex.h:63
SimVertex()
constructor
Definition: SimVertex.cc:3
const FBaseSimEvent * mom_
Definition: FSimVertex.h:59
std::ostream & operator<<(std::ostream &o, const FSimVertex &t)
Definition: FSimVertex.cc:12
math::XYZTLorentzVector XYZTLorentzVector
Definition: RawParticle.h:15
FSimVertex()
Default constructor.
Definition: FSimVertex.cc:4