Main Page
Class Categories
Classes
Namespaces
File List
File Members
exper-sw
cosmosw
AugerSW
Offline
source
main
EventIO
Offline
TabulatedFunction_ROOT.cc
Go to the documentation of this file.
1
#include <io/TabulatedFunction_ROOT.h>
2
#include <utl/TabulatedFunction.h>
3
4
using namespace
io;
5
6
7
ClassImp(
TabulatedFunction_ROOT
)
8
9
10
TabulatedFunction_ROOT
::
TabulatedFunction_ROOT
(const utl::TabulatedFunction& f) :
11
fX(f.XBegin(), f.XEnd()),
12
fY(f.YBegin(), f.YEnd())
13
{ }
14
15
16
void
17
TabulatedFunction_ROOT::operator>>
(
utl::TabulatedFunction
& f)
18
const
19
{
20
f =
utl::TabulatedFunction
(
fX
,
fY
);
21
}
utl::TabulatedFunction
Class to hold collection (x,y) points and provide interpolation between them.
Definition:
TabulatedFunction.h:27
io::TabulatedFunction_ROOT
ROOT streamer implementation for class TabulatedFunction.
Definition:
TabulatedFunction_ROOT.h:25
io::TabulatedFunction_ROOT::operator>>
void operator>>(utl::TabulatedFunction &t) const
Definition:
TabulatedFunction_ROOT.cc:17
io::TabulatedFunction_ROOT::fY
std::vector< double > fY
Definition:
TabulatedFunction_ROOT.h:35
io::TabulatedFunction_ROOT::fX
std::vector< double > fX
Definition:
TabulatedFunction_ROOT.h:34
, generated on Tue Sep 26 2023.