#ifndef CBMRUTHERFORDPOINT_H #define CBMRUTHERFORDPOINT_H 1 #include "FairMCPoint.h" #include "TObject.h" #include "TVector3.h" class CbmRutherfordPoint : public FairMCPoint { public: /** Default constructor **/ CbmRutherfordPoint(); /** Constructor with arguments *@param trackID Index of MCTrack *@param detID Detector ID *@param pos Ccoordinates at entrance to active volume [cm] *@param mom Momentum of track at entrance [GeV] *@param tof Time since event start [ns] *@param length Track length since creation [cm] *@param eLoss Energy deposit [GeV] **/ CbmRutherfordPoint(Int_t trackID, Int_t detID, TVector3 pos, TVector3 mom, Double_t tof, Double_t length, Double_t eLoss); /** Destructor **/ virtual ~CbmRutherfordPoint(); /** Output to screen **/ virtual void Print(const Option_t* opt) const; private: /** Copy constructor **/ CbmRutherfordPoint(const CbmRutherfordPoint& point); CbmRutherfordPoint operator=(const CbmRutherfordPoint& point); ClassDef(CbmRutherfordPoint,1) }; #endif