Skip to content

Commit

Permalink
bug fix for occupancy histograms for RE4
Browse files Browse the repository at this point in the history
  • Loading branch information
acimmino committed Nov 27, 2014
1 parent 63bf2bd commit 9e912ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DQM/RPCMonitorDigi/src/RPCMonitorDigi.cc
Expand Up @@ -410,8 +410,8 @@ void RPCMonitorDigi::performSourceOperation( std::map<RPCDetId , std::vector<RP
os.str("");
os<<"1DOccupancy_Ring_"<<ring;
if ((meWheelDisk[os.str()])){
if (wheelOrDiskNumber > 0 ) meWheelDisk[os.str()]->Fill(wheelOrDiskNumber +3, clusterSize);
else meWheelDisk[os.str()]->Fill(wheelOrDiskNumber + 4, clusterSize);
if (wheelOrDiskNumber > 0 ) {meWheelDisk[os.str()]->Fill(wheelOrDiskNumber + numberOfDisks_, clusterSize);}
else {meWheelDisk[os.str()]->Fill(wheelOrDiskNumber + numberOfDisks_+1, clusterSize);}
}

os.str("");
Expand Down

0 comments on commit 9e912ab

Please sign in to comment.