Skip to content

Commit

Permalink
Fixed a syntax error (content vs contents)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Michael Slaunwhite committed Nov 13, 2009
1 parent 135163e commit 12c8096
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions DQMOffline/Trigger/src/HLTOverallSummary.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Original Author: Jason Slaunwhite
//
// Created: Thu Jan 22 13:42:28CET 2009
// $Id: HLTOverallSummary.cc,v 1.1 2009/11/12 18:03:19 slaunwhj Exp $
// $Id: HLTOverallSummary.cc,v 1.1 2009/11/13 12:41:24 slaunwhj Exp $
//

// system include files
Expand Down Expand Up @@ -270,13 +270,13 @@ HLTOverallSummary::endRun(const edm::Run& run, const edm::EventSetup& c)

hltQualitySummaryWord->Fill(hltSummaryValue);

reportSummaryMapTH2->SetBinContents(reportSummaryMapTH2->GetBin(1,1), muonValue);
reportSummaryMapTH2->SetBinContents(reportSummaryMapTH2->GetBin(2,1), electronValue);
reportSummaryMapTH2->SetBinContents(reportSummaryMapTH2->GetBin(3,1), photonValue);
reportSummaryMapTH2->SetBinContent(reportSummaryMapTH2->GetBin(1,1), muonValue);
reportSummaryMapTH2->SetBinContent(reportSummaryMapTH2->GetBin(2,1), electronValue);
reportSummaryMapTH2->SetBinContent(reportSummaryMapTH2->GetBin(3,1), photonValue);

CertificationSummaryMapTH2->SetBinContents(CertificationSummaryMapTH2->GetBin(1,1), muonValue);
CertificationSummaryMapTH2->SetBinContents(CertificationSummaryMapTH2->GetBin(2,1), electronValue);
CertificationSummaryMapTH2->SetBinContents(CertificationSummaryMapTH2->GetBin(3,1), photonValue);
CertificationSummaryMapTH2->SetBinContent(CertificationSummaryMapTH2->GetBin(1,1), muonValue);
CertificationSummaryMapTH2->SetBinContent(CertificationSummaryMapTH2->GetBin(2,1), electronValue);
CertificationSummaryMapTH2->SetBinContent(CertificationSummaryMapTH2->GetBin(3,1), photonValue);



Expand Down

0 comments on commit 12c8096

Please sign in to comment.