Project
Loading...
Searching...
No Matches
ITSTPCMatchingQCParams.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13
14#ifndef ALICEO2_ITSTPCMATCHINGQC_PARAMS_H
15#define ALICEO2_ITSTPCMATCHINGQC_PARAMS_H
16
19
20namespace o2::gloqc
21{
22
23// There are configurable params for TPC-ITS matching
24struct ITSTPCMatchingQCParams : public o2::conf::ConfigurableParamHelper<ITSTPCMatchingQCParams> {
25
26 int nBinsPt = 100;
27 float minPtITSCut = 0.1;
28 float etaITSCut = 1.4;
29 int32_t minNITSClustersCut = 0;
31 float minPtTPCCut = 0.1;
32 float etaTPCCut = 1.4;
33 int32_t minNTPCClustersCut = 60;
34 float minDCACut = 100.;
35 float minDCACutY = 10.;
36 float minPtCut = 0.1;
37 float maxPtCut = 20;
38 float etaCut = 1.4;
39 float etaNo0Cut = 0.05;
40 float cutK0Mass = 0.05f;
41 float maxEtaK0 = 0.8f;
42 float K0Scaling = 1.f;
43 float minTPCOccpp = 0.f;
44 float maxTPCOccpp = 1.e6;
46 float minTPCOccPbPb = 0.f;
47 float maxTPCOccPbPb = 8.e6;
49 float maxK0DCA = 0.01;
50 float minK0CosPA = 0.995;
51
52 O2ParamDef(ITSTPCMatchingQCParams, "ITSTPCMatchingQC");
53};
54
55} // namespace o2::gloqc
56 // end namespace o2
57
58#endif
O2ParamDef(ITSTPCMatchingQCParams, "ITSTPCMatchingQC")