Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TSpline1.h
Go to the documentation of this file.
1// @(#)root/tmva $Id$
2// Author: Andreas Hoecker, Joerg Stelzer, Helge Voss, Kai Voss
3
4/**********************************************************************************
5 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6 * Package: TMVA *
7 * Class : TSpline1 *
8 * *
9 * *
10 * Description: *
11 * Linear interpolation class; derivative of TSpline *
12 * *
13 * Authors (alphabetical): *
14 * Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
15 * Helge Voss <Helge.Voss@cern.ch> - MPI-K Heidelberg, Germany *
16 * Kai Voss <Kai.Voss@cern.ch> - U. of Victoria, Canada *
17 * *
18 * Copyright (c) 2005: *
19 * CERN, Switzerland *
20 * U. of Victoria, Canada *
21 * MPI-K Heidelberg, Germany *
22 * *
23 * Redistribution and use in source and binary forms, with or without *
24 * modification, are permitted according to the terms listed in LICENSE *
25 * (see tmva/doc/LICENSE) *
26 **********************************************************************************/
27
28#ifndef ROOT_TMVA_TSpline1
29#define ROOT_TMVA_TSpline1
30
31//////////////////////////////////////////////////////////////////////////
32// //
33// TSpline1 //
34// //
35// Linear interpolation class //
36// //
37//////////////////////////////////////////////////////////////////////////
38
39#include "TSpline.h"
40
41namespace TMVA {
42
43 class TSpline1 : public TSpline {
44
45 public:
46 TSpline1(const TString &title, const TGraph *theGraph);
47 virtual ~TSpline1( void );
48
49 virtual Double_t Eval( Double_t x ) const;
50
51 // dummy implementations
52 virtual void BuildCoeff( void );
53 virtual void GetKnot( Int_t i, Double_t& x, Double_t& y ) const;
54
55 private:
56 std::vector<Double_t> fX;
57 std::vector<Double_t> fY;
58
59 ClassDef(TSpline1,0); //Linear interpolation class
60 };
61
62} // namespace TMVA
63
64#endif
65
66
#define ClassDef(name, id)
Definition Rtypes.h:337
A TGraph is an object made of two arrays X and Y with npoints each.
Definition TGraph.h:41
Linear interpolation of TGraph.
Definition TSpline1.h:43
std::vector< Double_t > fY
Definition TSpline1.h:57
virtual void GetKnot(Int_t i, Double_t &x, Double_t &y) const
no knots
Definition TSpline1.cxx:89
virtual ~TSpline1(void)
destructor
Definition TSpline1.cxx:54
virtual void BuildCoeff(void)
no coefficients to precompute
Definition TSpline1.cxx:82
std::vector< Double_t > fX
Definition TSpline1.h:56
virtual Double_t Eval(Double_t x) const
returns linearly interpolated TGraph entry around x
Definition TSpline1.cxx:59
Base class for spline implementation containing the Draw/Paint methods.
Definition TSpline.h:31
Basic string class.
Definition TString.h:139
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
create variable transformations