Skip to content

Commit 5a110e5

Browse files
committed
Link to tutorial "Histogram Registry" was broken.
1 parent 9bf632f commit 5a110e5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs/basics-tasks/BasicAnalysisTask.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,4 @@ std::shared_ptr<T>& get(const H& histName)
197197
Again HIST("histname") must be provided as argument to get the histogram with name = histname.
198198
199199
Practical examples of histogram manipulations in O2 can be found in the
200-
tutorials [Histograms](../tutorials/histograms.md) and [Histogram
201-
Registry](../tutorials/histogramRegistry.md).
200+
tutorials [Histograms](../tutorials/histograms.md) and [Histogram Registry](../tutorials/histogramRegistry.md).

docs/tutorials/histogramRegistry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ sort: 5
33
title: Histogram Registry
44
---
55

6+
# Histogram Registry
7+
68
```goal
79
Learn how to create, fill, and manage histograms and other objects
810
```
@@ -12,8 +14,6 @@ Learn how to create, fill, and manage histograms and other objects
1214
Executable: o2-analysistutorial-histogram-registry
1315
</div>
1416

15-
# Histogram Registry
16-
1717
The histogram registry is an object to create and manage histograms in a consistent and optimized way.
1818

1919
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.

0 commit comments

Comments
 (0)