Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove std::cout calls in TriggerMenuParser::parseEnergySumZdc #42749

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions L1Trigger/L1TGlobal/plugins/TriggerMenuParser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2410,10 +2410,9 @@ bool l1t::TriggerMenuParser::parseEnergySumZdc(L1TUtmCondition condEnergySumZdc,
std::string type = l1t2string(condEnergySumZdc.getType());
std::string name = l1t2string(condEnergySumZdc.getName());

std::cout << "\n ****************************************** "
//LogDebug("TriggerMenuParser") << "\n ****************************************** "
<< "\n (in parseEnergySumZdc) "
<< "\n condition = " << condition << "\n type = " << type << "\n name = " << name << std::endl;
LogDebug("TriggerMenuParser")
<< "\n ******************************************\n (in parseEnergySumZdc)\n condition = " << condition
<< "\n type = " << type << "\n name = " << name;

// determine object type
GlobalObject energySumObjType;
Expand Down Expand Up @@ -2486,12 +2485,9 @@ bool l1t::TriggerMenuParser::parseEnergySumZdc(L1TUtmCondition condEnergySumZdc,
objParameter[cnt].etHighThreshold = upperThresholdInd;

// Output for debugging
std::cout
<< "\n EnergySumZdc ET high threshold (hex) for energy sum object "
<< cnt
//LogDebug("TriggerMenuParser") << "\n EnergySumZdc ET high threshold (hex) for energy sum object " << cnt
<< " = " << std::hex << objParameter[cnt].etLowThreshold << " - " << objParameter[cnt].etHighThreshold
<< std::dec << std::endl;
LogDebug("TriggerMenuParser") << "\n EnergySumZdc ET high threshold (hex) for energy sum object " << cnt
<< " = " << std::hex << objParameter[cnt].etLowThreshold << " - "
<< objParameter[cnt].etHighThreshold << std::dec;

cnt++;
} //end loop over objects
Expand Down