//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Implementation of class TpcZSFit // see TpcZSFit.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 "TpcZSFit.h" // C/C++ Headers ---------------------- // Collaborating Class Headers -------- // Class Member definitions ----------- TpcZSFit::TpcZSFit() : GFAbsTrackRep(2) { fCov[0][0]=10; fCov[1][1]=10; } GFAbsTrackRep* TpcZSFit::clone()const { return new TpcZSFit(*this); } GFAbsTrackRep* TpcZSFit::prototype()const { return new TpcZSFit(); } double TpcZSFit::extrapolate(const GFDetPlane& plane, TMatrixT& statePred) { statePred=fState; return 0; } double TpcZSFit::extrapolate(const GFDetPlane& plane, TMatrixT& statePred, TMatrixT& covPred) { statePred=fState; covPred=fCov; return 0; } TVector3 TpcZSFit::getPos(const GFDetPlane& pl) { throw; } TVector3 TpcZSFit::getMom(const GFDetPlane& pl) { throw; } void TpcZSFit::setReferencePlane(const GFDetPlane& pl) { //fRefPlane=pl; }