Revision f538f01b481a4fc1ec0567e1345c6ac297e11024 authored by Rene Brun on 18 March 2004, 13:52:05 UTC, committed by Rene Brun on 18 March 2004, 13:52:05 UTC
Double_t TGraph::Eval(Double_t x, TSpline *spline, Option_t *option) const
{
// Interpolate points in this graph at x using a TSpline
//  -if spline==0 and option="" a linear interpolation between the two points
//   close to x is computed. If x is outside the graph range, a linear
//   extrapolation is computed.
//  -if spline==0 and option="S" a TSpline3 object is created using this graph
//   and the interpolated value from the spline is returned.
//   the internally created spline is deleted on return.
//  -if spline is specified, it is used to return the interpolated value.


git-svn-id: http://root.cern.ch/svn/root/trunk@8431 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 3cfc83a
Raw File
LinkDef.h
/* @(#)root/gedold:$Name:  $:$Id: LinkDef.h,v 1.0 2003/11/26 11:33:48 

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifdef __CINT__

#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;

#pragma link C++ class TPadEditorOld+;

#endif
back to top