Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Functions
python.ConfigurationHelpers Namespace Reference

Functions

def OnlyTrackingPreInclude (flags)
 
def egammaOnlyFromRaw (flags)
 

Detailed Description

Disable everything but track reconstruction

Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration

Function Documentation

◆ egammaOnlyFromRaw()

def python.ConfigurationHelpers.egammaOnlyFromRaw (   flags)
egammaOnlyFromRaw flags for Reco_tf with CA

Definition at line 3 of file Reconstruction/egamma/egammaConfig/python/ConfigurationHelpers.py.

3 def egammaOnlyFromRaw(flags):
4  """egammaOnlyFromRaw flags for Reco_tf with CA"""
5  flags.Detector.GeometryMuon = False
6  flags.Detector.EnableAFP = False
7  flags.Detector.EnableLucid = False
8  flags.Reco.EnableTrigger = False
9  flags.Reco.EnableCombinedMuon = False
10  flags.Reco.EnablePFlow = False
11  flags.Reco.EnableTau = False
12  flags.Reco.EnableJet = False
13  flags.Reco.EnableBTagging = False
14  flags.Reco.EnableCaloRinger = False
15  flags.Egamma.doTrackThinning = False
16  flags.Reco.PostProcessing.GeantTruthThinning = False
17  flags.Reco.PostProcessing.TRTAloneThinning = False

◆ OnlyTrackingPreInclude()

def python.ConfigurationHelpers.OnlyTrackingPreInclude (   flags)
This will manually disable everything except for tracking.
The purpose is to speed up overall execution by only running 
tracking and nothing else

Definition at line 6 of file InnerDetector/InDetConfig/python/ConfigurationHelpers.py.

6 def OnlyTrackingPreInclude(flags):
7  """
8  This will manually disable everything except for tracking.
9  The purpose is to speed up overall execution by only running
10  tracking and nothing else
11  """
12  flags.Reco.EnableBTagging=False
13  flags.Reco.EnableCombinedMuon=False
14  flags.Reco.EnableEgamma=False
15  flags.Reco.EnableJet=False
16  flags.Reco.EnableTau=False
17  flags.Reco.EnablePFlow=False
18  flags.Reco.EnableTracking=True
19 
20  flags.Detector.EnableCalo=False
21  flags.Detector.EnableMuon=False
22  flags.Detector.EnableForward=False
23 
24  flags.Detector.GeometryLAr=False
25  flags.Detector.GeometryTile=False
26  flags.Detector.GeometryMBTS=False
27  flags.Detector.GeometryCalo=False
28 
29  flags.Detector.GeometryCSC=False
30  flags.Detector.GeometryMDT=False
31  flags.Detector.GeometryRPC=False
32  flags.Detector.GeometryTGC=False
33  flags.Detector.GeometrysTGC=False
34  flags.Detector.GeometryMM=False
35  flags.Detector.GeometryMuon=False
36 
37  flags.Detector.GeometryLucid=False
38  flags.Detector.GeometryZDC=False
39  flags.Detector.GeometryALFA=False
40  flags.Detector.GeometryAFP=False
41  flags.Detector.GeometryFwdRegion=False
42  flags.Detector.GeometryForward=False
python.ConfigurationHelpers.OnlyTrackingPreInclude
def OnlyTrackingPreInclude(flags)
Definition: InnerDetector/InDetConfig/python/ConfigurationHelpers.py:6
python.ConfigurationHelpers.egammaOnlyFromRaw
def egammaOnlyFromRaw(flags)
Definition: Reconstruction/egamma/egammaConfig/python/ConfigurationHelpers.py:3