Skip to content
Snippets Groups Projects
Commit c44ce4b9 authored by Thomas Owen James's avatar Thomas Owen James :speech_balloon:
Browse files

potential fix for warning test enable bit not being removed

parent 2e5b9081
No related branches found
No related tags found
2 merge requests!59CMSSW json file,!31potential fix for warning test enable bit not being removed
Pipeline #4547331 passed
......@@ -81,7 +81,7 @@ inline std::pair<uint32_t, bool> StreamProcessor::ProcessOrbitHeader(char* rd_pt
//save warning_test_enable bit
bool warning_test_enable = bool{(orbitN & (1 << 31)) == (1 << 31)};
//remove warning_test_enable bit from orbit header
orbitN &= 0x8fffffff;
orbitN &= 0x7fffffff;
std::pair<uint32_t, bool> orbit_header = std::pair<uint32_t, bool>{orbitN, warning_test_enable};
return orbit_header;
}
......
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