Skip to content
Snippets Groups Projects
Commit bc37a4dc authored by Peter Onyisi's avatar Peter Onyisi
Browse files

Fix ReadHandles for MT data dependency

parent 45dedae4
No related branches found
No related tags found
No related merge requests found
...@@ -76,13 +76,13 @@ private: ...@@ -76,13 +76,13 @@ private:
// storegate keys // storegate keys
SG::ReadHandleKeyArray<InDetTimeCollection> m_InDetTimeCollectionKeys SG::ReadHandleKeyArray<InDetTimeCollection> m_InDetTimeCollectionKeys
{ "TRT_BCID", "SCT_BCID", "PixelBCID", "TRT_LVL1ID", "SCT_LVL1ID", "PixelLVL1ID" } ; { this, "InDetTimeCollectionKeys", {"TRT_BCID", "SCT_BCID", "PixelBCID", "TRT_LVL1ID", "SCT_LVL1ID", "PixelLVL1ID"} } ;
SG::ReadHandleKey<LArFebHeaderContainer> m_LArFebHeaderContainerKey SG::ReadHandleKey<LArFebHeaderContainer> m_LArFebHeaderContainerKey
{ "LArFebHeader" }; { this, "LArFebHeaderKey", "LArFebHeader" };
SG::ReadHandleKey<TileDigitsContainer> m_TileDigitsContainerKey SG::ReadHandleKey<TileDigitsContainer> m_TileDigitsContainerKey
{ "TileDigitsFlt" }; { this, "TileDigitsContainerKey", "TileDigitsFlt" };
SG::ReadHandleKey<RpcPadContainer> m_RpcPadContainerKey SG::ReadHandleKey<RpcPadContainer> m_RpcPadContainerKey
{ "RPCPAD" }; { this, "RpcPadContainerKey", "RPCPAD" };
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
SG::ReadCondHandleKey<AtlasFieldCacheCondObj> m_fieldCondObjInputKey {this, "AtlasFieldCacheCondObj", "fieldCondObj", SG::ReadCondHandleKey<AtlasFieldCacheCondObj> m_fieldCondObjInputKey {this, "AtlasFieldCacheCondObj", "fieldCondObj",
"Name of the Magnetic Field conditions object key"}; "Name of the Magnetic Field conditions object key"};
......
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