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
TRObject.cxx
Go to the documentation of this file.
1
/*************************************************************************
2
* Copyright (C) 2013-2014, 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<
TRObject.h
>
9
#include<vector>
10
11
using namespace
ROOT::R
;
12
ClassImp
(
TRObject
)
13
14
//______________________________________________________________________________
15
TRObject
::
TRObject
(SEXP robj):
TObject
(),
fObj
(robj), fStatus(
kTRUE
) { }
16
17
18
//______________________________________________________________________________
19
void
TRObject::operator=
(SEXP robj)
20
{
21
fStatus
=
kTRUE
;
22
fObj
= robj;
23
}
24
25
//______________________________________________________________________________
26
TRObject::TRObject
(SEXP robj,
Bool_t
status
):
fObj
(robj), fStatus(status) {}
fObj
void * fObj
Definition:
TInspectCanvas.cxx:48
status
TAlienJobStatus * status
Definition:
TAlienJob.cxx:51
Bool_t
bool Bool_t
Definition:
RtypesCore.h:59
ROOT::R::TRObject::operator=
void operator=(SEXP xx)
Definition:
TRObject.cxx:19
ROOT::R::TRObject::fObj
Rcpp::RObject fObj
Definition:
TRObject.h:76
ROOT::R
namespace associated R package for ROOT.
Definition:
RExports.h:70
ClassImp
ClassImp(TRObject) TRObject
Definition:
TRObject.cxx:12
ROOT::R::TRObject
This is a class to get ROOT's objects from R's objects
Definition:
TRObject.h:73
ROOT::R::TRObject::TRObject
TRObject()
Default constructor.
Definition:
TRObject.h:82
ROOT::R::TRObject::fStatus
Bool_t fStatus
Definition:
TRObject.h:77
TObject
Mother of all ROOT objects.
Definition:
TObject.h:58
kTRUE
const Bool_t kTRUE
Definition:
Rtypes.h:91
TRObject.h