11#ifndef ROOT_RDF_TINTERFACE_UTILS
12#define ROOT_RDF_TINTERFACE_UTILS
31#include <RConfigure.h>
53template <
typename Proxied>
93struct HistoNSparseD{};
97struct GraphAsymmErrors{};
113template <
typename T,
bool ISV6HISTO = std::is_base_of<TH1, std::decay_t<T>>::value>
117 auto xaxis =
h.GetXaxis();
118 return !(
xaxis->GetXmin() == 0. &&
xaxis->GetXmax() == 0.);
129std::unique_ptr<RActionBase>
130BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<ActionResultType> &
h,
const unsigned int nSlots,
139template <
typename...
ColTypes,
typename PrevNodeType>
140std::unique_ptr<RActionBase>
141BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<::TH1D> &
h,
const unsigned int nSlots,
142 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Histo1D,
const RColumnRegister &
colRegister)
159std::unique_ptr<RActionBase>
160BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<ActionResultType> &
h,
const unsigned int nSlots,
161 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Histo3D,
const RColumnRegister &
colRegister)
170 if constexpr (
sizeof...(ColTypes) > 3) {
181std::unique_ptr<RActionBase>
183 const unsigned int nSlots, std::shared_ptr<PrevNodeType> prevNode, ActionTags::Hist,
193std::unique_ptr<RActionBase>
195 const unsigned int nSlots, std::shared_ptr<PrevNodeType> prevNode, ActionTags::HistWithWeight,
205std::unique_ptr<RActionBase>
207 const unsigned int, std::shared_ptr<PrevNodeType> prevNode, ActionTags::Hist,
217std::unique_ptr<RActionBase>
219 const unsigned int, std::shared_ptr<PrevNodeType> prevNode, ActionTags::HistWithWeight,
228template <
typename...
ColTypes,
typename PrevNodeType>
229std::unique_ptr<RActionBase>
230BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<TGraph> &
g,
const unsigned int nSlots,
231 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Graph,
const RColumnRegister &
colRegister)
238template <
typename...
ColTypes,
typename PrevNodeType>
239std::unique_ptr<RActionBase>
240BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<TGraphAsymmErrors> &
g,
const unsigned int nSlots,
241 std::shared_ptr<PrevNodeType> prevNode, ActionTags::GraphAsymmErrors,
const RColumnRegister &
colRegister)
249template <
typename ColType,
typename PrevNodeType,
typename ActionResultType>
250std::unique_ptr<RActionBase>
252 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Min,
const RColumnRegister &
colRegister)
260template <
typename ColType,
typename PrevNodeType,
typename ActionResultType>
261std::unique_ptr<RActionBase>
263 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Max,
const RColumnRegister &
colRegister)
271template <
typename ColType,
typename PrevNodeType,
typename ActionResultType>
272std::unique_ptr<RActionBase>
274 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Sum,
const RColumnRegister &
colRegister)
282template <
typename ColType,
typename PrevNodeType>
283std::unique_ptr<RActionBase>
285 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Mean,
const RColumnRegister &
colRegister)
293template <
typename ColType,
typename PrevNodeType>
294std::unique_ptr<RActionBase>
296 std::shared_ptr<PrevNodeType> prevNode, ActionTags::StdDev,
const RColumnRegister &
colRegister)
304template <
typename ColType,
typename PrevNodeType>
305std::unique_ptr<RActionBase>
307 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Median,
const RColumnRegister &
colRegister)
317template <
typename...
ColTypes,
typename PrevNodeType>
318std::unique_ptr<RActionBase>
319BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<displayHelperArgs_t> &
helperArgs,
const unsigned int,
320 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Display,
const RColumnRegister &
colRegister)
329 std::string fFileName;
330 std::string fDirName;
331 std::string fTreeName;
337 bool fIncludeVariations;
340template <
typename PrevNodeType>
341std::unique_ptr<RActionBase>
343 const unsigned int nSlots, std::shared_ptr<PrevNodeType> prevNode,
const RColumnRegister &
colRegister,
344 const std::vector<const std::type_info *> &
colTypeIDs)
356 for (
auto i = 0
u; i <
sz; ++i)
362 using Helper_t = UntypedSnapshotRNTupleHelper;
372 using Helper_t = SnapshotHelperWithVariations;
378 using Helper_t = UntypedSnapshotTTreeHelper;
386 throw std::invalid_argument(
"Multi-threaded snapshot with variations is not supported yet.");
389 using Helper_t = UntypedSnapshotTTreeHelperMT;
402std::unique_ptr<RActionBase>
403BuildAction(
const ColumnNames_t &
bl,
const std::shared_ptr<Helper_t> &
h,
const unsigned int ,
404 std::shared_ptr<PrevNodeType> prevNode, ActionTags::Book,
const RColumnRegister &
colRegister)
412template <
typename Filter>
415 using FilterRet_t =
typename RDF::CallableTraits<Filter>::ret_type;
416 static_assert(std::is_convertible<FilterRet_t, bool>::value,
417 "filter expression returns a type that is not convertible to bool");
435std::shared_ptr<RJittedFilter>
BookFilterJit(std::shared_ptr<RNodeBase> prevNode, std::string_view
name,
436 std::string_view expression,
const RColumnRegister &
colRegister,
445std::shared_ptr<RJittedVariation>
451std::string
JitBuildAction(
const ColumnNames_t &
bl,
const std::type_info &
art,
const std::type_info &at,
TTree *tree,
459std::shared_ptr<RNodeBase>
UpcastNode(std::shared_ptr<RNodeBase> ptr);
475 if (
lm.HasDataSourceColumnReaders(
colName,
typeid(T)))
479 lm.GetSuppressErrorsForMissingBranches().find(
colName) ==
lm.GetSuppressErrorsForMissingBranches().
end())
483 std::vector<std::unique_ptr<RColumnReaderBase>>
colReaders;
531 using PrevNode_t =
typename decltype(prevNode)::element_type;
533 using ColTypes_t =
typename TTraits::CallableTraits<Callable_t>::arg_types;
534 constexpr auto nColumns = ColTypes_t::list_size;
537 auto ds =
lm.GetDataSource();
539 if (
ds !=
nullptr && !
cols.empty())
563 return std::unique_ptr<RDefineBase>(
570template <
typename RDefineTypeTag,
typename F>
582 using ColTypes_t =
typename TTraits::CallableTraits<Callable_t>::arg_types;
584 auto ds =
lm.GetDataSource();
585 if (
ds !=
nullptr && !
cols.empty())
592 std::unique_ptr<RDefineBase>
newCol{
597template <
bool IsSingleColumn,
typename F>
610 using ColTypes_t =
typename TTraits::CallableTraits<Callable_t>::arg_types;
612 auto ds =
lm.GetDataSource();
627 std::shared_ptr<HelperArgType> *
helperArg)
noexcept
636 constexpr auto nColumns = ColTypes_t::list_size;
637 auto ds =
lm.GetDataSource();
638 if (
ds !=
nullptr && !
cols.empty())
659 using type = TTraits::TakeFirstParameter_t<T>;
663template <
typename R,
typename F,
typename... Args>
666 return [
f](
unsigned int, Args...
a)
mutable ->
R {
return f(
a...); };
674template <
typename...
Rest>
676 static constexpr bool value =
true;
681 static constexpr bool value =
false;
686 static constexpr bool value =
true;
689template <
typename ...ColTypes>
696 static constexpr bool value =
false;
703template <
typename R,
typename Merge,
typename U,
typename T,
typename decayedU = std::decay_t<U>,
704 typename mergeArgsNoDecay_t =
typename CallableTraits<Merge>::arg_types_nodecay,
705 typename mergeArgs_t =
typename CallableTraits<Merge>::arg_types,
706 typename mergeRet_t =
typename CallableTraits<Merge>::ret_type>
710 (std::is_same<R, decayedU>::value) || (std::is_same<R, void>::value && std::is_lvalue_reference<U>::value);
711 static_assert(
isAggregatorOk,
"aggregator function must have signature `U(U,T)` or `void(U&,T)`");
713 (std::is_same<TypeList<decayedU, decayedU>,
mergeArgs_t>
::value && std::is_same<decayedU, mergeRet_t>::value) ||
715 std::is_same<void, mergeRet_t>::value);
716 static_assert(
isMergeOk,
"merge function must have signature `U(U,U)` or `void(std::vector<U>&)`");
721template <
typename R,
typename T>
724 static_assert(
sizeof(T) == 0,
"aggregator function must take exactly two arguments");
742template <
typename NodeType>
743std::vector<std::string>
GetFilterNames(
const std::shared_ptr<NodeType> &node)
751 std::string fTreeName;
752 std::string fDirName;
773struct IsList_t : std::false_type {};
776struct IsList_t<std::list<T>> : std::true_type {};
782struct IsDeque_t<std::deque<T>> : std::true_type {};
794template <
typename Elem>
802std::pair<std::vector<std::string>, std::vector<std::string>>
#define R(a, b, c, d, e, f, g, h, i)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Int_t gErrorIgnoreLevel
errors with level below this value will be ignored. Default is kUnset.
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 Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
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 Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
A wrapper around a concrete RDefine, which forwards all calls to it RJittedDefine is a placeholder th...
A wrapper around a concrete RFilter, which forwards all calls to it RJittedFilter is the type of the ...
The head node of a RDF computation graph.
A histogram data structure to bin data along multiple dimensions.
A histogram for aggregation of data along multiple dimensions.
A binder for user-defined columns, variations and aliases.
RDataSource defines an API that RDataFrame can use to read arbitrary data formats.
The public interface to the RDataFrame federation of classes.
const_iterator end() const
A "std::vector"-like collection of values implementing handy operation to analyse them.
A TTree represents a columnar dataset.
const ColumnNames_t SelectColumns(unsigned int nRequiredNames, const ColumnNames_t &names, const ColumnNames_t &defaultNames)
Choose between local column names or default column names, throw in case of errors.
void CheckForNoVariations(const std::string &where, std::string_view definedColView, const RColumnRegister &colRegister)
Throw if the column has systematic variations attached.
ParsedTreePath ParseTreePath(std::string_view fullTreeName)
std::shared_ptr< RJittedDefine > BookDefinePerSampleJit(std::string_view name, std::string_view expression, RLoopManager &lm, const RColumnRegister &colRegister)
Book the jitting of a DefinePerSample call.
void CheckValidCppVarName(std::string_view var, const std::string &where)
void RemoveDuplicates(ColumnNames_t &columnNames)
ColumnNames_t GetValidatedColumnNames(RLoopManager &lm, const unsigned int nColumns, const ColumnNames_t &columns, const RColumnRegister &colRegister, RDataSource *ds)
Given the desired number of columns and the user-provided list of columns:
std::shared_ptr< RNodeBase > UpcastNode(std::shared_ptr< RNodeBase > ptr)
void CheckSnapshotOptionsFormatCompatibility(const ROOT::RDF::RSnapshotOptions &opts)
void CheckForDefinition(const std::string &where, std::string_view definedColView, const RColumnRegister &colRegister, const ColumnNames_t &dataSourceColumns)
Throw if column definedColView is not already there.
std::vector< std::string > GetFilterNames(const std::shared_ptr< RLoopManager > &loopManager)
std::string PrettyPrintAddr(const void *const addr)
std::shared_ptr< RDFDetail::RJittedFilter > BookFilterJit(std::shared_ptr< RDFDetail::RNodeBase > prevNode, std::string_view name, std::string_view expression, const RColumnRegister &colRegister, TTree *tree, RDataSource *ds)
Book the jitting of a Filter call.
std::string JitBuildAction(const ColumnNames_t &cols, const std::type_info &helperArgType, const std::type_info &at, TTree *tree, const unsigned int nSlots, const RColumnRegister &colRegister, RDataSource *ds, const bool vector2RVec)
void CheckTypesAndPars(unsigned int nTemplateParams, unsigned int nColumnNames)
std::string DemangleTypeIdName(const std::type_info &typeInfo)
bool AtLeastOneEmptyString(const std::vector< std::string_view > strings)
std::unique_ptr< ROOT::Detail::RDF::RColumnReaderBase > CreateColumnReader(ROOT::RDF::RDataSource &ds, unsigned int slot, std::string_view col, const std::type_info &tid, TTreeReader *treeReader)
std::pair< std::vector< std::string >, std::vector< std::string > > AddSizeBranches(ROOT::RDF::RDataSource *ds, std::vector< std::string > &&colsWithoutAliases, std::vector< std::string > &&colsWithAliases)
Return copies of colsWithoutAliases and colsWithAliases with size branches for variable-sized array b...
void RemoveRNTupleSubfields(ColumnNames_t &columnNames)
ColumnNames_t FilterArraySizeColNames(const ColumnNames_t &columnNames, const std::string &action)
Take a list of column names, return that list with entries starting by '#' filtered out.
std::vector< std::string > GetValidatedArgTypes(const ColumnNames_t &colNames, const RColumnRegister &colRegister, TTree *tree, RDataSource *ds, const std::string &context, bool vector2RVec)
void CheckForDuplicateSnapshotColumns(const ColumnNames_t &cols)
ColumnNames_t ConvertRegexToColumns(const ColumnNames_t &colNames, std::string_view columnNameRegexp, std::string_view callerName)
ColumnNames_t FindUnknownColumns(const ColumnNames_t &requiredCols, const RColumnRegister &definedCols, const ColumnNames_t &dataSourceColumns)
unsigned int & NThreadPerTH3()
Obtain or set the number of threads that will share a clone of a thread-safe 3D histogram.
void CheckForRedefinition(const std::string &where, std::string_view definedColView, const RColumnRegister &colRegister, const ColumnNames_t &dataSourceColumns)
Throw if column definedColView is already there.
std::shared_ptr< RJittedDefine > BookDefineJit(std::string_view name, std::string_view expression, RLoopManager &lm, RDataSource *ds, const RColumnRegister &colRegister)
Book the jitting of a Define call.
std::shared_ptr< RJittedVariation > BookVariationJit(const std::vector< std::string > &colNames, std::string_view variationName, const std::vector< std::string > &variationTags, std::string_view expression, RLoopManager &lm, RDataSource *ds, const RColumnRegister &colRegister, bool isSingleColumn, const std::string &varyColType)
Book the jitting of a Vary call.
ROOT type_traits extensions.
Bool_t IsImplicitMTEnabled()
Returns true if the implicit multi-threading in ROOT is enabled.
A collection of options to steer the creation of the dataset on disk through Snapshot().
Lightweight storage for a collection of types.