Skip to content
Snippets Groups Projects
Commit 4dc29d89 authored by Alexander MAZUROV's avatar Alexander MAZUROV
Browse files

Cosmetic changes

parent 575236a1
No related branches found
No related tags found
No related merge requests found
......@@ -469,18 +469,18 @@ private:
template <typename T> inline
void JEPSimMon::dumpDataAndSim(const std::string& msg, const std::map<int, T*>& data,
const std::map<int, T*>& sim) {
if (m_debug) {
ATH_MSG_DEBUG(msg);
for (const auto& p : data) {
ATH_MSG_DEBUG(" DAT " << *p.second);
auto itSim = sim.find(p.first);
if (itSim != sim.end()) {
ATH_MSG_DEBUG(" SIM " << *itSim->second << std::endl);
}
if (!m_debug) return;
ATH_MSG_DEBUG(msg);
for (const auto& p : data) {
ATH_MSG_DEBUG(" DAT " << *p.second);
auto itSim = sim.find(p.first);
if (itSim != sim.end()) {
ATH_MSG_DEBUG(" SIM " << *itSim->second << std::endl);
}
ATH_MSG_DEBUG("End Compare");
}
}
ATH_MSG_DEBUG("End Compare");
}
} // end namespace
......
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