Skip to content

Commit

Permalink
Ran second auto formatter tool (cms-sw#154)
Browse files Browse the repository at this point in the history
* Ran second auto formatter tool

* tweak
  • Loading branch information
tomalin committed May 31, 2022
1 parent 6fb3326 commit 218f2c5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions L1Trigger/TrackFindingTracklet/src/FitTrack.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "L1Trigger/TrackFindingTracklet/interface/Tracklet.h"
#include "L1Trigger/TrackFindingTracklet/interface/Stub.h"
#include "L1Trigger/TrackFindingTracklet/interface/StubStreamData.h"
#include "DataFormats/L1TrackTrigger/interface/TTBV.h"

#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Utilities/interface/Exception.h"
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/TrackFindingTracklet/test/ProducerIRin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ namespace trklet {
~ProducerIRin() override {}

private:
virtual void beginRun(const Run&, const EventSetup&) override;
virtual void produce(Event&, const EventSetup&) override;
void beginRun(const Run&, const EventSetup&) override;
void produce(Event&, const EventSetup&) override;
virtual void endJob() {}
// ED input token of DTC Stubs
EDGetTokenT<TTDTC> edGetTokenTTDTC_;
Expand Down
8 changes: 4 additions & 4 deletions L1Trigger/TrackTrigger/test/AnalyzerClusterStub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ class AnalyzerClusterStub : public edm::EDAnalyzer {
public:
/// Constructor/destructor
explicit AnalyzerClusterStub(const edm::ParameterSet& iConfig);
virtual ~AnalyzerClusterStub();
~AnalyzerClusterStub() override;
// Typical methods used on Loops over events
virtual void beginJob();
virtual void endJob();
virtual void analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup);
void beginJob() override;
void endJob() override;
void analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) override;

/// Private methods and variables
private:
Expand Down
8 changes: 4 additions & 4 deletions L1Trigger/TrackTrigger/test/AnalyzerPrintGeomInfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ class AnalyzerPrintGeomInfo : public edm::EDAnalyzer {
public:
/// Constructor/destructor
explicit AnalyzerPrintGeomInfo(const edm::ParameterSet& iConfig);
virtual ~AnalyzerPrintGeomInfo();
~AnalyzerPrintGeomInfo() override;
// Typical methods used on Loops over events
virtual void beginJob();
virtual void endJob();
virtual void analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup);
void beginJob() override;
void endJob() override;
void analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) override;

/// Private methods and variables
private:
Expand Down
8 changes: 4 additions & 4 deletions L1Trigger/TrackTrigger/test/AnalyzerSimHitMaps.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ class AnalyzerSimHitMaps : public edm::EDAnalyzer {
public:
/// Constructor/destructor
explicit AnalyzerSimHitMaps(const edm::ParameterSet& iConfig);
virtual ~AnalyzerSimHitMaps();
~AnalyzerSimHitMaps() override;
// Typical methods used on Loops over events
virtual void beginJob();
virtual void endJob();
virtual void analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup);
void beginJob() override;
void endJob() override;
void analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) override;

/// Private methods and variables
private:
Expand Down

0 comments on commit 218f2c5

Please sign in to comment.