Skip to content
Snippets Groups Projects

Update L1Calo dq algorithm (L1Calo_BinsDiffFromStripMedian) and config

Merged Will Buttinger requested to merge will/athena:24.0-l1caloDQAlgo into 24.0
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -193,7 +193,7 @@ dqm_algorithms::L1Calo_BinsDiffFromStripMedian::execute(const std::string & nam
for(size_t i = 0;i<stripsVariance.size();i++) {
if (testDeadStrips && stripsVariance.at(i) == 0 && stripsAvg.at(i) == 0) {
// only dead if at least one of the neighbour strips has enough entries in it
if( (i>0 && (stripsAvg.at(i-1)*stripsN.at(i-1))>deadStripsThreshold) || (i<stripsVariance.size()-1 && (stripsAvg.at(i+1)*stripsN.at(i+1))>deadStripsThreshold)) {
if( (i>0 && (stripsAvg.at(i-1)*stripsN.at(i-1))>=minStat) || (i<stripsVariance.size()-1 && (stripsAvg.at(i+1)*stripsN.at(i+1))>=minStat)) {
result->tags_[TString::Format("_DeadStrip%02ld", i+1).Data()] = histogram->GetXaxis()->GetBinCenter(range[0] + i);
counts["NDeadStrip"]++;
}
Loading