Skip to content

Commit 7692e43

Browse files
alibuildnjacazio
authored andcommitted
MegaLinter fixes
1 parent f652cac commit 7692e43

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

docs/analysis-tools/PID.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,23 @@ You can include it in your task with:
4444
In the process functions, you can join the table to add the PID (per particle mass hypothesis) information to the track.
4545
In this case, we are using the mass hypothesis of the electron, but tables for nine (9) stable particle species are produced (`El`, `Mu`, `Pi`, `Ka`, `Pr`, `De`, `Tr`, `He`, `Al`).
4646

47-
* For the **TOF** PID as:
47+
- For the **TOF** PID as:
4848

4949
``` c++
5050
void process(soa::Join<aod::Tracks, aod::pidTOFEl>::iterator const& track) {
5151
track.tofNSigmaEl();
5252
}
5353
```
5454

55-
* For the **TPC** PID as:
55+
- For the **TPC** PID as:
5656

5757
``` c++
5858
void process(soa::Join<aod::Tracks, aod::pidTPCEl>::iterator const& track) {
5959
track.tpcNSigmaEl();
6060
}
6161
```
6262

63-
* For both TOF and TPC PID information as:
63+
- For both TOF and TPC PID information as:
6464

6565
``` c++
6666
void process(soa::Join<aod::Tracks, aod::pidTOFEl, aod::pidTPCEl>::iterator const& track) {
@@ -72,7 +72,7 @@ In this case, we are using the mass hypothesis of the electron, but tables for n
7272

7373
**In short:** O2 tasks dedicated to the filling of the PID tables are called with
7474

75-
* Filling TOF PID Table
75+
- Filling TOF PID Table
7676

7777
``` bash
7878
o2-analysis-pid-tof
@@ -87,7 +87,7 @@ In this case, we are using the mass hypothesis of the electron, but tables for n
8787
These tasks can be configured according to the needs specified by the detector experts.
8888
If you are in doubt, you can contact them or take the configuration of the Hyperloop as a reference.
8989

90-
* Filling the TPC PID Table
90+
- Filling the TPC PID Table
9191

9292
``` bash
9393
o2-analysis-pid-tpc
@@ -102,14 +102,14 @@ In this case, we are using the mass hypothesis of the electron, but tables for n
102102

103103
## Example of tasks that use the PID tables (and how to run them)
104104

105-
* TOF PID task [`pidTOF.cxx`](https://github.com/AliceO2Group/O2Physics/tree/master/Common/TableProducer/PID/pidTOF.cxx)
105+
- TOF PID task [`pidTOF.cxx`](https://github.com/AliceO2Group/O2Physics/tree/master/Common/TableProducer/PID/pidTOF.cxx)
106106
You can run the TOF spectra task with:
107107

108108
``` bash
109109
o2-analysis-pid-tof-qa --aod-file AO2D.root -b | o2-analysis-pid-tof -b | o2-analysis-pid-tof-base -b
110110
```
111111

112-
* TPC PID task [`pidTPC.cxx`](https://github.com/AliceO2Group/O2Physics/tree/master/Common/TableProducer/PID/pidTPC.cxx)
112+
- TPC PID task [`pidTPC.cxx`](https://github.com/AliceO2Group/O2Physics/tree/master/Common/TableProducer/PID/pidTPC.cxx)
113113
You can run the TPC spectra task with:
114114

115115
``` bash
@@ -118,7 +118,7 @@ In this case, we are using the mass hypothesis of the electron, but tables for n
118118

119119
## Enabling QA histograms
120120

121-
* QA histograms should come with the PID tasks; they can be enabled by including the QA tasks in your workflow when running locally or with the corresponding QA tasks as in:
121+
- QA histograms should come with the PID tasks; they can be enabled by including the QA tasks in your workflow when running locally or with the corresponding QA tasks as in:
122122

123123
For the **TOF** QA plots
124124

@@ -133,4 +133,3 @@ In this case, we are using the mass hypothesis of the electron, but tables for n
133133
```
134134

135135
Where by `...` we mean the other tasks in your workflow.
136-

0 commit comments

Comments
 (0)