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
GPUhd() CellSeed(HitLayerMaskTag, uint16_t hitLayerMask, int cl0, int cl1, int cl2, int trkl0, int trkl1, const o2::track::TrackParCovF& tpc, float chi2, const TimeEstBC& time)
74
105
: Base(tpc, chi2, 1, time)
75
106
{
76
-
setUserField(innerL);
107
+
setHitLayerMask(hitLayerMask);
77
108
auto& clusters = this->clustersRaw();
78
109
clusters[0] = cl0;
79
110
clusters[1] = cl1;
@@ -92,12 +123,12 @@ class CellSeed final : public SeedBase<constants::ClustersPerCell>
Copy file name to clipboardExpand all lines: Detectors/ITSMFT/ITS/tracking/include/ITStracking/TrackingConfigParam.h
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,8 @@ struct TrackerParamConfig : public o2::conf::ConfigurableParamHelper<TrackerPara
71
71
int addTimeError[7] = {0}; // configure the width of the window in BC to be considered for the tracking.
72
72
int minTrackLgtIter[constants::MaxIter] = {}; // minimum track length at each iteration, used only if >0, otherwise use code defaults
73
73
uint8_t startLayerMask[constants::MaxIter] = {}; // mask of start layer for this iteration (if >0)
74
+
int maxHolesIter[constants::MaxIter] = {}; // maximum number of missing internal layers allowed in the CA topology for each iteration
75
+
uint16_t holeLayerMaskIter[constants::MaxIter] = {}; // layers that may be skipped by the CA topology for each iteration
74
76
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
77
float sysErrY2[7] = {0}; // systematic error^2 in Y per layer
76
78
float sysErrZ2[7] = {0}; // systematic error^2 in Z per layer
0 commit comments