/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimGeneral/GFlash/src/GflashTrajectoryPoint.cc
13 строк
456 B
Cms Build
Clang-Format
08 май 2019, 15:12
08 май 2019, 15:12
22aeb75
Код
Авторство
О чём код?
#include "SimGeneral/GFlash/interface/GflashTrajectoryPoint.h" GflashTrajectoryPoint::GflashTrajectoryPoint() : thePosition(0, 0, 0), theMomentum(0, 0, 0), thePathLength(0) { // default constructor } GflashTrajectoryPoint::GflashTrajectoryPoint(Gflash3Vector &position, Gflash3Vector &momentum, double pathLength) { thePosition = position; theMomentum = momentum; thePathLength = pathLength; } GflashTrajectoryPoint::~GflashTrajectoryPoint() {}