Skip to content
Snippets Groups Projects

ATR-21896 : Add back vertex building even when no conversions

2 files
+ 13
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -59,8 +59,16 @@ class doBremFinding (egammaRecFlagsJobProperty):
@@ -59,8 +59,16 @@ class doBremFinding (egammaRecFlagsJobProperty):
allowedTypes = ['bool']
allowedTypes = ['bool']
StoredValue = True
StoredValue = True
# Other options
 
class doVertexBuilding (egammaRecFlagsJobProperty):
 
""" switch for whether to do the conversion vertex building
 
"""
 
statusOn = True
 
allowedTypes = ['bool']
 
StoredValue = True
 
 
 
# Other options
class doEgammaTruthAssociation (JobProperty):
class doEgammaTruthAssociation (JobProperty):
""" switch for truth association alg
""" switch for truth association alg
@@ -144,7 +152,7 @@ jobproperties.add_Container(egammaRecFlags)
@@ -144,7 +152,7 @@ jobproperties.add_Container(egammaRecFlags)
# I want always the following flags in the container
# I want always the following flags in the container
_list_Egamma = [Enabled, doEgammaCaloSeeded, doEgammaForwardSeeded,
_list_Egamma = [Enabled, doEgammaCaloSeeded, doEgammaForwardSeeded,
doBremFinding, doConversions,
doBremFinding, doVertexBuilding, doConversions,
cellContainerName, doEgammaTruthAssociation,
cellContainerName, doEgammaTruthAssociation,
clusterCorrectionVersion, calibMVAVersion, doSuperclusters,
clusterCorrectionVersion, calibMVAVersion, doSuperclusters,
inputTopoClusterCollection, egammaTopoClusterCollection]
inputTopoClusterCollection, egammaTopoClusterCollection]
Loading