Skip to content

Commit

Permalink
Merge pull request #18703 from rekovic/pr92x-L1T-Silence-UnpackerCalo…
Browse files Browse the repository at this point in the history
…Layer1-DQMCaloLayer1

Pr92x L1T UnpackerCaloLayer1 & DQMCaloLayer1 Adjust for Non-present FED data in MC
  • Loading branch information
davidlange6 committed May 16, 2017
2 parents f7b2983 + a422632 commit e0c1840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
Expand Up @@ -168,7 +168,7 @@ L1TCaloLayer1RawToDigi::produce(Event& iEvent, const EventSetup& iSetup)
const uint64_t *fedRawDataArray = (const uint64_t *) fedRawData.data();

if ( fedRawData.size() == 0 || fedRawDataArray == nullptr ) {
LogError("L1TCaloLayer1RawToDigi") << "Could not load FED data for " << fed << ", putting empty collections!";
LogDebug("L1TCaloLayer1RawToDigi") << "Could not load FED data for " << fed << ", putting empty collections!";
continue;
}

Expand Down

0 comments on commit e0c1840

Please sign in to comment.