Skip to content

Commit 7c8f8d2

Browse files
committed
Merged emtfpp_for_13_3_0_pre3 from repository omiguelc with cms-merge-topic
2 parents 5f912ec + e165bad commit 7c8f8d2

30 files changed

+225
-192
lines changed

L1Trigger/L1TGEM/python/me0TriggerPseudoDigis_cff.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@
4242
from RecoLocalMuon.GEMSegment.gemSegments_cfi import *
4343

4444
ge0TriggerPseudoDigiTask = cms.Task(
45-
simMuonME0PseudoReDigisCoarse,
46-
me0RecHitsCoarse,
47-
me0TriggerPseudoDigis,
48-
## need to run the standard ME0 RECO sequence for converted triggers
45+
## need to run the standard GE0 RECO sequence for converted triggers
4946
gemRecHits,
5047
gemSegments,
5148
ge0TriggerConvertedPseudoDigis

L1Trigger/L1TGEM/src/GE0TriggerPseudoBuilder.cc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -149,19 +149,19 @@ ME0TriggerDigi GE0TriggerPseudoBuilder::segmentConversion(const GEMSegment segme
149149
void GE0TriggerPseudoBuilder::dumpAllME0Segments(const GEMSegmentCollection& segments) const {
150150
LogTrace("L1GE0Trigger") << "dumpt all ME0 Segments" << std::endl;
151151
for (auto iC = segments.id_begin(); iC != segments.id_end(); ++iC) {
152-
auto ch_segs = segments.get(*iC);
153-
for (auto iS = ch_segs.first; iS != ch_segs.second; ++iS) {
154-
if (iS->gemDetId().station() != 0) // only dump GE0 segments
155-
continue;
156-
GlobalPoint gp = me0_g->idToDet(iS->gemDetId())->surface().toGlobal(iS->localPosition());
157-
LogTrace("L1ME0Trigger") << "ME0Detid " << iS->gemDetId() << " segment " << *iS << " eta " << gp.eta() << " phi "
158-
<< gp.phi() << std::endl;
159-
auto recHits(iS->recHits());
160-
LogTrace("L1GE0Trigger") << "\t has " << recHits.size() << " me0 rechits" << std::endl;
161-
for (auto& rh : recHits) {
162-
const GEMRecHit* me0rh(dynamic_cast<const GEMRecHit*>(rh));
163-
LogTrace("L1GEMTrigger") << "\t detid " << me0rh->gemId() << " rechit " << *me0rh << std::endl;
164-
}
165-
}
152+
auto ch_segs = segments.get(*iC);
153+
for (auto iS = ch_segs.first; iS != ch_segs.second; ++iS) {
154+
if (iS->gemDetId().station() != 0) // only dump GE0 segments
155+
continue;
156+
GlobalPoint gp = me0_g->idToDet(iS->gemDetId())->surface().toGlobal(iS->localPosition());
157+
LogTrace("L1ME0Trigger") << "ME0Detid " << iS->gemDetId() << " segment " << *iS << " eta " << gp.eta() << " phi "
158+
<< gp.phi() << std::endl;
159+
auto recHits(iS->recHits());
160+
LogTrace("L1GE0Trigger") << "\t has " << recHits.size() << " me0 rechits" << std::endl;
161+
for (auto& rh : recHits) {
162+
const GEMRecHit* me0rh(dynamic_cast<const GEMRecHit*>(rh));
163+
LogTrace("L1GEMTrigger") << "\t detid " << me0rh->gemId() << " rechit " << *me0rh << std::endl;
164+
}
165+
}
166166
}
167167
}

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/CSCTPCollector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace emtf::phase2 {
1111
public:
1212
explicit CSCTPCollector(const EMTFContext&, edm::ConsumesCollector&);
1313

14-
~CSCTPCollector() = default;
14+
~CSCTPCollector() override = default;
1515

1616
void collect(const edm::Event&, BXTPCMap&) const final;
1717

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/CSCTPConverter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace emtf::phase2 {
1414
public:
1515
explicit CSCTPConverter(const EMTFContext&, const int&, const int&);
1616

17-
~CSCTPConverter() = default;
17+
~CSCTPConverter() override = default;
1818

1919
void convert(const TriggerPrimitive&, const TPInfo&, EMTFHit&) const final;
2020

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/CSCTPSelector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace emtf::phase2 {
1212
public:
1313
explicit CSCTPSelector(const EMTFContext&, const int&, const int&);
1414

15-
~CSCTPSelector() = default;
15+
~CSCTPSelector() override = default;
1616

1717
void select(const TriggerPrimitive&, TPInfo, ILinkTPCMap&) const final;
1818

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/GE0TPCollector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace emtf::phase2 {
1111
public:
1212
explicit GE0TPCollector(const EMTFContext&, edm::ConsumesCollector&);
1313

14-
~GE0TPCollector() = default;
14+
~GE0TPCollector() override = default;
1515

1616
void collect(const edm::Event&, BXTPCMap&) const final;
1717

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/GE0TPConverter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace emtf::phase2 {
1212
public:
1313
explicit GE0TPConverter(const EMTFContext&, const int&, const int&);
1414

15-
~GE0TPConverter() = default;
15+
~GE0TPConverter() override = default;
1616

1717
void convert(const TriggerPrimitive&, const TPInfo&, EMTFHit&) const final;
1818

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/GE0TPSelector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace emtf::phase2 {
1212
public:
1313
explicit GE0TPSelector(const EMTFContext&, const int&, const int&);
1414

15-
~GE0TPSelector() = default;
15+
~GE0TPSelector() override = default;
1616

1717
void select(const TriggerPrimitive&, TPInfo, ILinkTPCMap&) const final;
1818

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/GEMTPCollector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace emtf::phase2 {
1111
public:
1212
explicit GEMTPCollector(const EMTFContext&, edm::ConsumesCollector&);
1313

14-
~GEMTPCollector() = default;
14+
~GEMTPCollector() override = default;
1515

1616
void collect(const edm::Event&, BXTPCMap&) const final;
1717

L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/GEMTPConverter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace emtf::phase2 {
1212
public:
1313
explicit GEMTPConverter(const EMTFContext&, const int&, const int&);
1414

15-
~GEMTPConverter() = default;
15+
~GEMTPConverter() override = default;
1616

1717
void convert(const TriggerPrimitive&, const TPInfo&, EMTFHit&) const final;
1818

0 commit comments

Comments
 (0)