Skip to content

Commit 64a8480

Browse files
committed
linter fix
1 parent 55743de commit 64a8480

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/tutorials/indexTables.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Related information can be contained in different tables. And in order to associ
1818

1919
<a name="ProduceEtaPhi"></a>
2020

21-
### ProduceEtaPhi, ProduceColExtra, and ConsumeEtaPhi
21+
## ProduceEtaPhi, ProduceColExtra, and ConsumeEtaPhi
2222

2323
The tutorial example starts with the declaration and production of three tables, EtaPhi and CollisionsExtra, which are normal tables, and HMPIDTracksIndex, an index table.
2424

@@ -30,7 +30,7 @@ DECLARE_SOA_INDEX_TABLE_USER(HMPIDTracksIndex, Tracks, "HMPIDTRKIDX", indices::T
3030
3131
<a name="consumecolextra"></a>
3232
33-
### ConsumeColExtra
33+
## ConsumeColExtra
3434
3535
In task ConsumeColExtra the basic usage of indices is demonstrated. Tracks are
3636
associated to collisions via the index column o2::aod::track::CollisionId (see
@@ -63,7 +63,7 @@ struct ConsumeColExtra {
6363

6464
<a name="partitioncolextra"></a>
6565

66-
### PartitionColExtra
66+
## PartitionColExtra
6767

6868
Index columns allow to easily select e.g. all tracks belonging to a given collision using the `sliceBy()` method (see also [DECLARE_SOA_TABLE](creatingTables.md#declareTables)). groupedTracks contains only tracks which belong to Collision col.
6969
The slicing needs to be pre-declared using `Preslice` (or `PresliceUnsorted` if the index is not sorted) so that the framework can prepare and add it to the internal cache.
@@ -80,7 +80,7 @@ struct Task {
8080
8181
<a name="hmpidtask"></a>
8282
83-
### BuildHmpidIndex and ConsumeHmpidIndex
83+
## BuildHmpidIndex and ConsumeHmpidIndex
8484
8585
Builds&lt;T&gt; is used to prepare an index column of type T. This has to be performed
8686
before the index table can be used. Note the declaration of the init() function

0 commit comments

Comments
 (0)