Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Simtrack to GEM/CSC digi and stub matching (CCLUT-4.5) #29830

Merged
merged 4 commits into from
May 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 0 additions & 101 deletions L1Trigger/CSCTriggerPrimitives/interface/CSCComparatorDigiFitter.h

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ bool CSCCathodeLCTProcessor::patternFinding(
hit_layer[this_layer] = true;
layers_hit++; // determines number of layers hit
// add this strip in this layer to the pattern we are currently considering
hits_single_pattern[this_layer][strip_num] = this_strip;
hits_single_pattern[this_layer][strip_num] = this_strip - stagger[this_layer];
}

// find at what bx did pulse on this halsfstrip & layer have started
Expand Down
253 changes: 0 additions & 253 deletions L1Trigger/CSCTriggerPrimitives/src/CSCComparatorDigiFitter.cc

This file was deleted.

2 changes: 2 additions & 0 deletions Validation/MuonCSCDigis/interface/CSCDigiMatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ class CSCDigiMatcher {
void matchStripsToSimTrack(const CSCStripDigiCollection& strips);
void matchWiresToSimTrack(const CSCWireDigiCollection& wires);

void clear();

template <class T>
std::set<unsigned int> selectDetIds(const T& digis, int csc_type) const;

Expand Down
2 changes: 2 additions & 0 deletions Validation/MuonCSCDigis/interface/CSCStubMatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ class CSCStubMatcher {
void matchLCTsToSimTrack(const CSCCorrelatedLCTDigiCollection&);
void matchMPLCTsToSimTrack(const CSCCorrelatedLCTDigiCollection&);

void clear();

edm::EDGetTokenT<CSCCLCTDigiCollection> clctToken_;
edm::EDGetTokenT<CSCALCTDigiCollection> alctToken_;
edm::EDGetTokenT<CSCCorrelatedLCTDigiCollection> lctToken_;
Expand Down
Loading