Skip to content

Commit

Permalink
committing changes to comply with code-check
Browse files Browse the repository at this point in the history
  • Loading branch information
fabferro committed Aug 21, 2017
1 parent 73775ee commit e129a76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions RecoCTPPS/PixelLocal/interface/CTPPSPixelRecHitProducer.h
Expand Up @@ -32,9 +32,9 @@ class CTPPSPixelRecHitProducer : public edm::stream::EDProducer<>
public:
explicit CTPPSPixelRecHitProducer(const edm::ParameterSet& param);

~CTPPSPixelRecHitProducer();
~CTPPSPixelRecHitProducer() override;

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

static void fillDescriptions(edm::ConfigurationDescriptions & descriptions);

Expand Down
2 changes: 1 addition & 1 deletion RecoCTPPS/PixelLocal/plugins/CTPPSPixelRecHitProducer.cc
Expand Up @@ -27,7 +27,7 @@ void CTPPSPixelRecHitProducer::produce(edm::Event& iEvent, const edm::EventSetup
edm::DetSetVector<CTPPSPixelRecHit> output;

// run reconstruction
if (rpCl->size())
if (!rpCl->empty())
run(*rpCl, output);

iEvent.put(std::make_unique<edm::DetSetVector<CTPPSPixelRecHit> >(output));
Expand Down

0 comments on commit e129a76

Please sign in to comment.