Skip to content

Commit

Permalink
fix coordinates swap into SiStrip gains payload inspector
Browse files Browse the repository at this point in the history
  • Loading branch information
mmusich committed Dec 1, 2019
1 parent 91be707 commit 22fb33c
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -1324,22 +1324,22 @@ namespace {

if (subid == StripSubdetector::TIB) {
ratios["TIB"]->Fill(ratio);
scatters["TIB"]->Fill(lastmap[index], firstmap[index]);
scatters["TIB"]->Fill(firstmap[index], lastmap[index]);
}

if (subid == StripSubdetector::TOB) {
ratios["TOB"]->Fill(ratio);
scatters["TOB"]->Fill(lastmap[index], firstmap[index]);
scatters["TOB"]->Fill(firstmap[index], lastmap[index]);
}

if (subid == StripSubdetector::TID) {
ratios["TID"]->Fill(ratio);
scatters["TID"]->Fill(lastmap[index], firstmap[index]);
scatters["TID"]->Fill(firstmap[index], lastmap[index]);
}

if (subid == StripSubdetector::TEC) {
ratios["TEC"]->Fill(ratio);
scatters["TEC"]->Fill(lastmap[index], firstmap[index]);
scatters["TEC"]->Fill(firstmap[index], lastmap[index]);
}
}

Expand Down

0 comments on commit 22fb33c

Please sign in to comment.