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