Skip to content

Commit

Permalink
Turn LogError to LogDebug in case of different number of towers in da…
Browse files Browse the repository at this point in the history
…ta and emulation. The missmatch goes into the DQM histogram towerCountMismatchesPerBx anyhow.
  • Loading branch information
rekovic committed May 15, 2017
1 parent e90a54b commit 22121f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/L1TMonitor/src/L1TdeStage2CaloLayer1.cc
Expand Up @@ -68,7 +68,7 @@ void L1TdeStage2CaloLayer1::analyze(const edm::Event & event, const edm::EventSe
}

if ( dataTowerSet.size() != emulTowerSet.size() ) {
edm::LogError("L1TdeStage2CaloLayer1") << "Data and Emulation have different number of trigger towers! data=" << dataTowerSet.size() << ", emul=" << emulTowerSet.size() << std::endl;
LogDebug("L1TdeStage2CaloLayer1") << "Data and Emulation have different number of trigger towers! data=" << dataTowerSet.size() << ", emul=" << emulTowerSet.size() << std::endl;
towerCountMismatchesPerBx_->Fill(event.bunchCrossing());
return;
}
Expand Down

0 comments on commit 22121f3

Please sign in to comment.