@@ -278,7 +278,7 @@ void ITSClusterTask::monitorData(o2::framework::ProcessingContext& ctx)
278278 // filling these anomaly plots once per ROF, ignoring chips w/o long clusters
279279 for (int ichip = 0 ; ichip < ChipBoundary[NLayerIB]; ichip++) {
280280
281- int nLong = TMath::Min (nLongClusters[ichip], 21 );
281+ int nLong = TMath::Min (nLongClusters[ichip], 40 );
282282 if (nLong < 1 ) {
283283 continue ;
284284 }
@@ -462,8 +462,8 @@ void ITSClusterTask::createAllHistos()
462462 continue ;
463463
464464 if (iLayer < NLayerIB) {
465- hLongClustersPerChip[iLayer] = new TH2D (Form (" Anomalies/Layer%d/LongClusters" , iLayer), Form (" Layer%d/LongClusters" , iLayer), ChipBoundary[iLayer + 1 ] - ChipBoundary[iLayer], ChipBoundary[iLayer], ChipBoundary[iLayer + 1 ], 21 , 0 , 21 );
466- hMultPerChipWhenLongClusters[iLayer] = new TH2D (Form (" Anomalies/Layer%d/HitsWhenLongClusters" , iLayer), Form (" Layer%d/HitsWhenLongClusters" , iLayer), ChipBoundary[iLayer + 1 ] - ChipBoundary[iLayer], ChipBoundary[iLayer], ChipBoundary[iLayer + 1 ], 200 , 0 , 20000 );
465+ hLongClustersPerChip[iLayer] = new TH2D (Form (" Anomalies/Layer%d/LongClusters" , iLayer), Form (" Layer%d/LongClusters" , iLayer), ChipBoundary[iLayer + 1 ] - ChipBoundary[iLayer], ChipBoundary[iLayer], ChipBoundary[iLayer + 1 ], 41 , 0 , 41 );
466+ hMultPerChipWhenLongClusters[iLayer] = new TH2D (Form (" Anomalies/Layer%d/HitsWhenLongClusters" , iLayer), Form (" Layer%d/HitsWhenLongClusters" , iLayer), ChipBoundary[iLayer + 1 ] - ChipBoundary[iLayer], ChipBoundary[iLayer], ChipBoundary[iLayer + 1 ], 250 , 0 , 40000 );
467467 addObject (hLongClustersPerChip[iLayer]);
468468 formatAxes (hLongClustersPerChip[iLayer], " Chip ID" , " number of long clusters" , 1 , 1.10 );
469469 hLongClustersPerChip[iLayer]->SetStats (0 );
0 commit comments