From cd99957cdd2b6f2f9e9630359957d9af0f352048 Mon Sep 17 00:00:00 2001 From: Antoni Shtipliyski Date: Fri, 25 Aug 2017 21:37:27 +0200 Subject: [PATCH] Apply patch with changes suggested by cmsbuild. --- DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h | 6 +++--- DQM/L1TMonitor/interface/L1TdeStage2CaloLayer2.h | 4 ++-- .../interface/L1TStage2CaloLayer2DEClient.h | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h b/DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h index 41880cb466ecb..49d28cf138766 100644 --- a/DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h +++ b/DQM/L1TMonitor/interface/L1TStage2CaloLayer2.h @@ -28,9 +28,9 @@ class L1TStage2CaloLayer2 : public DQMEDAnalyzer { protected: void analyze(const edm::Event& e, const edm::EventSetup& c) override; - virtual void dqmBeginRun(const edm::Run&, const edm::EventSetup&) override; - virtual void bookHistograms(DQMStore::IBooker&, const edm::Run&, const edm::EventSetup&) override ; - virtual void beginLuminosityBlock(const edm::LuminosityBlock&, const edm::EventSetup&) override; + void dqmBeginRun(const edm::Run&, const edm::EventSetup&) override; + void bookHistograms(DQMStore::IBooker&, const edm::Run&, const edm::EventSetup&) override ; + void beginLuminosityBlock(const edm::LuminosityBlock&, const edm::EventSetup&) override; private: diff --git a/DQM/L1TMonitor/interface/L1TdeStage2CaloLayer2.h b/DQM/L1TMonitor/interface/L1TdeStage2CaloLayer2.h index b009900b1ef05..7c744a4167e32 100644 --- a/DQM/L1TMonitor/interface/L1TdeStage2CaloLayer2.h +++ b/DQM/L1TMonitor/interface/L1TdeStage2CaloLayer2.h @@ -59,7 +59,7 @@ class L1TdeStage2CaloLayer2 : public DQMEDAnalyzer { * * @return void */ - virtual void bookHistograms (DQMStore::IBooker&, + void bookHistograms (DQMStore::IBooker&, const edm::Run&, const edm::EventSetup&) override; @@ -75,7 +75,7 @@ class L1TdeStage2CaloLayer2 : public DQMEDAnalyzer { * * @return void */ - virtual void analyze (const edm::Event&, const edm::EventSetup&) override; + void analyze (const edm::Event&, const edm::EventSetup&) override; private: diff --git a/DQM/L1TMonitorClient/interface/L1TStage2CaloLayer2DEClient.h b/DQM/L1TMonitorClient/interface/L1TStage2CaloLayer2DEClient.h index 54263ba6c92c5..717710176c1e6 100644 --- a/DQM/L1TMonitorClient/interface/L1TStage2CaloLayer2DEClient.h +++ b/DQM/L1TMonitorClient/interface/L1TStage2CaloLayer2DEClient.h @@ -11,13 +11,13 @@ class L1TStage2CaloLayer2DEClient: public DQMEDHarvester { L1TStage2CaloLayer2DEClient(const edm::ParameterSet&); - virtual ~L1TStage2CaloLayer2DEClient(); + ~L1TStage2CaloLayer2DEClient() override; protected: - virtual void dqmEndJob(DQMStore::IBooker &ibooker, + void dqmEndJob(DQMStore::IBooker &ibooker, DQMStore::IGetter &igetter) override; - virtual void dqmEndLuminosityBlock(DQMStore::IBooker &ibooker, + void dqmEndLuminosityBlock(DQMStore::IBooker &ibooker, DQMStore::IGetter &igetter, const edm::LuminosityBlock& lumiSeg, const edm::EventSetup& c) override;