Skip to content

Commit

Permalink
change warning to min 40 channels
Browse files Browse the repository at this point in the history
  • Loading branch information
GernotMaier committed Feb 8, 2024
1 parent d993716 commit 87c1841
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/VImageBaseAnalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand All @@ -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
Expand Down

0 comments on commit 87c1841

Please sign in to comment.