Skip to content

Commit

Permalink
Moving Packet Counters to top of display
Browse files Browse the repository at this point in the history
  • Loading branch information
rrivera747 committed Jul 11, 2024
1 parent 23c935e commit 5f111a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions otsdaq-mu2e/FEInterfaces/DTCFrontEndInterfaceImpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,9 @@ void DTCFrontEndInterface::registerFEMacros(void)
&DTCFrontEndInterface::DTCCounters),
std::vector<std::string>{},
std::vector<std::string>{
"Packet Counters",
"Link Counters",
"Performance Counters",
"Packet Counters"},
"Performance Counters"},
1, // requiredUserPermissions
"*",
"Fetches data from all the counter registers in a human-readable format. "
Expand Down Expand Up @@ -3439,9 +3439,9 @@ void DTCFrontEndInterface::configureHardwareDevMode(__ARGS__)
//========================================================================
void DTCFrontEndInterface::DTCCounters(__ARGS__)
{
__SET_ARG_OUT__("Link Counters", thisDTC_->FormattedRegDump(20, thisDTC_->formattedSERDESCounterFunctions_));
__SET_ARG_OUT__("Performance Counters", thisDTC_->FormattedRegDump(20, thisDTC_->formattedPerformanceCounterFunctions_));
__SET_ARG_OUT__("Packet Counters", thisDTC_->FormattedRegDump(20, thisDTC_->formattedPacketCounterFunctions_));
__SET_ARG_OUT__("Link Counters", thisDTC_->FormattedRegDump(20, thisDTC_->formattedSERDESCounterFunctions_));
__SET_ARG_OUT__("Performance Counters", thisDTC_->FormattedRegDump(20, thisDTC_->formattedPerformanceCounterFunctions_));
} // end DTCCounters()

//========================================================================
Expand Down

0 comments on commit 5f111a9

Please sign in to comment.