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

Updated HLTTau validation to include legs X in tau+X triggers #10260

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions DQMOffline/Trigger/src/HLTTauDQML1Plotter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ void HLTTauDQML1Plotter::analyze( const edm::Event& iEvent, const edm::EventSetu
edm::LogWarning("HLTTauDQMOffline") << "HLTTauDQML1Plotter::analyze: unable to read L1 jet collection " << l1ExtraJets_.encode();
}

if(met.isValid()) {
if(met.isValid() && met.product()->size() > 0) {
if(!doRefAnalysis_) {
if( met.product()->begin()->et() > l1ETMMin_) l1etmEt_->Fill(met.product()->begin()->et());
}
Expand Down Expand Up @@ -306,7 +306,7 @@ void HLTTauDQML1Plotter::analyze( const edm::Event& iEvent, const edm::EventSetu
}
}

if(met.isValid()) {
if(met.isValid() && met.product()->size() > 0) {
l1etmEt_->Fill(met.product()->begin()->et());
l1etmPhi_->Fill(met.product()->begin()->phi());

Expand Down