Skip to content

Commit

Permalink
74X_HLTrigReport_MTfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Grunewald committed Dec 12, 2015
1 parent ab362f4 commit 75e829f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions HLTrigger/HLTanalyzers/interface/HLTrigReport.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
// class declaration
//

class HLTrigReport : public edm::one::EDAnalyzer<> {
class HLTrigReport : public edm::one::EDAnalyzer<edm::one::WatchRuns,edm::one::WatchLuminosityBlocks> {
private:
enum ReportEvery {
NEVER = 0,
Expand All @@ -45,16 +45,16 @@ class HLTrigReport : public edm::one::EDAnalyzer<> {
static
ReportEvery decode(const std::string & value);

virtual void beginJob();
virtual void endJob();
virtual void beginJob() override;
virtual void endJob() override;

virtual void beginRun(edm::Run const &, edm::EventSetup const&);
virtual void endRun(edm::Run const &, edm::EventSetup const&);
virtual void beginRun(edm::Run const &, edm::EventSetup const&) override;
virtual void endRun(edm::Run const &, edm::EventSetup const&) override;

virtual void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&);
virtual void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&);
virtual void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;
virtual void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;

virtual void analyze(const edm::Event&, const edm::EventSetup&);
virtual void analyze(const edm::Event&, const edm::EventSetup&) override;

void reset(bool changed = false); // reset all counters

Expand Down

0 comments on commit 75e829f

Please sign in to comment.