Something went wrong on our end
-
Bertram Kopf authored9a41c0de
TMatrixNonRel.hh 974 B
// 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:
};
//_____________________________________________________________________________