Skip to content

Commit

Permalink
remove unused vector
Browse files Browse the repository at this point in the history
  • Loading branch information
kpedro88 committed Sep 18, 2023
1 parent d8722ce commit 5576f08
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions RecoHI/HiJetAlgos/plugins/HiPuRhoProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ class HiPuRhoProducer : public edm::stream::EDProducer<> {
std::vector<fastjet::PseudoJet> fjOriginalInputs_; // to back-up unsubtracted fastjet inputs

CaloGeometry const* geo_ = nullptr; // geometry
std::vector<HcalDetId> allgeomid_; // all det ids in the geometry

int ietamax_; // maximum eta in geometry
int ietamin_; // minimum eta in geometry
Expand Down Expand Up @@ -245,7 +244,6 @@ void HiPuRhoProducer::setupGeometryMap(edm::Event& iEvent, const edm::EventSetup
for (auto const& did : alldid) {
if (did.det() == DetId::Hcal) {
HcalDetId hid = HcalDetId(did);
allgeomid_.push_back(did);
towermap_.push_back({hid.ieta(), hid.iphi(), geo_->getPosition(did).eta(), geo_->getPosition(did).phi()});
if (hid.ieta() != ietaold) {
ietaold = hid.ieta();
Expand Down

0 comments on commit 5576f08

Please sign in to comment.