You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bool useMatCorrTGeo = false; // use full geometry to corect for material budget accounting in the fits. Default is to use the material budget LUT.
70
-
bool useFastMaterial = false; // use faster material approximation for material budget accounting in the fits.
71
-
int addTimeError[7] = {0}; // configure the width of the window in BC to be considered for the tracking.
72
-
int minTrackLgtIter[MaxIter] = {}; // minimum track length at each iteration, used only if >0, otherwise use code defaults
73
-
uint8_t startLayerMask[MaxIter] = {}; // mask of start layer for this iteration (if >0)
74
-
float minPtIterLgt[MaxIter * (MaxTrackLength - MinTrackLength + 1)] = {}; // min.pT for given track length at this iteration, used only if >0, otherwise use code defaults
75
-
float sysErrY2[7] = {0}; // systematic error^2 in Y per layer
76
-
float sysErrZ2[7] = {0}; // systematic error^2 in Z per layer
68
+
69
+
bool useMatCorrTGeo = false; // use full geometry to corect for material budget accounting in the fits. Default is to use the material budget LUT.
70
+
bool useFastMaterial = false; // use faster material approximation for material budget accounting in the fits.
71
+
int addTimeError[7] = {0}; // configure the width of the window in BC to be considered for the tracking.
72
+
int minTrackLgtIter[constants::MaxIter] = {}; // minimum track length at each iteration, used only if >0, otherwise use code defaults
73
+
uint8_t startLayerMask[constants::MaxIter] = {}; // mask of start layer for this iteration (if >0)
74
+
float minPtIterLgt[constants::MaxIter * (MaxTrackLength - MinTrackLength + 1)] = {}; // min.pT for given track length at this iteration, used only if >0, otherwise use code defaults
75
+
float sysErrY2[7] = {0}; // systematic error^2 in Y per layer
76
+
float sysErrZ2[7] = {0}; // systematic error^2 in Z per layer
77
77
float maxChi2ClusterAttachment = -1.f;
78
78
float maxChi2NDF = -1.f;
79
79
float nSigmaCut = -1.f;
@@ -89,7 +89,7 @@ struct TrackerParamConfig : public o2::conf::ConfigurableParamHelper<TrackerPara
89
89
bool overrideBeamEstimation = false; // use beam position from meanVertex CCDB object
90
90
int trackingMode = -1; // -1: unset, 0=sync, 1=async, 2=cosmics used by gpuwf only
91
91
bool doUPCIteration = false; // Perform an additional iteration for UPC events on tagged vertices. You want to combine this config with VertexerParamConfig.nIterations=2
92
-
int nIterations = MaxIter;// overwrite the number of iterations
92
+
int nIterations = constants::MaxIter; // overwrite the number of iterations
93
93
int reseedIfShorter = 6; // for the final refit reseed the track with circle if they are shorter than this value
94
94
bool shiftRefToCluster{true}; // TrackFit: after update shift the linearization reference to cluster
95
95
bool repeatRefitOut{false}; // repeat outward refit using inward refit as a seed
0 commit comments