11#ifndef ROOT_RVARIEDACTION
12#define ROOT_RVARIEDACTION
39template <
typename Helper,
typename PrevNode,
typename ColumnTypes_t>
41 using TypeInd_t = std::make_index_sequence<ColumnTypes_t::list_size>;
51 std::vector<std::vector<std::array<RColumnReaderBase *, ColumnTypes_t::list_size>>>
fInputValues;
54 std::array<bool, ColumnTypes_t::list_size>
fIsDefine;
61 std::vector<std::shared_ptr<PrevNodeType>>
MakePrevFilters(std::shared_ptr<PrevNode> nominal)
const
63 const auto &variations = GetVariations();
64 std::vector<std::shared_ptr<PrevNodeType>> prevFilters;
65 prevFilters.reserve(variations.size());
66 if (
static_cast<RNodeBase *
>(nominal.get()) == fLoopManager) {
68 prevFilters.resize(variations.size(), nominal);
71 const auto &prevVariations = nominal->GetVariations();
72 for (
const auto &variation : variations) {
74 prevFilters.emplace_back(std::static_pointer_cast<PrevNodeType>(nominal->GetVariedFilter(variation)));
76 prevFilters.emplace_back(nominal);
87 const auto &colRegister = GetColRegister();
88 const auto &columnNames = GetColumnNames();
90 fLoopManager->Register(
this);
92 for (
auto i = 0u; i < columnNames.size(); ++i) {
93 auto *define = colRegister.GetDefine(columnNames[i]);
94 fIsDefine[i] = define !=
nullptr;
96 define->MakeVariations(GetVariations());
102 const std::vector<std::shared_ptr<PrevNodeType>> &prevNodes,
const RColumnRegister &colRegister)
103 :
RActionBase(prevNodes[0]->GetLoopManagerUnchecked(), columns, colRegister, prevNodes[0]->GetVariations()),
104 fHelpers(std::move(helpers)),
105 fPrevNodes(prevNodes),
114 :
RActionBase(prevNode->GetLoopManagerUnchecked(), columns, colRegister, prevNode->GetVariations()),
115 fHelpers(std::move(helpers)),
116 fPrevNodes(MakePrevFilters(prevNode)),
129 std::for_each(fHelpers.begin(), fHelpers.end(), [](Helper &
h) { h.Initialize(); });
134 RColumnReadersInfo info{GetColumnNames(), GetColRegister(), fIsDefine.data(), *fLoopManager};
137 for (
const auto &variation : GetVariations())
138 fInputValues[slot].emplace_back(
GetColumnReaders(slot,
r, ColumnTypes_t{}, info, variation));
140 std::for_each(fHelpers.begin(), fHelpers.end(), [=](Helper &
h) { h.InitTask(r, slot); });
143 template <
typename ColType>
146 if (
auto *val = fInputValues[slot][varIdx][readerIdx]->
template TryGet<ColType>(entry))
149 throw std::out_of_range{
"RDataFrame: Varied action (" + fHelpers[0].GetActionName() +
150 ") could not retrieve value for column '" + fColumnNames[readerIdx] +
"' for entry " +
151 std::to_string(entry) +
152 ". You can use the DefaultValueFor operation to provide a default value, or "
153 "FilterAvailable/FilterMissing to discard/keep entries with missing values instead."};
156 template <
typename... ColTypes, std::size_t... ReaderIdxs>
158 std::index_sequence<ReaderIdxs...>)
160 fHelpers[varIdx].Exec(slot, GetValueChecked<ColTypes>(slot, varIdx, ReaderIdxs, entry)...);
166 for (
auto varIdx = 0u; varIdx < GetVariations().size(); ++varIdx) {
167 if (fPrevNodes[varIdx]->CheckFilters(slot, entry))
168 CallExec(slot, varIdx, entry, ColumnTypes_t{},
TypeInd_t{});
174 std::for_each(fPrevNodes.begin(), fPrevNodes.end(), [](
auto &
f) { f->IncrChildrenCount(); });
180 fInputValues[slot].clear();
181 std::for_each(fHelpers.begin(), fHelpers.end(), [=](Helper &
h) { h.CallFinalizeTask(slot); });
188 std::for_each(fHelpers.begin(), fHelpers.end(), [](Helper &
h) { h.Finalize(); });
193 void *
PartialUpdate(
unsigned int slot)
final {
return PartialUpdateImpl(slot); }
198 if (fHelpers[0].GetSampleCallback()) {
199 std::vector<ROOT::RDF::SampleCallback_t> callbacks;
200 for (
auto &
h : fHelpers)
201 callbacks.push_back(
h.GetSampleCallback());
203 auto callEachCallback = [cs = std::move(callbacks)](
unsigned int slot,
const RSampleInfo &info) {
208 return callEachCallback;
214 std::shared_ptr<RDFGraphDrawing::GraphNode>
215 GetGraph(std::unordered_map<
void *, std::shared_ptr<RDFGraphDrawing::GraphNode>> &visitedMap)
final
217 auto prevNode = fPrevNodes[0]->GetGraph(visitedMap);
218 const auto &prevColumns = prevNode->GetDefinedColumns();
221 const auto nodeType = HasRun() ? RDFGraphDrawing::ENodeType::kUsedAction : RDFGraphDrawing::ENodeType::kAction;
222 auto thisNode = std::make_shared<RDFGraphDrawing::GraphNode>(
"Varied " + fHelpers[0].GetActionName(),
223 visitedMap.size(), nodeType);
224 visitedMap[(
void *)
this] = thisNode;
226 auto upmostNode = AddDefinesToGraph(thisNode, GetColRegister(), prevColumns, visitedMap);
228 thisNode->AddDefinedColumns(GetColRegister().GenerateColumnNames());
229 upmostNode->SetPrevNode(prevNode);
239 std::vector<std::string> keys{GetVariations()};
241 std::vector<std::unique_ptr<RDFDetail::RMergeableValueBase>> values;
242 values.reserve(fHelpers.size());
243 for (
auto &&
h : fHelpers)
244 values.emplace_back(
h.GetMergeableValue());
246 return std::make_unique<RDFDetail::RMergeableVariationsBase>(std::move(keys), std::move(values));
251 throw std::logic_error(
"Cannot produce a varied action from a varied action.");
254 std::unique_ptr<RActionBase>
CloneAction(
void *typeErasedResults)
final
256 const auto &vectorOfTypeErasedResults = *
reinterpret_cast<const std::vector<void *> *
>(typeErasedResults);
257 assert(vectorOfTypeErasedResults.size() == fHelpers.size() &&
258 "The number of results and the number of helpers are not the same!");
260 std::vector<Helper> clonedHelpers;
261 clonedHelpers.reserve(fHelpers.size());
262 for (std::size_t i = 0; i < fHelpers.size(); i++) {
263 clonedHelpers.emplace_back(fHelpers[i].CallMakeNew(vectorOfTypeErasedResults[i]));
266 return std::unique_ptr<RVariedAction>(
267 new RVariedAction(std::move(clonedHelpers), GetColumnNames(), fPrevNodes, GetColRegister()));
273 template <
typename H = Helper>
274 auto PartialUpdateImpl(
unsigned int slot) ->
decltype(std::declval<H>().PartialUpdate(slot), (
void *)(
nullptr))
276 return &fHelpers[0].PartialUpdate(slot);
280 void *
PartialUpdateImpl(...) {
throw std::runtime_error(
"This action does not support callbacks!"); }
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Base class for non-leaf nodes of the computational graph.
A binder for user-defined columns, variations and aliases.
Just like an RAction, but it has N action helpers and N previous nodes (N is the number of variations...
void Finalize() final
Clean-up and finalize the action result (e.g.
auto GetValueChecked(unsigned int slot, unsigned int varIdx, std::size_t readerIdx, Long64_t entry) -> ColType &
void Run(unsigned int slot, Long64_t entry) final
std::vector< std::shared_ptr< PrevNodeType > > fPrevNodes
Owning pointers to upstream nodes for each systematic variation.
std::unique_ptr< RMergeableValueBase > GetMergeableValue() const final
Retrieve a container holding the names and values of the variations.
RVariedAction(std::vector< Helper > &&helpers, const ColumnNames_t &columns, std::shared_ptr< PrevNode > prevNode, const RColumnRegister &colRegister)
auto PartialUpdateImpl(unsigned int slot) -> decltype(std::declval< H >().PartialUpdate(slot),(void *)(nullptr))
std::unique_ptr< RActionBase > CloneAction(void *typeErasedResults) final
ROOT::RDF::SampleCallback_t GetSampleCallback() final
Return a callback that in turn runs the callbacks of each variation's helper.
void FinalizeSlot(unsigned int slot) final
Clean-up operations to be performed at the end of a task.
std::vector< std::shared_ptr< PrevNodeType > > MakePrevFilters(std::shared_ptr< PrevNode > nominal) const
Creates new filter nodes, one per variation, from the upstream nominal one.
std::make_index_sequence< ColumnTypes_t::list_size > TypeInd_t
std::vector< std::vector< std::array< RColumnReaderBase *, ColumnTypes_t::list_size > > > fInputValues
Column readers per slot (outer dimension), per variation and per input column (inner dimension,...
std::vector< Helper > fHelpers
Action helpers per variation.
void * PartialUpdateImpl(...)
RVariedAction & operator=(const RVariedAction &)=delete
void InitSlot(TTreeReader *r, unsigned int slot) final
std::conditional_t< std::is_same< PrevNode, RJittedFilter >::value, RFilterBase, PrevNode > PrevNodeType
std::shared_ptr< RDFGraphDrawing::GraphNode > GetGraph(std::unordered_map< void *, std::shared_ptr< RDFGraphDrawing::GraphNode > > &visitedMap) final
std::array< bool, ColumnTypes_t::list_size > fIsDefine
The nth flag signals whether the nth input column is a custom column or not.
void * PartialUpdate(unsigned int slot) final
Return the partially-updated value connected to the first variation.
std::unique_ptr< RActionBase > MakeVariedAction(std::vector< void * > &&) final
RVariedAction(const RVariedAction &)=delete
void CallExec(unsigned int slot, unsigned int varIdx, Long64_t entry, TypeList< ColTypes... >, std::index_sequence< ReaderIdxs... >)
RVariedAction(std::vector< Helper > &&helpers, const ColumnNames_t &columns, const std::vector< std::shared_ptr< PrevNodeType > > &prevNodes, const RColumnRegister &colRegister)
This constructor takes in input a vector of previous nodes, motivated by the CloneAction logic.
void TriggerChildrenCount() final
This type represents a sample identifier, to be used in conjunction with RDataFrame features such as ...
A simple, robust and fast interface to read values from ROOT columnar datasets such as TTree,...
bool IsStrInVec(const std::string &str, const std::vector< std::string > &vec)
std::array< RDFDetail::RColumnReaderBase *, sizeof...(ColTypes)> GetColumnReaders(unsigned int slot, TTreeReader *r, TypeList< ColTypes... >, const RColumnReadersInfo &colInfo, const std::string &variationName="nominal")
Create a group of column readers, one per type in the parameter pack.
std::vector< std::string > ColumnNames_t
std::function< void(unsigned int, const ROOT::RDF::RSampleInfo &)> SampleCallback_t
The type of a data-block callback, registered with an RDataFrame computation graph via e....
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
This type aggregates some of the arguments passed to GetColumnReaders.
Lightweight storage for a collection of types.