Skip to content

Commit

Permalink
Turn LogError to LogInfo in case of different number of towers in dat…
Browse files Browse the repository at this point in the history
…a and emulation. The missmatch goes into the DQM histogram towerCountMismatchesPerBx anyhow.
  • Loading branch information
rekovic committed May 11, 2017
1 parent cb8218b commit cb4b9f6
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;
edm::LogInfo("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 cb4b9f6

Please sign in to comment.