ATLAS Offline Software
Loading...
Searching...
No Matches
ActsConfigFlags.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.AthConfigFlags import AthConfigFlags
4from AthenaConfiguration.Enums import FlagEnum, LHCPeriod
5
6class SeedingStrategy(FlagEnum):
7 GridTriplet = "GridTriplet"
8 Gbts = "Gbts"
9 GbtsFtf = "GbtsFtf"
10 F150 = "F150"
11
13 Greedy = "GreedySolver"
14 ScoreBased = "ScoreBasedAmbiguitySolver"
15
16# Which implementation to use for space point formation
17# ActsTrk : the Athena implementation
18# ActsCore : the ACTS space point builders, and the only one supporting cosmics
19class SpacePointStrategy(FlagEnum):
20 ActsTrk = "ActsTrk"
21 ActsCore = "ActsCore"
22
23# Define the Ambiguity resolution strategy modes
24# OUTSIDE_TF : run the ambiguity resolution in a separate algorithm
25# END_OF_TF : run the ambiguity resolution at the end of the track finding, on the track candidate container
26# DURING_TF : remove the tracks that share too many hits during track finding, when deciding good candidates
27class AmbiguitySolverMode(FlagEnum):
28 OUTSIDE_TF = 0
29 END_OF_TF = 1
30 DURING_TF = 2
31
32# Define the Pixel cluster calibration error strategy modes (the errors that will be used for filtering)
33# CALIBRATED : load the calibration constants from database
34# PITCH : if we used broad clusters during clustering (so the error is the cluster width) rescale it by the number of pixels
35# to assign the pitch as error to the cluster
36class PixelErrorStrategy(FlagEnum):
37 CALIBRATED = 0
38 PITCH = 1
39
40# Define the Strip clustering errors assigned to the measurements during clustering
41# These errors will be used during track finding
42# PITCH : assign the pitch as cluster error
43# WIDTH : use the cluster width as cluster error
44# TUNED : use an error 1.05 x pitch for 1strip clusters, a 0.27 x width for 2strip clusters and width for >=3strip clusters
46 PITCH = 0
47 WIDTH = 1
48 TUNED = 2
49
50# Define the Strip cluster calibration error strategy modes (the errors that will be used for filtering)
51# CLUSTERING : Use directly the clustering errors
52# PITCH : if we used broad clusters during clustering (so the error is the cluster width) rescale it by the number of pixels
53# to assign the pitch as error to the cluster
54class StripErrorStrategy(FlagEnum):
55 CLUSTERING = 0
56 PITCH = 1
57
58class TrackFitterType(FlagEnum):
59 KalmanFitter = 'KalmanFitter' # default ACTS fitter to choose
60 GaussianSumFitter = 'GaussianSumFitter' # new experimental implementation
61 GlobalChiSquareFitter = 'GlobalChiSquareFitter' # new experimental implementation
62
63# Flag for pixel calibration strategy during track finding
64# - use cluster as is (Uncalibrated)
65# - perform AnalogueClustering either before selecting
66# measurements for extending tracks (AnalogueClusteringBeforeSelection)
67# - or only apply the AnalogueClustering to selected measurements
68# (AnalogueClustering)
69# - or add NN corrections, again either on the selected measurements
70# (NNClustering) or on all candidates (NNClusteringBeforeSelection)
72 Uncalibrated = "Uncalibrated"
73 AnalogueClusteringBeforeSelection = "AnalogueClusteringBeforeSelection"
74 AnalogueClustering = "AnalogueClustering"
75 NNClusteringBeforeSelection = "NNClusteringBeforeSelection"
76 NNClustering = "NNClustering"
77
78 def usesCalibration(self):
79 """whether a calibrator is needed at all"""
80 return self is not PixelCalibrationStrategy.Uncalibrated
81
82 def usesNN(self):
83 """whether NN corrections are applied on top"""
84 return self in (PixelCalibrationStrategy.NNClustering,
85 PixelCalibrationStrategy.NNClusteringBeforeSelection)
86
88 """whether only the selected measurements are calibrated"""
89 return self in (PixelCalibrationStrategy.AnalogueClusteringBeforeSelection,
90 PixelCalibrationStrategy.NNClustering)
91
92# Flag for strip calibration strategy during track finding
93# - use cluster as is (Uncalibrated)
94# - use strip pitch / sqrt(12) as error either before selecting
95# measurements for extending tracks (DigitalCalibrationBeforeSelection)
96# - or only apply it to selected measurements (DigitalCalibration)
98 Uncalibrated = "Uncalibrated"
99 DigitalCalibrationBeforeSelection = "DigitalCalibrationBeforeSelection"
100 DigitalCalibration = "DigitalCalibration"
101
103 """whether a calibrator is needed at all"""
104 return self is not StripCalibrationStrategy.Uncalibrated
105
107 """whether only the selected measurements are calibrated"""
108 return self is StripCalibrationStrategy.DigitalCalibrationBeforeSelection
109
110
112 actscf = AthConfigFlags()
113
114 # General Flags
115 actscf.addFlag('Acts.EDM.PersistifyClusters', lambda pcf: pcf.Acts.EDM.PersistifySpacePoints and not pcf.Tracking.StoreSlimmedDataPreparation)
116 actscf.addFlag('Acts.EDM.PersistifySpacePoints', lambda pcf: pcf.Tracking.StoreSlimmedDataPreparation)
117 actscf.addFlag('Acts.EDM.PersistifyTracks', False)
118 # set to True to use the PhaseII pixel and strip RAW data EDM
119 actscf.addFlag('Acts.EDM.PhaseII', False)
120 actscf.addFlag('Acts.useCache', False)
121 # special persistifications
122 actscf.addFlag('Acts.EDM.SlimContent', lambda pcf: pcf.Tracking.StoreSlimmedDataPreparation)
123
124 # Scheduling
125 from InDetConfig.ITkActsHelpers import primaryPassUsesActs
126 actscf.addFlag('Acts.doITkConversion', lambda pcf: (
127 pcf.Detector.EnableCalo and primaryPassUsesActs(pcf)))
128 actscf.addFlag('Acts.doLargeRadius', True)
129 actscf.addFlag('Acts.doLowPt', False)
130
131 # Geometry Flags
132
133 # MaterialSource can be:
134 # a path to a local JSON file
135 # 'Default' : material map source is evaluated from the geometry tag
136 # 'None' : no material map is provided
137 actscf.addFlag('Acts.TrackingGeometry.MaterialSource', 'Default')
138 actscf.addFlag('Acts.TrackingGeometry.MaterialCalibrationFolder', 'ACTS/MaterialMaps/ITk')
139 actscf.addFlag('Acts.TrackingGeometry.MaterialFileExtension', '')
140 actscf.addFlag('Acts.TrackingGeometry.UseBlueprint', False)
141 actscf.addFlag('Acts.TrackingGeometry.ObjDebugOutput', False)
142 actscf.addFlag('Acts.TrackingGeometry.KeepGoingOnMaterialMergeFailure', False)
143
144
145 actscf.addFlag('Acts.TrackingGeometry.InsertITkPassiveMaterialLayers', False)
146 actscf.addFlag('Acts.TrackingGeometry.PassiveITkInnerPixelBarrelLayerRadii', [70.])
147 actscf.addFlag('Acts.TrackingGeometry.PassiveITkInnerPixelBarrelLayerHalflengthZ', [240.])
148 actscf.addFlag('Acts.TrackingGeometry.PassiveITkInnerPixelBarrelLayerThickness', [1.])
149 actscf.addFlag('Acts.TrackingGeometry.PassiveITkOuterPixelBarrelLayerRadii', [195., 260.])
150 actscf.addFlag('Acts.TrackingGeometry.PassiveITkOuterPixelBarrelLayerHalflengthZ', [370., 370.])
151 actscf.addFlag('Acts.TrackingGeometry.PassiveITkOuterPixelBarrelLayerThickness', [1., 1.])
152 actscf.addFlag('Acts.TrackingGeometry.PassiveITkStripBarrelLayerRadii', [480., 665., 880.])
153 actscf.addFlag('Acts.TrackingGeometry.PassiveITkStripBarrelLayerHalflengthZ', [1370., 1370., 1370.])
154 actscf.addFlag('Acts.TrackingGeometry.PassiveITkStripBarrelLayerThickness', [1., 1., 1.])
155 # Monitoring
156 actscf.addFlag('Acts.doMonitoring', False)
157 actscf.addFlag('Acts.doAnalysis', False)
158 actscf.addFlag('Acts.doAnalysisNtuples', lambda pcf: pcf.Acts.doAnalysis)
159 actscf.addFlag('Acts.Clusters.doAnalysis', lambda pcf: pcf.Acts.doAnalysis)
160 actscf.addFlag('Acts.Seeds.doAnalysis', lambda pcf: pcf.Acts.doAnalysis)
161 actscf.addFlag('Acts.Tracks.doAnalysis', lambda pcf: pcf.Acts.doAnalysis)
162 actscf.addFlag('Acts.Particles.doAnalysis', lambda pcf: pcf.Acts.doAnalysis)
163 actscf.addFlag('Acts.storeTrackStateInfo', False)
164 actscf.addFlag('Acts.doTruthInspection', False)
165 # Save Trk::Track link for combined muon reconstruction, temporary
166 actscf.addFlag('Acts.doxAODToTrkConversion', True)
167
168 # Cluster
169 actscf.addFlag("Acts.Clusters.UseWeightedPosition", False)
170 actscf.addFlag("Acts.Clusters.RetrieveChargeInformation", lambda pcf: not pcf.Tracking.doPixelDigitalClustering)
171 actscf.addFlag("Acts.Clusters.StripClusteringErrorMode", StripClusteringErrorMode.PITCH,type=StripClusteringErrorMode)
172 actscf.addFlag("Acts.Clusters.UsePixelBroadErrors", False)
173
174 # SpacePoint
175 actscf.addFlag('Acts.SpacePoints.useBeamSpotConstraintStrips', True)
176 actscf.addFlag('Acts.SpacePoints.doPixel', lambda pcf: pcf.Detector.EnableITkPixel)
177 actscf.addFlag('Acts.SpacePoints.doStrip', lambda pcf: (
178 pcf.Detector.EnableITkStrip and (
179 not pcf.Tracking.doITkFastTracking or
180 pcf.Acts.doLargeRadius or pcf.Acts.doLowPt or
181 pcf.Acts.doITkConversion)))
182 actscf.addFlag('Acts.SpacePoints.doAnalysis', lambda pcf: pcf.Acts.doAnalysis)
183
184 # Strip and pixel are chosen separately so that either can be validated on its own
185 actscf.addFlag('Acts.SpacePointStrategy', SpacePointStrategy.ActsTrk, type=SpacePointStrategy)
186 actscf.addFlag('Acts.PixelSpacePointStrategy', SpacePointStrategy.ActsTrk, type=SpacePointStrategy)
187
188 # Seeding
189 actscf.addFlag("Acts.Gbts.connectionTable", 'binTables_ITK_RUN4.txt')
190 actscf.addFlag("Acts.Gbts.connectionTableLrt", 'binTables_ITK_RUN4_LRT.txt')
191 actscf.addFlag("Acts.Gbts.dumpGbtsGeometry", False)
192 actscf.addFlag("Acts.Gbts.geometryDump", 'gbts_layer_geometry.txt') # for gbts training tool
193 # Track finding
194 actscf.addFlag('Acts.PixelCalibrationStrategy', PixelCalibrationStrategy.Uncalibrated, type=PixelCalibrationStrategy)
195 actscf.addFlag('Acts.StripCalibrationStrategy', StripCalibrationStrategy.Uncalibrated, type=StripCalibrationStrategy)
196 actscf.addFlag('Acts.doRotCorrection', True)
197 actscf.addFlag('Acts.doPrintTrackStates', False)
198 actscf.addFlag('Acts.skipDuplicateSeeds', True)
199 actscf.addFlag('Acts.doTwoWayCKF', True) # run CKF twice, first with forward propagation with smoothing, then with backward propagation
200 actscf.addFlag('Acts.useStripSeedsFirst', False) # switch order of seed collections
201 actscf.addFlag('Acts.useHGTDClusterInTrackFinding', False) # use HGTD cluster in track finding
202 actscf.addFlag('Acts.branchStopperMeasCutReduce', 2)
203 actscf.addFlag('Acts.branchStopperAbsEtaMeasCut', 1.2)
204 actscf.addFlag('Acts.SeedRefitOutlierChi2Cut', float('inf')) # OutlierChi2Cut for the seed refit Kalman fitter, applied whenever a seed refit is scheduled. inf == disabled.
205 actscf.addFlag('Acts.LrtStripSeedRefit', True) # Toggle the LRT strip-seed refit (KF on strip seeds before CKF).
206 actscf.addFlag('Acts.stripCalibrationIterations', 1) # Strip-SP calibration iterations in TrackParamsEstimationTool (all passes).
207 actscf.addFlag('Acts.forceTrackOnSeed', True) # force track to use the seed measurements; steer from the outside if a setup needs it disabled
208 actscf.addFlag('Acts.PixelNNCalibrationModelsFolder', 'ITkPixelClusterization/nn-01-01-01/') # location of models for pixel ONNX files, extpected content of the foder are: number.onnx, pos1.onnx, pos2.onnx, pos3.onnx
209 # the files are located in /cvmfs/atlas.cern.ch/repo/sw/database/GroupData/
210 # this flag is used only if PixelCalibrationStrategy is one of the NN strategies
211 actscf.addFlag('Acts.refitSeeds', False) # refit seeds for CKF initial parameters
212
213 # Ambiguity resolution
214 actscf.addFlag('Acts.doAmbiguityResolution', False)
215 actscf.addFlag('Acts.AmbiguitySolverStrategy', AmbiguitySolverStrategy.Greedy, type=AmbiguitySolverStrategy) # Define Ambiguity Solver Strategy
216 actscf.addFlag('Acts.AmbiguitySolverMode', lambda pcf: AmbiguitySolverMode.OUTSIDE_TF if pcf.Acts.doAmbiguityResolution else AmbiguitySolverMode.DURING_TF, type=AmbiguitySolverMode)
217
218 # Calibrations
219 actscf.addFlag('Acts.OnTrackCalibration.performCovarianceCalibration', True) # perform calibration of covariance during on track analogue cluster calibration
220
221 # Track fitting
222 actscf.addFlag('Acts.writeTrackCollection', False) # save to file (ESD, AOD) the Resolved and Refitted track collections
223 actscf.addFlag('Acts.fitFromPRD', False) # Acts.writeTrackCollection needs to be True for either cases. If Acts.fitFromPRD is False, fit from ROT; else, fit from PRD
224 actscf.addFlag('Acts.trackFitterType', TrackFitterType.KalmanFitter, type=TrackFitterType) # Define Tracking algorithm for refitting
225
226 # GSF specific flags
227 actscf.addFlag("Acts.GsfRefitLegacyTrk", False) # Refit Legacy tracks using ACTS GSF
228 actscf.addFlag("Acts.GsfRefitActs", lambda pcf:
229 pcf.GeoModel.Run >= LHCPeriod.Run4) # Refit ACTS tracks using ACTS GSF
230 actscf.addFlag("Acts.GsfMaxComponents", 12)
231 actscf.addFlag("Acts.GsfComponentMergeMethod", 'MaxWeight')
232 actscf.addFlag("Acts.GsfDirectNavigation", lambda pcf:
233 pcf.GeoModel.Run >= LHCPeriod.Run4)
234 actscf.addFlag("Acts.GsfOutlierChi2Cut", 1e4) # Effectively no cut. Compatible with legacy
235 actscf.addFlag("Acts.extrapolateElectronsLegacy", lambda pcf:
236 not pcf.Acts.TrackingGeometry.UseBlueprint) # Use legacy calo extrapolation with ACTS tracks
237
238 # Decorations
239 actscf.addFlag('Acts.decoratePRD.sdoSiHit', lambda pcf: pcf.Tracking.doTIDE_AmbiTrackMonitoring)
240
241 # GPU track reconstruction
242 actscf.addFlag("Acts.Device.doCellSorting", True)
243 actscf.addFlag("Acts.Device.doClusterization", False)
244 actscf.addFlag("Acts.Device.doSpacePointFormation", False)
245 actscf.addFlag("Acts.Device.doSeeding", False)
246 actscf.addFlag("Acts.Device.seedingStrategy", SeedingStrategy.GridTriplet, type=SeedingStrategy)
247 actscf.addFlag("Acts.Device.doTrackReconstruction", False)
248
249 # GNN specific flags (scoped)
250 actscf.addFlag("Acts.GNN.Enable", False)
251 actscf.addFlag("Acts.GNN.ModuleMapPath", "<default>")
252 actscf.addFlag("Acts.GNN.ModelPath", "<default>")
253 actscf.addFlag("Acts.GNN.NumTrtContexts", 1)
254 actscf.addFlag("Acts.GNN.MaxGpuInstances", 1)
255 actscf.addFlag("Acts.GNN.VarianceInflation", 1.0)
256 actscf.addFlag("Acts.GNN.TightSeeds", False)
257 actscf.addFlag("Acts.GNN.MinCandidateMeasurements", 7)
258 actscf.addFlag("Acts.GNN.MinDeltaR", 15.0)
259 actscf.addFlag("Acts.GNN.EdgeCut", 0.5)
260 actscf.addFlag("Acts.GNN.RelaxCentralHoleSel", False)
261 actscf.addFlag("Acts.GNN.RelaxMeasurementSel", True)
262 actscf.addFlag("Acts.GNN.OfflineZ0Sel", False)
263
264 return actscf