ROOT
6.06/09
Reference Guide
ROOT Home Page
Main Page
Related Pages
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
bindings
r
src
TRFunctionExport.cxx
Go to the documentation of this file.
1
/*************************************************************************
2
* Copyright (C) 2013-2015, Omar Andres Zapata Mesa *
3
* All rights reserved. *
4
* *
5
* For the licensing terms see $ROOTSYS/LICENSE. *
6
* For the list of contributors see $ROOTSYS/README/CREDITS. *
7
*************************************************************************/
8
#include<
TRFunctionExport.h
>
9
10
using namespace
ROOT::R
;
11
ClassImp
(
TRFunctionExport
)
12
13
14
//______________________________________________________________________________
15
TRFunctionExport
::
TRFunctionExport
():
TObject
()
16
{
17
f
=
NULL
;
18
}
19
20
//______________________________________________________________________________
21
TRFunctionExport::TRFunctionExport
(
const
TRFunctionExport
&fun):
TObject
(fun)
22
{
23
f
= fun.
f
;
24
}
25
ROOT::R::TRFunctionExport::f
TRInternalFunction * f
Definition:
TRFunctionExport.h:147
ClassImp
ClassImp(TRFunctionExport) TRFunctionExport
Definition:
TRFunctionExport.cxx:11
TRFunctionExport.h
ROOT::R
namespace associated R package for ROOT.
Definition:
RExports.h:70
f
double f(double x)
Definition:
testIntegration.cxx:12
TObject
Mother of all ROOT objects.
Definition:
TObject.h:58
ROOT::R::TRFunctionExport::TRFunctionExport
TRFunctionExport()
Default TRFunctionExport constructor.
NULL
#define NULL
Definition:
Rtypes.h:82
ROOT::R::TRFunctionExport
This is a class to pass functions from ROOT to R
Definition:
TRFunctionExport.h:143