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

Merge branch 'config.RpcRawDataMonitoring-20180326' into 'master'

RpcRawDataMonitoring:  Allow MuCTPI_RDO to be missing in RCPStandaloneTracksMon.

See merge request atlas/athena!10030
parents cbb0572a 74c56cdc
No related branches found
No related tags found
No related merge requests found
...@@ -863,6 +863,13 @@ StatusCode RPCStandaloneTracksMon::fillHistograms() ...@@ -863,6 +863,13 @@ StatusCode RPCStandaloneTracksMon::fillHistograms()
std::list<muctpi_rdo> muctpi_rdo_roi_list; std::list<muctpi_rdo> muctpi_rdo_roi_list;
muctpi_rdo_roi_list.clear(); muctpi_rdo_roi_list.clear();
SG::ReadHandle<MuCTPI_RDO> muctpiRDO(m_muCTPI_RDO_key); SG::ReadHandle<MuCTPI_RDO> muctpiRDO(m_muCTPI_RDO_key);
if (!muctpiRDO.isValid()) {
// FIXME: q222 was building a configuration in which this monitoring
// tool is enabled without the MuCTPI_RDO being available.
// Remove this once that is fixed.
ATH_MSG_WARNING ( "Cannot retrieve the MuCTPI" );
return StatusCode::SUCCESS;
}
// Create some dummy LVL1 muon thresholds: // Create some dummy LVL1 muon thresholds:
std::vector< TrigConf::TriggerThreshold* > dummy_thresholds; std::vector< TrigConf::TriggerThreshold* > dummy_thresholds;
......
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