Skip to content
Snippets Groups Projects

Adding skeleton of L0 Muon RPC sim

Merged Stefano Rosati requested to merge rosati/athena:l0MuonRpc into main
12 unresolved threads

Adding a first version of the stage-1 simulation alg for the L0 muon barrel trigger, based on RPC.

The package includes the skeleton of an alg, to be completed with the actual implementation of the coincidences, and the initial preparation of the RoI container to be exchanged with the MDT TP simulation.

A configuration is also included.

Edited by Stefano Rosati

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef L0MUONRPCSIM_H
5 #define L0MUONRPCSIM_H
6
7 #include "AthenaBaseComps/AthReentrantAlgorithm.h"
8 #include "AthenaMonitoringKernel/Monitored.h"
9 #include "AthenaKernel/IAthRNGSvc.h"
10
11 #include "StoreGate/ReadHandleKey.h"
12 #include "xAODMuonRDO/NRPCRDOContainer.h"
13 #include "xAODTrigger/MuonRoIContainer.h"
14 #include "MuonDigitContainer/RpcDigitContainer.h"
15 #include "MuonCablingData/RpcCablingMap.h"
16
17 namespace L0Muon {
  • 1 /*
    2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
    3 */
    4 #ifndef L0MUONRPCSIM_H
    5 #define L0MUONRPCSIM_H
    6
    7 #include "AthenaBaseComps/AthReentrantAlgorithm.h"
    8 #include "AthenaMonitoringKernel/Monitored.h"
    9 #include "AthenaKernel/IAthRNGSvc.h"
  • 1 /*
    2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
    3 */
    4 #ifndef L0MUONRPCSIM_H
  • 1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
    2
    3 atlas_subdir ( L0MuonS1RPC )
    4
    5 find_package( CLHEP )
  • 1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
    2
    3 atlas_subdir ( L0MuonS1RPC )
    4
    5 find_package( CLHEP )
    6
    7 atlas_add_component (L0MuonS1RPC
    8 src/*.cxx src/components/*.cxx
    9 INCLUDE_DIRS ${CLHEP_INCLUDE_DIRS}
    10 LINK_LIBRARIES AnaAlgorithmLib AthenaKernel xAODMuonRDO MuonDigitContainer xAODTrigger AthenaMonitoringKernelLib
  • 20
    21 ATH_CHECK(m_keyRpcRdo.initialize());
    22 ATH_CHECK(m_keyRpcDigit.initialize());
    23 ATH_CHECK(m_cablingKey.initialize());
    24
    25 /// container of output RoIs
    26 ATH_CHECK(m_outputMuonRoIKey.initialize());
    27
    28 /// retrieve the monitoring tool
    29 if (!m_monTool.empty()) ATH_CHECK(m_monTool.retrieve());
    30
    31 return StatusCode::SUCCESS;
    32 }
    33
    34
    35 StatusCode L0MuonRPCSim::finalize() {
  • 32 }
    33
    34
    35 StatusCode L0MuonRPCSim::finalize() {
    36 ATH_MSG_INFO ("Finalizing " << name() << "...");
    37 return StatusCode::SUCCESS;
    38 }
    39
    40
    41 StatusCode L0MuonRPCSim::execute(const EventContext& ctx) const {
    42 ATH_MSG_DEBUG ("Executing " << name() << "...");
    43
    44 SG::ReadHandle<xAOD::NRPCRDOContainer> rpcRdo_handle(m_keyRpcRdo,ctx);
    45 const xAOD::NRPCRDOContainer* inputRDO = rpcRdo_handle.cptr();
    46 if ( not inputRDO ) {
    47 ATH_MSG_FATAL("Unable to retrieve input RPC RDO container: " << m_keyRpcRdo.key());
  • 30
    31 return StatusCode::SUCCESS;
    32 }
    33
    34
    35 StatusCode L0MuonRPCSim::finalize() {
    36 ATH_MSG_INFO ("Finalizing " << name() << "...");
    37 return StatusCode::SUCCESS;
    38 }
    39
    40
    41 StatusCode L0MuonRPCSim::execute(const EventContext& ctx) const {
    42 ATH_MSG_DEBUG ("Executing " << name() << "...");
    43
    44 SG::ReadHandle<xAOD::NRPCRDOContainer> rpcRdo_handle(m_keyRpcRdo,ctx);
    45 const xAOD::NRPCRDOContainer* inputRDO = rpcRdo_handle.cptr();
  • 43
    44 SG::ReadHandle<xAOD::NRPCRDOContainer> rpcRdo_handle(m_keyRpcRdo,ctx);
    45 const xAOD::NRPCRDOContainer* inputRDO = rpcRdo_handle.cptr();
    46 if ( not inputRDO ) {
    47 ATH_MSG_FATAL("Unable to retrieve input RPC RDO container: " << m_keyRpcRdo.key());
    48 return StatusCode::FAILURE;
    49 }
    50 ATH_MSG_DEBUG("Number of RPC RDO: " << inputRDO->size());
    51
    52 SG::ReadCondHandle cablingMap{m_cablingKey, ctx};
    53 ATH_CHECK(cablingMap.isValid());
    54
    55 /// monitor RDO quantities
    56 if ( !m_monTool.empty() ) {
    57
    58 auto n_of_RDO = Monitored::Scalar<unsigned int>("n_of_RDO",inputRDO->size());
  • 54
    55 /// monitor RDO quantities
    56 if ( !m_monTool.empty() ) {
    57
    58 auto n_of_RDO = Monitored::Scalar<unsigned int>("n_of_RDO",inputRDO->size());
    59
    60 }
    61
    62
    63 /// output RoIs container
    64 SG::WriteHandle<xAOD::MuonRoIContainer> outputRoI_handle(m_outputMuonRoIKey, ctx);
    65 ATH_CHECK(outputRoI_handle.record(std::make_unique<xAOD::MuonRoIContainer>(), std::make_unique<xAOD::MuonRoIAuxContainer>()));
    66 auto outputRoIs = outputRoI_handle.ptr();
    67
    68 /// Create an RoI
    69 outputRoIs->push_back(std::make_unique<xAOD::MuonRoI>());
  • 51
    52 SG::ReadCondHandle cablingMap{m_cablingKey, ctx};
    53 ATH_CHECK(cablingMap.isValid());
    54
    55 /// monitor RDO quantities
    56 if ( !m_monTool.empty() ) {
    57
    58 auto n_of_RDO = Monitored::Scalar<unsigned int>("n_of_RDO",inputRDO->size());
    59
    60 }
    61
    62
    63 /// output RoIs container
    64 SG::WriteHandle<xAOD::MuonRoIContainer> outputRoI_handle(m_outputMuonRoIKey, ctx);
    65 ATH_CHECK(outputRoI_handle.record(std::make_unique<xAOD::MuonRoIContainer>(), std::make_unique<xAOD::MuonRoIAuxContainer>()));
    66 auto outputRoIs = outputRoI_handle.ptr();
    Please register or sign in to reply
    Loading