Skip to content

Commit

Permalink
Merge pull request #230 from pbuehler/master
Browse files Browse the repository at this point in the history
Link to tutorial "Histogram Registry" was broken.
  • Loading branch information
ddobrigk authored Sep 14, 2023
2 parents 8baa238 + 5a110e5 commit c9a3710
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/basics-tasks/BasicAnalysisTask.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,5 +197,4 @@ std::shared_ptr<T>& 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).
4 changes: 2 additions & 2 deletions docs/tutorials/histogramRegistry.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ sort: 5
title: Histogram Registry
---

# Histogram Registry

```goal
Learn how to create, fill, and manage histograms and other objects
```
Expand All @@ -12,8 +14,6 @@ Learn how to create, fill, and manage histograms and other objects
Executable: o2-analysistutorial-histogram-registry
</div>

# 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.
Expand Down

0 comments on commit c9a3710

Please sign in to comment.