Skip to content
Snippets Groups Projects
Commit d09846e9 authored by scott snyder's avatar scott snyder
Browse files

InDetBeamSpotService: Properly configure Beampos folder.

Include the className= argument in addFolder calls for Beampos.
Fixes test failures in AthenaPoolTest in master.
parent 22912bc4
No related branches found
No related tags found
No related merge requests found
......@@ -6,12 +6,12 @@ try:
from RecExConfig.RecFlags import rec
# If express processing, point beam spot to online folder results
if(rec.doExpressProcessing()):
conddb.addFolder('INDET_ONL','/Indet/Onl/Beampos <key>/Indet/Beampos</key>')
conddb.addFolder('INDET_ONL','/Indet/Onl/Beampos <key>/Indet/Beampos</key>', className='AthenaAttributeList')
else:
conddb.addFolderSplitOnline("INDET","/Indet/Onl/Beampos","/Indet/Beampos")
conddb.addFolderSplitOnline("INDET","/Indet/Onl/Beampos","/Indet/Beampos", className='AthenaAttributeList')
except ImportError:
# Protection for AthSimulationBase release which does not contain RecExConfig
conddb.addFolderSplitOnline("INDET","/Indet/Onl/Beampos","/Indet/Beampos")
conddb.addFolderSplitOnline("INDET","/Indet/Onl/Beampos","/Indet/Beampos", className='AthenaAttributeList')
#Code to help transition to MT system, remove once this package is removed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment