Draft: Updated setting of originalName in JetAnalysisConfig for PHYSLITE
While running on PHYSLITE inputs, the self.jetCollection
property is actually assumed to be set to AnalysisJets
or AnalysisLargeRJets
, as illustrated in https://gitlab.cern.ch/atlas/athena/-/blob/main/PhysicsAnalysis/Algorithms/JetAnalysisAlgorithms/python/JetAnalysisConfig.py#L110
jetCollectionName=self.jetCollection
if(self.jetCollection=="AnalysisJets") :
jetCollectionName="AntiKt4EMPFlowJets"
if(self.jetCollection=="AnalysisLargeRJets") :
jetCollectionName="AntiKt10UFOCSSKSoftDropBeta100Zcut10Jets"
This MR updates the setting of the originalName
property to reflect this.