Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mariadalfonso committed Mar 14, 2021
1 parent f1dfd44 commit b1df50f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions RecoHGCal/TICL/plugins/SeedingRegionByHF.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using namespace ticl;

SeedingRegionByHF::SeedingRegionByHF(const edm::ParameterSet &conf, edm::ConsumesCollector &sumes)
: SeedingRegionAlgoBase(conf, sumes),
HFhits_token_(sumes.consumes<HFRecHitCollection>(conf.getParameter<edm::InputTag>("hits"))),
hfhits_token_(sumes.consumes<HFRecHitCollection>(conf.getParameter<edm::InputTag>("hits"))),
minAbsEta_(conf.getParameter<double>("minAbsEta")),
maxAbsEta_(conf.getParameter<double>("maxAbsEta")),
minEt_(conf.getParameter<double>("minEt")) {
Expand All @@ -22,7 +22,7 @@ void SeedingRegionByHF::initialize(const edm::EventSetup &es) { geometry_ = &es.
void SeedingRegionByHF::makeRegions(const edm::Event &ev,
const edm::EventSetup &es,
std::vector<TICLSeedingRegion> &result) {
const auto &recHits = ev.get(HFhits_token_);
const auto &recHits = ev.get(hfhits_token_);

for (const auto &erh : recHits) {
const HcalDetId &detid = (HcalDetId)erh.detid();
Expand Down
2 changes: 1 addition & 1 deletion RecoHGCal/TICL/plugins/SeedingRegionByHF.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace ticl {
private:
void buildFirstLayers();

edm::EDGetTokenT<HFRecHitCollection> HFhits_token_;
edm::EDGetTokenT<HFRecHitCollection> hfhits_token_;

int algoVerbosity_ = 0;

Expand Down

0 comments on commit b1df50f

Please sign in to comment.