#include "hsplinepar.h"
#include <iostream>
ClassImp(HSplinePar)
using namespace std;
HSplinePar::HSplinePar()
{
for(Int_t i=0; i<52; i++)
{
xPoints[i]=-1000.;
yPoints[i]=-1000.;
zPoints[i]=-1000.;
}
}
HSplinePar::~HSplinePar()
{
;
}
void HSplinePar::init(Int_t N, Int_t NN)
{
;
}
void HSplinePar::clear()
{
;
}
void HSplinePar::remove(Double_t *pD)
{
delete [] pD; pD=0;
}
void HSplinePar::remove(Float_t *pF)
{
delete [] pF; pF=0;
}
void HSplinePar::setSplinePoints(Float_t *x, Float_t *y, Float_t *z)
{
for(Int_t i=0; i<52; i++)
{
xPoints[i]=x[i];
yPoints[i]=y[i];
zPoints[i]=z[i];
}
}
void HSplinePar::getSplinePoints(Float_t *x, Float_t *y, Float_t *z)
{
for(Int_t i=0; i<52; i++)
{
x[i]=xPoints[i];
y[i]=yPoints[i];
z[i]=zPoints[i];
}
}
Last change: Sat May 22 13:14:28 2010
Last generated: 2010-05-22 13:14
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.