Skip to content

Commit 7a42fe8

Browse files
authored
Update TPCPadBitMap.cxx
1 parent bbf5b11 commit 7a42fe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/GPUTracking/DataTypes/TPCPadBitMap.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ TPCPadBitMap::TPCPadBitMap(const o2::tpc::CalDet<bool>& map) : TPCPadBitMap()
4040
void TPCPadBitMap::setFromMap(const o2::tpc::CalDet<bool>& map)
4141
{
4242
for (int32_t sector = 0; sector < o2::tpc::constants::MAXSECTOR; sector++) {
43-
for (int32_t p = 0; p < TPC_PADS_IN_SECTOR; p++) {
43+
for (int32_t p = 0; p < TPC_REAL_PADS_IN_SECTOR; p++) {
4444
const auto val = map.getValue(sector, p);
4545
mBitMap[sector].set(p, val);
4646
}

0 commit comments

Comments
 (0)