Skip to content

Commit

Permalink
Merge pull request #342 from gartung/Alignment-OfflineValidation-add-…
Browse files Browse the repository at this point in the history
…override

override keywords added by the clang extras utility cpp11-migrate --add-override
  • Loading branch information
ktf committed Aug 15, 2013
2 parents 7e68a66 + 46e9f6e commit d486c89
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
Expand Up @@ -74,9 +74,9 @@ class CosmicSplitterValidation : public edm::EDAnalyzer {


private:
virtual void beginJob();
virtual void analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup);
virtual void endJob() ;
virtual void beginJob() override;
virtual void analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup) override;
virtual void endJob() override ;

bool is_gold_muon(const edm::Event& e);

Expand Down
6 changes: 3 additions & 3 deletions Alignment/OfflineValidation/plugins/EopTreeWriter.cc
Expand Up @@ -72,9 +72,9 @@ class EopTreeWriter : public edm::EDAnalyzer {


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

double getDistInCM(double eta1, double phi1, double eta2, double phi2);

Expand Down
Expand Up @@ -76,7 +76,7 @@ class TrackerGeometryIntoNtuples : public edm::EDAnalyzer {


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

void addBranches();

Expand Down
Expand Up @@ -191,8 +191,8 @@ class TrackerOfflineValidation : public edm::EDAnalyzer {
//
// ------------- private member function -------------
//
virtual void analyze(const edm::Event&, const edm::EventSetup&);
virtual void endJob();
virtual void analyze(const edm::Event&, const edm::EventSetup&) override;
virtual void endJob() override;

virtual void checkBookHists(const edm::EventSetup& setup);

Expand Down
Expand Up @@ -98,8 +98,8 @@ class TrackerOfflineValidationSummary : public edm::EDAnalyzer {
HarvestingHistos harvestingHistos;
};

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

void fillTree(TTree& tree, std::map<int, TrackerOfflineValidationSummary::ModuleHistos>& moduleHist,
TkOffTreeVariables& treeMem, const TrackerGeometry& tkgeom,
Expand Down
Expand Up @@ -44,9 +44,9 @@ class Tracker_OldtoNewConverter : public edm::EDAnalyzer {


private:
virtual void beginJob();
virtual void analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup);
virtual void endJob() ;
virtual void beginJob() override;
virtual void analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup) override;
virtual void endJob() override ;

void createMap();
void addBranches();
Expand Down

0 comments on commit d486c89

Please sign in to comment.