// TMatrixNonRel class definition file. -*- C++ -*- // Copyright 2010 Bertram Kopf #pragma once //_____________________________________________________________________________ // @file TMatrixNonRel.h //_____________________________________________________________________________ #include "qft++/matrix/Matrix.hh" #include "PwaDynamics/TMatrixBase.hh" #include <iostream> #include <vector> #include <boost/shared_ptr.hpp> class KMatrixBase; class KMatrixNonRel; using namespace std; //_____________________________________________________________________________ //_____________________________________________________________________________ class TMatrixNonRel : public TMatrixBase { public: /// Constructor TMatrixNonRel(boost::shared_ptr<KMatrixNonRel> Kmatrix); /// Destructor virtual ~TMatrixNonRel(); virtual void evalMatrix(const double mass); protected: }; //_____________________________________________________________________________