//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Implementation of class TpcPoint // see TpcPoint.hh for details // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- // Panda Headers ---------------------- // This Class' Header ------------------ #include "TpcPoint.h" #include "PndDetectorList.h" // C/C++ Headers ---------------------- #include // Collaborating Class Headers -------- // Class Member definitions ----------- TpcPoint::TpcPoint() : FairMCPoint(), fSecID(0) {} TpcPoint::TpcPoint(Int_t trackID, Int_t detID, TVector3 pos, TVector3 mom, Double_t tof, Double_t length, Double_t eLoss, Int_t SecID) : FairMCPoint(trackID, detID, const_cast(pos), const_cast(mom), tof, length, eLoss), fSecID(SecID) { ;//SetLink(FairLink("MCTrack", trackID)); } void TpcPoint::Print(const Option_t*) const { std::cout<<"TpcPoint\n" <<" Pos("<