ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions.C
Go to the documentation of this file.
1 //script to test TRFunction
2 #include<TRInterface.h>
3 #include<TMath.h>
4 double funv(TVectorD v)
5 {
6  return v[0] * v[1];
7 }
8 
9 void funm(TMatrixD m)
10 {
11  m.Print();
12 }
13 
14 void funs(TString s)
15 {
16  std::cout << "hello " << s.Data() << std::endl;
17 }
18 
19 //this prototype dont work because argument should be
20 //an object to pass an array.
22 {
23  return x[0] * par[0];
24 }
25 
27 {
28  return x * 3;;
29 }
30 
31 
32 void Functions(TString type = "Import")
33 {
35  r.SetVerbose(kFALSE);
36  if (type == "Export") {
37  std::cout << "-----------------------" << std::endl;
38  std::cout << "Testing FunctionExport" << std::endl;
39  std::cout << "-----------------------" << std::endl;
40  r["funv"] << ROOT::R::TRFunctionExport(funv);
41  r << "print(funv(c(2,3)))";
42 
43  r["funm"] << ROOT::R::TRFunctionExport(funm);
44  r << "cat(funm(matrix(c(1,2,3,4),2,2)))";
45 
46  r["funs"] << ROOT::R::TRFunctionExport(funs);
47 
48  r << "cat(funs('ROOTR'))";
49 
50  r["DiLog"] << ROOT::R::TRFunctionExport(TMath::DiLog);
51  r << "print(DiLog(2))";
52 
53  r << "x <- seq(0,10,0.01)";
54  r << "y <- NULL ";
55  r << "for(i in seq(along=x)) { \
56  y <- c(y,DiLog(i)) \
57  }";
58 
59  ROOT::R::TRFunctionExport f4;
60  f4.SetFunction(fun4);
61  r["fun4"] << f4;
62  r << "print(fun4(1))";
63  } else {
64  std::cout << "-----------------------" << std::endl;
65  std::cout << "Testing FunctionImport " << std::endl;
66  std::cout << "-----------------------" << std::endl;
67  ROOT::R::TRFunctionImport print("print");
68  print("Hola");
69 
71  ROOT::R::TRFunctionImport require("require");
73  ROOT::R::TRFunctionImport devoff("dev.off");
74 //
76 // ROOT::R::TRFunctionImport options("options");
77  ROOT::R::TRFunctionImport x11("x11");
78  ROOT::R::TRFunctionImport read("read.csv");
79  ROOT::R::TRFunctionImport head("head");
80  ROOT::R::TRFunctionImport aslist("as.list");
81 
82  ROOT::R::TRFunctionImport options("options");
83  options(ROOT::R::Label["device"]="x11");
84 
85 
86  r<<"test <- function() x11";
87  ROOT::R::TRFunctionImport test("test");
88 
89 
90  ROOT::R::TRFunctionImport dev=test();
91 
92 // dev();
93 
94 
95  options("device='x11'");
96 //
97  ROOT::R::TRObject vector=c(1,2,3,4);
98  TVectorF v=vector;
99  TVectorF v2=c(11,22,33,44);
100  print(v);
101  print(v2);
102  ROOT::R::TRDataFrame obj=read("training.csv");
103 
104 // ROOT::R::TRDataFrame df(obj.As<ROOT::R::TRDataFrame>());
105  print(head(Rcpp::wrap(obj)));
106  print(head(obj));
107  x11();
108  plot(sin,0,6,ROOT::R::Label["type"]="s");
109  x11();
110  plot(sin,0,6,ROOT::R::Label["type"]="l");
111  x11();
112  plot(sin,0,6,ROOT::R::Label["type"]="p");
113 
114 
115 
116 // devoff();
117 // print(vector);
118 
119 // require("C50");
120  }
121 }
double par[1]
Definition: unuranDistr.cxx:38
double read(const std::string &file_name)
reading
void f4()
Definition: na49.C:60
return c
Basic string class.
Definition: TString.h:137
const Bool_t kFALSE
Definition: Rtypes.h:92
double funv(TVectorD v)
Definition: Functions.C:4
const char * Data() const
Definition: TString.h:349
void plot(TString fname="data.root", TString var0="var0", TString var1="var1")
Definition: createData.C:17
Double_t x[n]
Definition: legend1.C:17
Double_t fun3(Double_t *x, Double_t *par)
Definition: Functions.C:21
void funm(TMatrixD m)
Definition: Functions.C:9
void SetFunction(T fun)
function to assign function to export, template method that supports a lot of function's prototypes ...
double sin(double)
SEXP wrap(const TString &s)
Definition: RExports.h:81
Double_t DiLog(Double_t x)
The DiLogarithm function Code translated by R.Brun from CERNLIB DILOG function C332.
Definition: TMath.cxx:113
void Print(Option_t *name="") const
Print the matrix as a table of elements.
This is a class to get ROOT's objects from R's objects
Definition: TRObject.h:73
ROOT::R::TRInterface & r
Definition: Object.C:4
This is a class to pass functions from ROOT to R.
SVector< double, 2 > v
Definition: Dict.h:5
Double_t fun4(Double_t x)
Definition: Functions.C:26
TMarker * m
Definition: textangle.C:8
void funs(TString s)
Definition: Functions.C:14
double Double_t
Definition: RtypesCore.h:55
void SetVerbose(Bool_t status)
Method to set verbose mode, that produce extra output.
int type
Definition: TGX11.cxx:120
static TRInterface & Instance()
static method to get an TRInterface instance reference
void Functions(TString type="Import")
Definition: Functions.C:32
Rcpp::internal::NamedPlaceHolder Label
Definition: RExports.cxx:14
TObject * obj
This is a class to pass functions from ROOT to R
This is a class to create DataFrames from ROOT to R
Definition: TRDataFrame.h:183