Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
RNTupleTreeMap.hxx
Go to the documentation of this file.
1/// \file ROOT/RNTupleTreeMap.hxx
2/// \author Patryk Tymoteusz Pilichowski <patryk.tymoteusz.pilichowski@cern.ch>
3/// \date 2025-09-15
4/// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback
5/// is welcome!
6
7/*************************************************************************
8 * Copyright (C) 1995-2025, Rene Brun and Fons Rademakers. *
9 * All rights reserved. *
10 * *
11 * For the licensing terms see $ROOTSYS/LICENSE. *
12 * For the list of contributors see $ROOTSYS/README/CREDITS. *
13 *************************************************************************/
14
15#ifndef ROOT_RNTupleTreeMap
16#define ROOT_RNTupleTreeMap
17
20
21#include <memory>
22#include <string>
23
24namespace ROOT {
25namespace Experimental {
26/////////////////////////////////////////////////////////////////////////////
27/// \brief Logic for converting an RNTuple to RTreeMapPainter given RNTupleInspector
28std::unique_ptr<RTreeMapPainter> CreateTreeMapFromRNTuple(const RNTupleInspector &insp);
29
30/////////////////////////////////////////////////////////////////////////////
31/// \brief Logic for converting an RNTuple to RTreeMapPainter given file and tuple names
32std::unique_ptr<RTreeMapPainter> CreateTreeMapFromRNTuple(std::string_view sourceFileName, std::string_view tupleName);
33} // namespace Experimental
34
35} // namespace ROOT
36
37#endif
Inspect on-disk and storage-related information of an RNTuple.
Namespace for ROOT features in testing.
Definition TROOT.h:100
std::unique_ptr< RTreeMapPainter > CreateTreeMapFromRNTuple(const RNTupleInspector &insp)
Logic for converting an RNTuple to RTreeMapPainter given RNTupleInspector.