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

fix out of bound error in Phase-2 L1 Calorimeter barrel emulator #46472

Merged
Merged
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
6 changes: 3 additions & 3 deletions L1Trigger/L1CaloTrigger/interface/Phase2L1RCT.h
Original file line number Diff line number Diff line change
Expand Up @@ -1236,16 +1236,16 @@ inline p2eg::clusterInfo p2eg::getBremsValuesPos(p2eg::crystal tempX[p2eg::CRYST
inline p2eg::clusterInfo p2eg::getBremsValuesNeg(p2eg::crystal tempX[p2eg::CRYSTAL_IN_ETA][p2eg::CRYSTAL_IN_PHI],
ap_uint<5> seed_eta,
ap_uint<5> seed_phi) {
ap_uint<12> temp[p2eg::CRYSTAL_IN_ETA + 2][p2eg::CRYSTAL_IN_PHI + 4];
ap_uint<12> temp[p2eg::CRYSTAL_IN_ETA + 2][p2eg::CRYSTAL_IN_PHI + 7];
ap_uint<12> phi0eta[3], phi1eta[3], phi2eta[3], phi3eta[3], phi4eta[3];

ap_uint<12> eta_slice[3];

p2eg::clusterInfo cluster_tmp;

// Initialize all entries in a new ((15+2)x(20+4)) array to be zero.
// Initialize all entries in a new ((15+2)x(20+7)) array to be zero.
for (int i = 0; i < (p2eg::CRYSTAL_IN_ETA + 2); i++) {
for (int j = 0; j < (p2eg::CRYSTAL_IN_PHI + 4); j++) {
for (int j = 0; j < (p2eg::CRYSTAL_IN_PHI + 7); j++) {
temp[i][j] = 0;
}
}
Expand Down