Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:36

0001 #include "SimGeneral/GFlash/interface/GflashTrajectoryPoint.h"
0002 
0003 GflashTrajectoryPoint::GflashTrajectoryPoint() : thePosition(0, 0, 0), theMomentum(0, 0, 0), thePathLength(0) {
0004   // default constructor
0005 }
0006 
0007 GflashTrajectoryPoint::GflashTrajectoryPoint(Gflash3Vector &position, Gflash3Vector &momentum, double pathLength) {
0008   thePosition = position;
0009   theMomentum = momentum;
0010   thePathLength = pathLength;
0011 }
0012 
0013 GflashTrajectoryPoint::~GflashTrajectoryPoint() {}