00001 #include "SimGeneral/GFlash/interface/GflashTrajectoryPoint.h" 00002 00003 00004 GflashTrajectoryPoint::GflashTrajectoryPoint() 00005 : thePosition(0,0,0), theMomentum(0,0,0), thePathLength(0) 00006 { 00007 //default constructor 00008 } 00009 00010 GflashTrajectoryPoint::GflashTrajectoryPoint(Gflash3Vector& position, Gflash3Vector& momentum, 00011 double pathLength) 00012 { 00013 thePosition = position; 00014 theMomentum = momentum; 00015 thePathLength = pathLength; 00016 } 00017 00018 GflashTrajectoryPoint::~GflashTrajectoryPoint() 00019 { 00020 }