9def createGNNTrackingPassFlags():
10 icf = createITkTrackingPassFlags()
11 icf.extension = "GNN"
12 icf.doAthenaCluster = True
13 icf.doAthenaSpacePoint = True
14 icf.doAthenaSeed = False
15 icf.doAthenaTrack = False
16 icf.doAthenaAmbiguityResolution = True
17
18 icf.doGNNTrack = True
19
20 icf.doActsCluster = False
21 icf.doActsSpacePoint = False
22 icf.doActsSeed = False
23 icf.doActsTrack = False
24
25
26 icf.maxPrimaryImpactSeed = [2.0 * Units.mm]
27 icf.maxPrimaryImpact = [2.0 * Units.mm, 2.0 * Units.mm, 10.0 * Units.mm]
28
29 return icf
30
31