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

CMS code rules for CSC digi and trigger objects #29782

Closed
wants to merge 12 commits into from
Closed
Prev Previous commit
Next Next commit
bugfix
Sven Dildick committed May 10, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit aa52937571a55ed2cd8d159259493819ce2273e7
4 changes: 2 additions & 2 deletions L1Trigger/CSCTriggerPrimitives/src/CSCCathodeLCTProcessor.cc
Original file line number Diff line number Diff line change
@@ -1216,14 +1216,14 @@ std::vector<CSCCLCTDigi> CSCCathodeLCTProcessor::getCLCTs() const {
// to make a proper comparison with ALCTs we need
// CLCT and ALCT to have the central BX in the same bin
CSCCLCTDigi CSCCathodeLCTProcessor::getBestCLCT(int bx) const {
CSCCLCTDigi lct = CLCTCont()ainer_[bx][0];
CSCCLCTDigi lct = CLCTContainer_[bx][0];
lct.setBX(lct.bx() + alctClctOffset_);
return lct;
}


CSCCLCTDigi CSCCathodeLCTProcessor::getSecondCLCT(int bx) const {
CSCCLCTDgetSecondCLCTCLCTContainer_[bx][1];
CSCCLCTDigi lct = CLCTContainer_[bx][1];
lct.setBX(lct.bx() + alctClctOffset_);
return lct;
}