Skip to content
Snippets Groups Projects

Re-introduce the doDataScouting method into muCalStreamerTool

Open Zhen Yan requested to merge zyan/athena:dataScouting2025 into 24.0
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

Members who can merge are allowed to add commits.

Pipeline #11096147 passed

Pipeline passed for 13e85818 on zyan:dataScouting2025

Approval is optional
Merge blocked: 1 check failed
Unresolved discussions must be resolved.

Merge details

  • The source branch is 279 commits behind the target branch.
  • 1 commit and 1 merge commit will be added to 24.0 (squashes 2 commits).
  • Source branch will be deleted.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
121 121
122 122
123 123 // local buffer for the TrigComposite object
124 int m_localBufferSize = 0;
125 std::vector<int> m_localBuffer;
124 mutable uint32_t m_localBufferSize = 0;
  • 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);
  • :white_check_mark: CI Result SUCCESS (hash 13e85818)

    Athena
    externals :white_check_mark:
    cmake :white_check_mark:
    make :warning:
    tests :white_check_mark:

    Full details available on this CI monitor view. Check the JIRA CI status board for known problems
    :warning: Athena: number of compilation errors 0, warnings 1
    :pencil: For experts only: Jenkins output (remote access info)

  • Please register or sign in to reply
    Loading