Skip to content

Commit

Permalink
code style...
Browse files Browse the repository at this point in the history
  • Loading branch information
quark2 authored and francescobrivio committed Aug 4, 2022
1 parent ef0da84 commit a7d1a5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DQM/GEM/interface/GEMDQMBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ class GEMDQMBase : public DQMEDAnalyzer {
edm::ESGetToken<GEMGeometry, MuonGeometryRecord> geomToken_;

std::vector<GEMDetId> listChamberId_;
std::map<GEMDetId, std::vector<const GEMEtaPartition*>> mapEtaPartition_;
std::map<GEMDetId, std::vector<const GEMEtaPartition *>> mapEtaPartition_;

std::map<ME2IdsKey, bool> MEMap2Check_;
std::map<ME3IdsKey, bool> MEMap2WithEtaCheck_;
Expand Down
2 changes: 1 addition & 1 deletion DQM/GEM/plugins/GEMRecHitSource.cc
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void GEMRecHitSource::analyze(edm::Event const& event, edm::EventSetup const& ev
ME3IdsKey key3{gid.region(), gid.station(), gid.layer()};
ME4IdsKey key4Ch{gid.region(), gid.station(), gid.layer(), gid.chamber()};
MEStationInfo& stationInfo = mapStationInfo_[key3];
for (auto iEta : mapEtaPartition_[gid]) {
for (auto iEta : mapEtaPartition_[gid]) {
GEMDetId eId = iEta->id();
ME3IdsKey key3IEta{gid.region(), gid.station(), eId.ieta()};
ME3IdsKey key3AbsReIEta{std::abs(gid.region()), gid.station(), eId.ieta()};
Expand Down
2 changes: 1 addition & 1 deletion DQM/GEM/src/GEMDQMBase.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ int GEMDQMBase::loadChambers() {
}
}
}

// Borrwed from DQM/GEM/src/GEMOfflineMonitor.cc
nMaxNumCh_ = 0;
for (const GEMRegion* region : GEMGeometry_->regions()) {
Expand Down

0 comments on commit a7d1a5c

Please sign in to comment.