Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
f91c4d10
Commit
f91c4d10
authored
6 years ago
by
Enrico Guiraud
Browse files
Options
Downloads
Patches
Plain Diff
[DF] Move RNodeBase to its on header file
parent
9df88149
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tree/dataframe/inc/ROOT/RDFNodes.hxx
+2
-33
2 additions, 33 deletions
tree/dataframe/inc/ROOT/RDFNodes.hxx
tree/dataframe/inc/ROOT/RNodeBase.hxx
+68
-0
68 additions, 0 deletions
tree/dataframe/inc/ROOT/RNodeBase.hxx
with
70 additions
and
33 deletions
tree/dataframe/inc/ROOT/RDFNodes.hxx
+
2
−
33
View file @
f91c4d10
...
...
@@ -13,6 +13,7 @@
#include
"ROOT/RCutFlowReport.hxx"
#include
"ROOT/RDataSource.hxx"
#include
"ROOT/RNodeBase.hxx"
#include
"ROOT/RDFNodesUtils.hxx"
#include
"ROOT/RDFBookedCustomColumns.hxx"
#include
"ROOT/RDFUtils.hxx"
...
...
@@ -46,6 +47,7 @@ class RResultPtr;
namespace
Internal
{
namespace
RDF
{
// forward declarations for RLoopManager
class
RActionBase
;
class
GraphCreatorHelper
;
}
// ns RDF
...
...
@@ -53,8 +55,6 @@ class GraphCreatorHelper;
namespace
Detail
{
namespace
RDF
{
class
RCustomColumnBase
;
using
namespace
ROOT
::
TypeTraits
;
namespace
RDFInternal
=
ROOT
::
Internal
::
RDF
;
...
...
@@ -63,37 +63,6 @@ class RCustomColumnBase;
class
RFilterBase
;
class
RRangeBase
;
class
RLoopManager
;
/// Base class for non-leaf nodes of the computational graph.
/// It only exposes the bare minimum interface required to work as a generic part of the computation graph.
/// RDataFrames and results of transformations can be cast to this type via ROOT::RDF::ToCommonNodeType.
class
RNodeBase
{
protected:
RLoopManager
*
fLoopManager
;
unsigned
int
fNChildren
{
0
};
///< Number of nodes of the functional graph hanging from this object
unsigned
int
fNStopsReceived
{
0
};
///< Number of times that a children node signaled to stop processing entries.
public
:
RNodeBase
(
RLoopManager
*
lm
=
nullptr
)
:
fLoopManager
(
lm
)
{}
virtual
~
RNodeBase
()
{}
virtual
bool
CheckFilters
(
unsigned
int
,
Long64_t
)
=
0
;
virtual
void
Report
(
ROOT
::
RDF
::
RCutFlowReport
&
)
const
=
0
;
virtual
void
PartialReport
(
ROOT
::
RDF
::
RCutFlowReport
&
)
const
=
0
;
virtual
void
IncrChildrenCount
()
=
0
;
virtual
void
StopProcessing
()
=
0
;
virtual
void
AddFilterName
(
std
::
vector
<
std
::
string
>
&
filters
)
=
0
;
virtual
std
::
shared_ptr
<
ROOT
::
Internal
::
RDF
::
GraphDrawing
::
GraphNode
>
GetGraph
()
=
0
;
virtual
void
ResetChildrenCount
()
{
fNChildren
=
0
;
fNStopsReceived
=
0
;
}
virtual
RLoopManager
*
GetLoopManagerUnchecked
()
{
return
fLoopManager
;
}
};
class
RLoopManager
:
public
RNodeBase
{
friend
class
ROOT
::
Internal
::
RDF
::
GraphDrawing
::
GraphCreatorHelper
;
using
RDataSource
=
ROOT
::
RDF
::
RDataSource
;
...
...
This diff is collapsed.
Click to expand it.
tree/dataframe/inc/ROOT/RNodeBase.hxx
0 → 100644
+
68
−
0
View file @
f91c4d10
// Author: Enrico Guiraud, Danilo Piparo CERN 09/2018
/*************************************************************************
* Copyright (C) 1995-2016, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_RDFNODEBASE
#define ROOT_RDFNODEBASE
#include
<memory>
#include
<string>
#include
<vector>
namespace
ROOT
{
namespace
RDF
{
class
RCutFlowReport
;
}
namespace
Internal
{
namespace
RDF
{
namespace
GraphDrawing
{
class
GraphNode
;
}
}
}
namespace
Detail
{
namespace
RDF
{
class
RLoopManager
;
/// Base class for non-leaf nodes of the computational graph.
/// It only exposes the bare minimum interface required to work as a generic part of the computation graph.
/// RDataFrames and results of transformations can be cast to this type via ROOT::RDF::ToCommonNodeType.
class
RNodeBase
{
protected:
RLoopManager
*
fLoopManager
;
unsigned
int
fNChildren
{
0
};
///< Number of nodes of the functional graph hanging from this object
unsigned
int
fNStopsReceived
{
0
};
///< Number of times that a children node signaled to stop processing entries.
public
:
RNodeBase
(
RLoopManager
*
lm
=
nullptr
)
:
fLoopManager
(
lm
)
{}
virtual
~
RNodeBase
()
{}
virtual
bool
CheckFilters
(
unsigned
int
,
Long64_t
)
=
0
;
virtual
void
Report
(
ROOT
::
RDF
::
RCutFlowReport
&
)
const
=
0
;
virtual
void
PartialReport
(
ROOT
::
RDF
::
RCutFlowReport
&
)
const
=
0
;
virtual
void
IncrChildrenCount
()
=
0
;
virtual
void
StopProcessing
()
=
0
;
virtual
void
AddFilterName
(
std
::
vector
<
std
::
string
>
&
filters
)
=
0
;
virtual
std
::
shared_ptr
<
ROOT
::
Internal
::
RDF
::
GraphDrawing
::
GraphNode
>
GetGraph
()
=
0
;
virtual
void
ResetChildrenCount
()
{
fNChildren
=
0
;
fNStopsReceived
=
0
;
}
virtual
RLoopManager
*
GetLoopManagerUnchecked
()
{
return
fLoopManager
;
}
};
}
// ns RDF
}
// ns Detail
}
// ns ROOT
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment