ROOT logo
#ifndef HSPLINEPAR_H
#define HSPLINEPAR_H
#include "TObject.h"
#include <iostream>
class HSplinePar:public TObject
{
 private:
  // HGeomVector segpoints[4]; //may be for future
  Float_t xPoints[52];         //x coordinate of the points used in spline
  Float_t yPoints[52];         //y coordinate of the points used in spline
  Float_t zPoints[52];        
  //Double_t *XZ, *XZP; //may be fo future     
  //Double_t *YZ, *YZP; //may be for future         
 public:
  HSplinePar();
  //HSplinePar(Int_t, Int_t);
  virtual ~HSplinePar();
  void init(Int_t, Int_t);
  void clear();

  void remove(Double_t *);
  void remove(Float_t *);
  void setSplinePoints(Float_t *, Float_t *, Float_t *);
  void getSplinePoints(Float_t *, Float_t *, Float_t *);

  ClassDef(HSplinePar,1)
};
#endif
 hsplinepar.h:1
 hsplinepar.h:2
 hsplinepar.h:3
 hsplinepar.h:4
 hsplinepar.h:5
 hsplinepar.h:6
 hsplinepar.h:7
 hsplinepar.h:8
 hsplinepar.h:9
 hsplinepar.h:10
 hsplinepar.h:11
 hsplinepar.h:12
 hsplinepar.h:13
 hsplinepar.h:14
 hsplinepar.h:15
 hsplinepar.h:16
 hsplinepar.h:17
 hsplinepar.h:18
 hsplinepar.h:19
 hsplinepar.h:20
 hsplinepar.h:21
 hsplinepar.h:22
 hsplinepar.h:23
 hsplinepar.h:24
 hsplinepar.h:25
 hsplinepar.h:26
 hsplinepar.h:27
 hsplinepar.h:28