From 87c184133513980f9f1e3d8b7a4e56bd1113be62 Mon Sep 17 00:00:00 2001 From: Gernot Maier Date: Thu, 8 Feb 2024 10:05:17 +0100 Subject: [PATCH] change warning to min 40 channels --- src/VImageBaseAnalyzer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/VImageBaseAnalyzer.cpp b/src/VImageBaseAnalyzer.cpp index 8e61f005..99624ceb 100644 --- a/src/VImageBaseAnalyzer.cpp +++ b/src/VImageBaseAnalyzer.cpp @@ -1023,8 +1023,8 @@ void VImageBaseAnalyzer::findDeadChans( bool iLowGain, bool iFirst ) if( iFirst ) { - // print warning if more than 30 channels are dead - if( getNDead( iLowGain ) > 30 ) + // print warning if more than 40 channels are dead + if( getNDead( iLowGain ) > 40 ) { cout << "WARNING: number of dead"; if( !iLowGain ) @@ -1035,7 +1035,7 @@ void VImageBaseAnalyzer::findDeadChans( bool iLowGain, bool iFirst ) { cout << " low gain "; } - cout << "channels on telescope " << getTelID() + 1 << " exceeds 30: " << n_dead << endl; + cout << "channels on telescope " << getTelID() + 1 << " exceeds 40: " << n_dead << endl; } // print info when less than 30 channels are dead else