Skip to content
Snippets Groups Projects

Make number of bunch crossings for RPC L1 simulation configurable

Merged Savanna Shaw requested to merge sshaw/athena:rpc-config into 24.0
All threads resolved!
3 files
+ 19
0
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -52,6 +52,13 @@ StatusCode RpcDigitToRpcRDO::initialize() {
for (const std::string& statName : m_exclStat) {
m_exclStatNames.insert(m_idHelperSvc->rpcIdHelper().stationNameIndex(statName));
}
if(m_nobxs>8){
//The RPC simulation uses many arrays that assume maximum 8 BCs are readout
//See TrigT1/TrigT1RPChardware/Matrix.h for example
ATH_MSG_ERROR("Readout of more than 8 BCs is not supported by the simulation");
return StatusCode::FAILURE;
}
return StatusCode::SUCCESS;
}
Loading