Skip to content

Commit d926b7a

Browse files
author
Sunanda
committed
Avoid conflict with #47589
1 parent 9421c77 commit d926b7a

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

RecoLocalCalo/HGCalRecAlgos/interface/RecHitTools.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ namespace hgcal {
5959

6060
bool isSilicon(const DetId&) const;
6161
bool isScintillator(const DetId&) const;
62-
bool isScintillatorFine(const DetId&) const;
6362

6463
bool isOnlySilicon(const unsigned int layer) const;
6564

@@ -84,7 +83,6 @@ namespace hgcal {
8483
return (nose ? maxNumberOfWafersNose_ : maxNumberOfWafersPerLayer_);
8584
}
8685
inline int getScintMaxIphi() const { return bhMaxIphi_; }
87-
int getScintMaxIphi(const DetId& id) const;
8886
inline int getGeometryType() const { return geometryType_; }
8987
bool maskCell(const DetId& id, int corners = 3) const;
9088

RecoLocalCalo/HGCalRecAlgos/src/RecHitTools.cc

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -482,15 +482,6 @@ bool RecHitTools::isSilicon(const DetId& id) const {
482482

483483
bool RecHitTools::isScintillator(const DetId& id) const { return id.det() == DetId::HGCalHSc; }
484484

485-
bool RecHitTools::isScintillatorFine(const DetId& id) const {
486-
if (id.det() == DetId::HGCalHSc) {
487-
auto hg = static_cast<const HGCalGeometry*>(getSubdetectorGeometry(id));
488-
return hg->topology().dddConstants().scintFine(HGCScintillatorDetId(id).layer());
489-
} else {
490-
return false;
491-
}
492-
}
493-
494485
bool RecHitTools::isOnlySilicon(const unsigned int layer) const {
495486
// HFnose TODO
496487
bool isonlysilicon = (layer % bhLastLayer_) < bhOffset_;
@@ -544,15 +535,6 @@ std::pair<uint32_t, uint32_t> RecHitTools::firstAndLastLayer(DetId::Detector det
544535
}
545536
}
546537

547-
int RecHitTools::getScintMaxIphi(const DetId& id) const {
548-
if (id.det() == DetId::HGCalHSc) {
549-
auto hg = static_cast<const HGCalGeometry*>(getSubdetectorGeometry(id));
550-
return hg->topology().dddConstants().maxCells(HGCScintillatorDetId(id).layer(), true);
551-
} else {
552-
return 0;
553-
}
554-
}
555-
556538
bool RecHitTools::maskCell(const DetId& id, int corners) const {
557539
if (id.det() == DetId::Hcal) {
558540
return false;

0 commit comments

Comments
 (0)