Skip to content

Commit 5737b45

Browse files
authored
[skip-ci] fix doxygen warnings root-project#17626
1 parent bcbeb85 commit 5737b45

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

math/foam/src/TFoam.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ See [full version of FOAM](http://jadach.home.cern.ch/jadach/Foam/Index.html)
4242
### Simple example of the use of FOAM:
4343
4444
Begin_Macro(source)
45-
../../../tutorials/foam/foam_kanwa.C
45+
../../../tutorials/math/foam/foam_kanwa.C
4646
End_Macro
4747
4848
### Canonical nine steering parameters of FOAM

tree/dataframe/src/RDataFrame.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ You can directly see RDataFrame in action in our [tutorials](https://root.cern/d
6161
6262
## Table of Contents
6363
- [Cheat sheet](\ref cheatsheet)
64-
- [Introduction](\ref introduction)
64+
- [Introduction](\ref rdf_intro)
6565
- [Crash course](\ref crash-course)
6666
- [Working with collections](\ref collections)
6767
- [Transformations: manipulating data](\ref transformations)
6868
- [Actions: getting results](\ref actions)
69-
- [Distributed execution in Python](classROOT_1_1RDataFrame.html#distrdf)
69+
- [Distributed execution in Python](rdf_distrdf)
7070
- [Performance tips and parallel execution](\ref parallel-execution)
7171
- [More features](\ref more-features)
7272
- [Systematic variations](\ref systematics)
@@ -168,7 +168,7 @@ These operations do not modify the dataframe or book computations but simply ret
168168
| GetNSlots() | Return the number of processing slots that RDataFrame will use during the event loop (i.e. the concurrency level). |
169169
| SaveGraph() | Store the computation graph of an RDataFrame in [DOT format (graphviz)](https://en.wikipedia.org/wiki/DOT_(graph_description_language)) for easy inspection. See the [relevant section](\ref representgraph) for details. |
170170
171-
\anchor introduction
171+
\anchor rdf_intro
172172
## Introduction
173173
Users define their analysis as a sequence of operations to be performed on the dataframe object; the framework
174174
takes care of the management of the loop over entries as well as low-level details such as I/O and parallelization.
@@ -670,7 +670,7 @@ auto graph = df2.Graph<int, int>("x","y");
670670
The `Graph` action is going to request first the value from column "x", then that of column "y". Specifically, the order
671671
of execution of the operations of nodes in this branch of the computation graph is guaranteed to be top to bottom.
672672
673-
\anchor distrdf
673+
\anchor rdf_distrdf
674674
## Distributed execution
675675
676676
RDataFrame applications can be executed in parallel through distributed computing frameworks on a set of remote machines

tutorials/analysis/dataframe/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ histoB->Draw(); // HistoB has already been filled, no event loop is run here
2020
Explore the examples below or go to [RDataFrame's user guide](classROOT_1_1RDataFrame.html). A list of all the RDataFrame tutorials can be found [here](\ref alltutorials).
2121

2222
## Table of contents
23-
- [Introduction](\ref introduction)
23+
- [Introduction](\ref df_intro)
2424
- [Processing your data](\ref processingdata)
2525
- [Write and read from many sources](\ref readwrite)
2626
- [Interface with Numpy and Pandas](\ref numpypanda)
27-
- [Distributed execution in Python](\ref distrdf)
27+
- [Distributed execution in Python](\ref df_distrdf)
2828
- [Know more about your analysis](\ref analysisinfo)
2929
- [Example HEP analyses tutorials](\ref hepanalysis)
3030
- [List of all the tutorials](\ref alltutorials)
3131

3232

3333

34-
\anchor introduction
34+
\anchor df_intro
3535
## Introduction
3636

3737
To get started these examples show how to create a simple RDataFrame, how to process the data in a simple analyses and how to plot distributions.
@@ -96,7 +96,7 @@ From Python, NumPy arrays can be imported into RDataFrame and columns from RData
9696
| df032_RDFFromNumpy.py | Read data from Numpy arrays. |
9797
| df035_RDFFromPandas.py | Read data from Pandas DataFrame. |
9898

99-
\anchor distrdf
99+
\anchor df_distrdf
100100
##Distributed execution in Python
101101

102102
RDataFrame applications can be executed in parallel through distributed computing frameworks on a set of remote machines via Apache Spark or Dask.

tutorials/hist/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Explore the examples below for [different histogram classes](group__Histograms.h
3737

3838
## Tutorials sorted after groups
3939

40-
- [Introduction](\ref introduction)
40+
- [Introduction](\ref hist_intro)
4141
- [TH1 Histograms](\ref th1)
4242
- [TH2 Histograms](\ref th2)
4343
- [THnSparse](\ref thnsparse)
@@ -48,7 +48,7 @@ Explore the examples below for [different histogram classes](group__Histograms.h
4848
- [TExec](\ref texec)
4949

5050
[List of all tutorials](\ref alltutorials)
51-
\anchor introduction
51+
\anchor hist_intro
5252

5353
## Introduction
5454

0 commit comments

Comments
 (0)