Skip to content
Snippets Groups Projects
Commit 03153e37 authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'GRL_evtId64' into 'master'

GoodRunsListSelectorTool.cxx: Do not assign event number to 32-bit integer

See merge request !57026
parents 89fd0f48 a3e07b0b
No related branches found
No related tags found
17 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58835DataQualityConfigurations: Modify L1Calo config for web display,!58791DataQualityConfigurations: Modify L1Calo config for web display,!58373Modification of V2.3 processing to work well with all clients,!58289New NVSI calibration,!58286New NVSI calibration,!58106Update NVSI example algorithm,!57937Draft: New nighlty test for trigger with a Run 4 single muon RDO,!57841Edits to ZDC signal processing in preparation for analysis of data from LHCf run,!57590Fixing LAr DT dumper,!57584Draft: LAr DB fixes,!57316ATR-26311 and ATR-25754 moving one dimuon and few egamma chains from dev to phys or MC,!57090ATLASRECTS-7305: fixes for large cluster building,!57026GoodRunsListSelectorTool.cxx: Do not assign event number to 32-bit integer,!55609Add Athena TEvent-based file access
...@@ -166,10 +166,10 @@ GoodRunsListSelectorTool::passEvent(const EventIDBase& pEvent) ...@@ -166,10 +166,10 @@ GoodRunsListSelectorTool::passEvent(const EventIDBase& pEvent)
{ {
ATH_MSG_DEBUG ("passEvent() "); ATH_MSG_DEBUG ("passEvent() ");
int eventNumber = pEvent.event_number(); auto eventNumber = pEvent.event_number();
int runNumber = pEvent.run_number(); int runNumber = pEvent.run_number();
int lumiBlockNr = pEvent.lumi_block(); int lumiBlockNr = pEvent.lumi_block();
int timeStamp = pEvent.time_stamp(); auto timeStamp = pEvent.time_stamp();
ATH_MSG_DEBUG ("passEvent() :: run number = " << runNumber << ATH_MSG_DEBUG ("passEvent() :: run number = " << runNumber <<
" ; event number = " << eventNumber << " ; event number = " << eventNumber <<
......
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