From a8b6c24362a70d070e773896fa7333b414dfe14d Mon Sep 17 00:00:00 2001 From: silverweed Date: Tue, 24 Feb 2026 09:41:05 +0100 Subject: [PATCH] [skip-ci][rfile] Add rfile to tutorials/io/index.md --- tutorials/io/index.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tutorials/io/index.md b/tutorials/io/index.md index 55b38840a7df9..d19171709deab 100644 --- a/tutorials/io/index.md +++ b/tutorials/io/index.md @@ -9,6 +9,7 @@ - [SQL](\ref tutorial_sql) - [XML](\ref tutorial_xml) - [Various I/O related topics](\ref miscl) +- [New experimental ROOT File interface](\ref rfile) \anchor file ## ROOT File @@ -42,8 +43,16 @@ The following tutorials illustrate various useful ROOT I/O features. | testTMPIFile.C | | Usage of TMPIFile to simulate event reconstruction and merging them in parallel.| | | tcontext_context_manager.py | Usage of the TContext class as a Python context manager. | | | tfile_context_manager.py | Usage of TFile class as a Python context manager.| -@} +\anchor rfile +## New experimental ROOT file interface +The following tutorials illustrate how to use RFile, the new interface to ROOT files. +RFile is a simpler alternative to TFile that makes operations and object ownership explicit. +| **Tutorial** | **Description** | +|------|-----------------| +| rfile001_basics.C | Basic reading and writing from/to RFile (C++) | +| rfile001_basics.py | Basic reading and writing from/to RFile (Python) | +@} \defgroup tutorial_ntuple RNTuple tutorials \ingroup tutorial_io @@ -63,4 +72,4 @@ The following tutorials illustrate various useful ROOT I/O features. \defgroup tutorial_xml XML tutorials \ingroup tutorial_io -\brief XML examples. \ No newline at end of file +\brief XML examples.