File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Detectors/ITSMFT/ITS/tracking/include/ITStracking Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1212#ifndef ALICEO2_ITSDPLTRACKINGPARAM_H_
1313#define ALICEO2_ITSDPLTRACKINGPARAM_H_
1414
15+ #include < limits>
16+
1517#include " CommonUtils/ConfigurableParam.h"
1618#include " CommonUtils/ConfigurableParamHelper.h"
1719
@@ -49,7 +51,7 @@ struct VertexerParamConfig : public o2::conf::ConfigurableParamHelper<VertexerPa
4951
5052 int nThreads = 1 ;
5153 bool printMemory = false ;
52- size_t maxMemory = 12000000000UL ;
54+ size_t maxMemory = std::numeric_limits< size_t >::max() ;
5355 bool dropTFUponFailure = false ;
5456
5557 O2ParamDef (VertexerParamConfig, " ITSVertexerParam" );
@@ -94,7 +96,7 @@ struct TrackerParamConfig : public o2::conf::ConfigurableParamHelper<TrackerPara
9496
9597 int nThreads = 1 ;
9698 bool printMemory = false ;
97- size_t maxMemory = 12000000000UL ;
99+ size_t maxMemory = std::numeric_limits< size_t >::max() ;
98100 bool dropTFUponFailure = false ;
99101 bool fataliseUponFailure = true ; // granular management of the fatalisation in async mode
100102
You can’t perform that action at this time.
0 commit comments