Skip to content
Snippets Groups Projects
Commit d41ef26d authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

MuonRPC_CnvTools: Fix uninitialized class member.

Fixes crash seen in reco.


Former-commit-id: 024a6963
parent dcc9438a
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
......@@ -85,7 +85,8 @@ Muon::RpcRdoToPrepDataTool::RpcRdoToPrepDataTool( const std::string& type, const
declareProperty("OutputCollection", m_rdoContainerKey = std::string("RPCPAD"),"RpcPadContainer to retrieve");
declareProperty("TriggerOutputCollection", m_rpcPrepDataContainerKey = std::string("RPC_Measurements"),"Muon::RpcPrepDataContainer to record");
declareProperty("InputCollection", m_rpcCoinDataContainerKey = std::string("RPC_triggerHits"),"Muon::RpcCoinDataContainer to record");
m_rpcCoinDataContainer = nullptr;
}
//___________________________________________________________________________
......
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