Project
Loading...
Searching...
No Matches
StrangenessTrackingConfigParam.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.
13
14#ifndef ALICEO2_STRANGENESS_TRACKING_PARAM_H_
15#define ALICEO2_STRANGENESS_TRACKING_PARAM_H_
16
19
20namespace o2
21{
22namespace strangeness_tracking
23{
24
25struct StrangenessTrackingParamConfig : public o2::conf::ConfigurableParamHelper<StrangenessTrackingParamConfig> {
26
27 // parameters
28 float mRadiusTolIB = .3; // Radius tolerance for matching V0s in the IB
29 float mRadiusTolOB = .1; // Radius tolerance for matching V0s in the OB
30 float mPhiBinSize = 0.02; // Phi bin size for the matching grid
31 float mEtaBinSize = 0.01; // Eta bin size for the matching grid
32 float mMinMotherClus = 3.; // minimum number of cluster to be attached to the mother
33 float mMaxChi2 = 50; // Maximum matching chi2
34 bool mVertexMatching = true; // Flag to enable/disable vertex matching
35 bool mSkipTPC = true; // Flag to enable/disable TPC only tracks
36 bool mSkip3Body = false; // Flag to enable/disable Decay3Body tracking
37
39};
40
41} // namespace strangeness_tracking
42} // namespace o2
43#endif
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
O2ParamDef(StrangenessTrackingParamConfig, "strtracker")