32 lines
902 B
C++
32 lines
902 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4BSplineCurveWithKnots.hh,v 1.3 2000/08/28 08:57:42 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
// Class G4BSplineCurveWithKnots
|
|
//
|
|
// Class description:
|
|
//
|
|
// Definition of a generic BSpline curve with knots.
|
|
// *** NOT implemented yet ***
|
|
|
|
// Authors: J.Sulkimo, P.Urban.
|
|
// Revisions by: L.Broglia, G.Cosmo.
|
|
// ----------------------------------------------------------------------
|
|
#ifndef __B_SPLINECURVEWITHKNOTS_H
|
|
#define __B_SPLINECURVEWITHKNOTS_H
|
|
|
|
#include "G4BSplineCurve.hh"
|
|
|
|
class G4BSplineCurveWithKnots : public G4BSplineCurve
|
|
{
|
|
};
|
|
|
|
#endif
|