Skip to content

Commit 49e1c8b

Browse files
committed
GLO: Document parameters in README
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 9b5a6ca commit 49e1c8b

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

Modules/GLO/README.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# GLO
2+
Documents the available task in the module and their parameters.
3+
## ITS-TPC Matching Task
4+
### Parameters
5+
#### MC
6+
- `isMC=false` produce additional MC plots
7+
- `useTrkPID=false` propagate tracks with their pid hypothesis
8+
#### ITS
9+
- `minPtITSCut=0.1f` minimum ITS track momentum
10+
- `etaITSCut=1.4f` maximum ITS track eta
11+
- `minNITSClustersCut=0` minimum number of ITS clusters
12+
- `maxChi2PerClusterITS=1e10f` maximum chi2/ITS cluster
13+
#### TPC
14+
- `minPtTPCCut=0.1f` minimum TPC track momentum
15+
- `etaITSCut=1.4f` maximum ITS track eta
16+
- `minTPCClustersCut=60` minimum number of TPC clusters
17+
- `minDCACut=100.f` minimum TPC track DCA Z
18+
- `minDCACutY=10.f` minimum TPC track DCA Y
19+
#### ITS-TPC
20+
- `minPtCut=0.1f` minimum ITS-TPC momentum
21+
- `maxPtCut=20.f` maximum ITS-TPC momentum
22+
- `etaCut=1.4f` maximum ITS-TPC track eta
23+
#### Additional sync parameters
24+
- `isSync=false` synchronous processing, needed for all following parameters
25+
#### MTC ratios
26+
- `doMTCRatios=false` produce MTC ratio plots
27+
#### K0s
28+
- `doK0QC=false` produce K0s plots
29+
- `maxK0Eta=0.8f` maximum K0s eta
30+
- `refitK0=false` refit K0 prongs
31+
- `cutK0Mass=0.05f` cut around K0s peak
32+
- `trackSourcesK0` SVertexer input sources
33+
- `publishK0s3D=false` publish 3D cycle,integral histograms
34+
+ K0Fitter options
35+
#### ITS-PV
36+
- `doPVITSQC=false` produce ITS vs PV plots
37+
38+
## ITS-TPC Matching Check
39+
### Parameters
40+
#### Pt
41+
- `showPt=false` show check on MTC pt
42+
- `thresholdPt=0.5f` threshold on MTC pt
43+
- `minPt=1.0f` check range left
44+
- `maxPt=1.999f` check range right
45+
#### Phi
46+
- `showPhi=false` show check on MTC phi
47+
- `thresholdPhi=0.3f` threshold on MTC phi
48+
#### Eta
49+
- `showEta=false` show check on MTC eta
50+
- `thresholdEta=0.4f` threshold on MTC eta
51+
- `minEta=-0.8f` check range left
52+
- `maxEta=0.8f` check range right
53+
#### K0
54+
- `showK0s=false` show check on K0s mass
55+
- `acceptableK0sRError=0.2f` acceptable relative error to pdg value
56+
- `acceptableK0sUncertainty=0.2f` acceptable uncertainty to pdg value
57+
+ K0Fitter options
58+
#### Other
59+
- `limitRanges=5` maximum number of bad intervals shown
60+
61+
## K0sFitReductor
62+
Trends mean and sigma of fit.
63+
### Output
64+
- `mean` aggregated mass value
65+
- `sigma` aggregated sigma value
66+
67+
## MTCReductor
68+
Trends MTC at given pt.
69+
### Output
70+
- `mtc` mtc efficiency
71+
### Parameters
72+
- `pt` take value at this pt
73+
74+
## PVITSReductor
75+
Trends constant + slope of straight line fit in given range.
76+
### Output
77+
- `pol0` constant
78+
- `pol1` slope
79+
### Parameters
80+
- `r0` start fit range
81+
- `r1` end fit range
82+
83+
## K0Fitter
84+
Does a `pol2 + Gaus` fit.
85+
### Parameters
86+
- `k0sBackgroundRejLeft=0.48` reject region in background fit from left side of mass peak
87+
- `k0sBackgroundRejRight=0.51` reject region in background fit to right side of mass peak
88+
- `k0sBackgroundRangeLeft=0.45` absolute left range to fit background
89+
- `k0sBackgroundRangeRight=0.54` absolute right range to fit background

0 commit comments

Comments
 (0)