Re-introduce the doDataScouting method into muCalStreamerTool
2 unresolved threads
2 unresolved threads
I re-introduced the doDataScouting method into muCalStreamerTool following Frank's suggestion in the JIRA ticket ATR-30979.
Edited by Frank Winklmeier
Merge request reports
Activity
Filter activity
assigned to @zyan
This merge request affects 1 package:
- Trigger/TrigAlgorithms/TrigL2MuonSA
This merge request affects 3 files:
- Trigger/TrigAlgorithms/TrigL2MuonSA/src/MuCalStreamerTool.cxx
- Trigger/TrigAlgorithms/TrigL2MuonSA/src/MuCalStreamerTool.h
- Trigger/TrigAlgorithms/TrigL2MuonSA/src/MuFastSteering.cxx
added 24.0 Trigger review-pending-level-1 labels
248 // fill the local buffer 249 // dump the words also in the local buffer 250 // dump the encoded event to the screen 251 ATH_MSG_DEBUG("Size of the DATASCOUTING buffer in 32 bits words: " << eventSize32bits); 252 for ( uint16_t words = 0 ; words != eventSize32bits ; words++) { 253 uint32_t byte1 = buff_ds[words*4]; 254 uint32_t byte2 = buff_ds[words*4 + 1]; 255 uint32_t byte3 = buff_ds[words*4 + 2]; 256 uint32_t byte4 = buff_ds[words*4 + 3]; 257 258 // encoding in big-endian for now ( revert order for little-endian ) 259 uint32_t dataWord = (byte4 << 24) + (byte3 << 16) + (byte2 << 8) + byte1 ; 260 // std::cout << "Number of data words: " << words << std::endl; 261 ATH_MSG_DEBUG("Data word " << words << " = " << std::hex << "0x" << dataWord << std::dec); 262 263 m_localBuffer.push_back(dataWord); Where is this
m_localBuffer
even used? Aren't you also still missing changes in MuFastSteering that access this buffer? E.g. what used to be here: !41461 (diffs)
CI Result SUCCESS (hash 13e85818)Athena externals cmake make tests Full details available on this CI monitor view. Check the JIRA CI status board for known problems
Athena: number of compilation errors 0, warnings 1
For experts only: Jenkins output (remote access info)added review-user-action-required label and removed review-pending-level-1 label
Please register or sign in to reply