Skip to content

Commit

Permalink
clang check RecoLocalFastTime
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlange6 committed Oct 9, 2017
1 parent a37ee8e commit 2b66cd2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ class FTLSimpleRecHitAlgo : public FTLRecHitAlgoBase {
calibration_( conf.getParameter<double>("calibrationConstant") ) { }

/// Destructor
virtual ~FTLSimpleRecHitAlgo() { }
~FTLSimpleRecHitAlgo() override { }

/// get event and eventsetup information
virtual void getEvent(const edm::Event&) override final {}
virtual void getEventSetup(const edm::EventSetup&) override final {}
void getEvent(const edm::Event&) final {}
void getEventSetup(const edm::EventSetup&) final {}

/// make the rec hit
virtual FTLRecHit makeRecHit(const FTLUncalibratedRecHit& uRecHit, uint32_t& flags ) const override final;
FTLRecHit makeRecHit(const FTLUncalibratedRecHit& uRecHit, uint32_t& flags ) const final;

private:
double thresholdToKeep_, calibration_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ class FTLSimpleUncalibRecHitAlgo : public FTLUncalibratedRecHitAlgoBase {
}

/// Destructor
virtual ~FTLSimpleUncalibRecHitAlgo() { }
~FTLSimpleUncalibRecHitAlgo() override { }

/// get event and eventsetup information
virtual void getEvent(const edm::Event&) override final {}
virtual void getEventSetup(const edm::EventSetup&) override final {}
void getEvent(const edm::Event&) final {}
void getEventSetup(const edm::EventSetup&) final {}

/// make the rec hit
virtual FTLUncalibratedRecHit makeRecHit(const FTLDataFrame& dataFrame ) const override final;
FTLUncalibratedRecHit makeRecHit(const FTLDataFrame& dataFrame ) const final;

private:
double adcLSB_, toaLSBToNS_, timeError_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class FTLRecHitProducer : public edm::stream::EDProducer<> {

public:
explicit FTLRecHitProducer(const edm::ParameterSet& ps);
~FTLRecHitProducer();
virtual void produce(edm::Event& evt, const edm::EventSetup& es) override;
~FTLRecHitProducer() override;
void produce(edm::Event& evt, const edm::EventSetup& es) override;

private:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class FTLUncalibratedRecHitProducer : public edm::stream::EDProducer<> {

public:
explicit FTLUncalibratedRecHitProducer(const edm::ParameterSet& ps);
~FTLUncalibratedRecHitProducer();
virtual void produce(edm::Event& evt, const edm::EventSetup& es) override;
~FTLUncalibratedRecHitProducer() override;
void produce(edm::Event& evt, const edm::EventSetup& es) override;

private:

Expand Down

0 comments on commit 2b66cd2

Please sign in to comment.