Skip to content
Snippets Groups Projects

CSCSegmValMonAlg: bug fix

Merged Vakhtang Tsulaia requested to merge tsulaia/athena:master-cscsegmvalmonalg into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -249,7 +249,7 @@ StatusCode CSCSegmValMonAlg::fillHistograms(const EventContext& ctx) const{
}
// get no. of strips per cluster
unsigned int clus_noStrips = theClus->rdoList().size();
unsigned int clus_noStrips = theClus ? theClus->rdoList().size() : 0;
//need at least three strips in an eta-cluster
bool clus_eta_status = clus_status && ( clus_noStrips > 2 ) && (clus_measuresPhi == 0);
Loading