Skip to content
Snippets Groups Projects
Commit e139464d authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'digi/aliases' into 'master'

Remove some of the aliases from PileUpEventLoopMgr

See merge request atlas/athena!22757
parents ab8d3ae4 33e83410
No related branches found
No related tags found
No related merge requests found
...@@ -440,11 +440,8 @@ StatusCode PileUpEventLoopMgr::nextEvent(int maxevt) ...@@ -440,11 +440,8 @@ StatusCode PileUpEventLoopMgr::nextEvent(int maxevt)
} }
ATH_MSG_INFO ( "set aliases" ); ATH_MSG_INFO ( "set aliases" );
CHECK(m_evtStore->setAlias(pOverEvent, "EventInfo"));
//add an alias to "OverlayEvent" (backward compatibility) //add an alias to "OverlayEvent" (backward compatibility)
CHECK(m_evtStore->setAlias(pOverEvent, "OverlayEvent")); CHECK(m_evtStore->setAlias(pOverEvent, "OverlayEvent"));
//add an alias to "MyEvent" (backward compatibility)
CHECK(m_evtStore->setAlias(pOverEvent, "MyEvent"));
//FIXME at this point one may want to look into the original event //FIXME at this point one may want to look into the original event
//FIXME to decide whether to skip it or to do the pile-up //FIXME to decide whether to skip it or to do the pile-up
......
...@@ -55,6 +55,7 @@ def createOutputStream( streamName, fileName = "", asAlg = False, noTag = False, ...@@ -55,6 +55,7 @@ def createOutputStream( streamName, fileName = "", asAlg = False, noTag = False,
from .OutputStreamAthenaPoolConf import MakeEventStreamInfo from .OutputStreamAthenaPoolConf import MakeEventStreamInfo
streamInfoTool = MakeEventStreamInfo( streamName + "_MakeEventStreamInfo" ) streamInfoTool = MakeEventStreamInfo( streamName + "_MakeEventStreamInfo" )
streamInfoTool.Key = streamName streamInfoTool.Key = streamName
streamInfoTool.EventInfoKey = eventInfoKey
outputStream.HelperTools = [ streamInfoTool ] outputStream.HelperTools = [ streamInfoTool ]
# Set the list of transient items based on what we know is in the transient # Set the list of transient items based on what we know is in the transient
......
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