From 9b1851e1863f2845e5270fdb0e27399adec85814 Mon Sep 17 00:00:00 2001 From: Mattia Faggin Date: Fri, 26 Apr 2024 14:03:42 +0200 Subject: [PATCH 1/2] Fix typo in Track Tuner documentation --- docs/basics-usage/HelperTasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics-usage/HelperTasks.md b/docs/basics-usage/HelperTasks.md index 80a6f73..f76cb88 100644 --- a/docs/basics-usage/HelperTasks.md +++ b/docs/basics-usage/HelperTasks.md @@ -792,7 +792,7 @@ This is not relevant in Pb-Pb collisions. ```note * The `TrackTuner` allows also to smear the `q/pt` if only one between `updateCurvature` and `updateCurvatureIU` is `true` * By default, the variables `oneOverPtData` and `oneOverPtMC` are initialized to `-1` -* If `(qOverPtMC < 0) || (qOverPtData < 0)`, the `q/pt` correction is done wuering the file from CCDB. Otherwise, the input values of `qOverPtMC` and `qOverPtData` are used to defined the factor `oneOverPtData/oneOverPtMC`, which is a constant factor flat in transverse momentum. +* If at least one between`qOverPtMCq` and `OverPtData` is negative, the `q/pt` correction is done wuering the file from CCDB. Otherwise, the input values of `qOverPtMC` and `qOverPtData` are used to defined the factor `oneOverPtData/oneOverPtMC`, which is a constant factor flat in transverse momentum. ``` The string `trackTunerParams` must follow the format: `=|=` (see the default configuration [here](https://github.com/AliceO2Group/O2Physics/blob/master/Common/TableProducer/trackPropagation.cxx#L62) as reference). From 7cd8b390e72847323e8ff921a2a867538ea76cc3 Mon Sep 17 00:00:00 2001 From: Mattia Faggin Date: Fri, 26 Apr 2024 14:33:03 +0200 Subject: [PATCH 2/2] Add description of missing configuration --- docs/basics-usage/HelperTasks.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/basics-usage/HelperTasks.md b/docs/basics-usage/HelperTasks.md index f76cb88..ca8ec10 100644 --- a/docs/basics-usage/HelperTasks.md +++ b/docs/basics-usage/HelperTasks.md @@ -788,6 +788,7 @@ This is not relevant in Pb-Pb collisions. * `bool updateCurvature`: flag to enable the update of the track curvature, i.e. `q/pt`, at the particle production point * `bool updateCurvatureIU`: flag to enable the update of the track curvature, i.e. `q/pt`, at the innermost update (IU) point * `float oneOverPtMC` (MC) and `float oneOverPtData` (data): the ratio `oneOverPtData/oneOverPtMC` defines the scaling factor to the `q/pt` residual to smear the track pt +* `fillTrackTunerTable`: flag to enable the filling of a new table containing for each track the smeared `q/pt` at the IU point ```note * The `TrackTuner` allows also to smear the `q/pt` if only one between `updateCurvature` and `updateCurvatureIU` is `true`