From 5a110e5b25a66c629240f45454bd2b286c08fca4 Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 13 Jun 2023 17:14:21 +0200 Subject: [PATCH] Link to tutorial "Histogram Registry" was broken. --- docs/basics-tasks/BasicAnalysisTask.md | 3 +-- docs/tutorials/histogramRegistry.md | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/basics-tasks/BasicAnalysisTask.md b/docs/basics-tasks/BasicAnalysisTask.md index 3a15becc..cd9242dc 100644 --- a/docs/basics-tasks/BasicAnalysisTask.md +++ b/docs/basics-tasks/BasicAnalysisTask.md @@ -197,5 +197,4 @@ std::shared_ptr& get(const H& histName) Again HIST("histname") must be provided as argument to get the histogram with name = histname. Practical examples of histogram manipulations in O2 can be found in the -tutorials [Histograms](../tutorials/histograms.md) and [Histogram -Registry](../tutorials/histogramRegistry.md). +tutorials [Histograms](../tutorials/histograms.md) and [Histogram Registry](../tutorials/histogramRegistry.md). diff --git a/docs/tutorials/histogramRegistry.md b/docs/tutorials/histogramRegistry.md index e2bcc3c6..9b88a7e1 100644 --- a/docs/tutorials/histogramRegistry.md +++ b/docs/tutorials/histogramRegistry.md @@ -3,6 +3,8 @@ sort: 5 title: Histogram Registry --- +# Histogram Registry + ```goal Learn how to create, fill, and manage histograms and other objects ``` @@ -12,8 +14,6 @@ Learn how to create, fill, and manage histograms and other objects Executable: o2-analysistutorial-histogram-registry -# Histogram Registry - The histogram registry is an object to create and manage histograms in a consistent and optimized way. ROOT provides an extensive list of histogram types. So why would one create a new interface? The reason is to offload histogram/object creation and management to the analysis framework and to allow with this for optimization. It is therefore recommended to use HistogramRegistry to create and work with histograms.