We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d434f6 + f51a8dd commit effdb02Copy full SHA for effdb02
DataFormats/Detectors/ITSMFT/common/include/DataFormatsITSMFT/NoiseMap.h
@@ -205,8 +205,8 @@ class NoiseMap
205
NoiseMap merge(NoiseMap* prev)
206
{
207
int incre = 0;
208
- for (size_t i = 0; i < (int)mNoisyPixels.size(); ++i) {
209
- for (const auto& prev_np : prev->mNoisyPixels[i]) { // only enters this for loop if the "i" chip exists.
+ for (size_t i = 0; i < (int)mNoisyPixels.size(); ++i) {
+ for (const auto& prev_np : prev->mNoisyPixels[i]) { // only enters this for loop if the "i" chip exists.
210
bool existsInCurrentMap = false;
211
for (const auto& current_np : mNoisyPixels[i]) {
212
if (prev_np.first == current_np.first) {
0 commit comments