IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 20, 2024, 1:42:34 PM (2 years ago)
Author:
eugene
Message:

merge changes from trunk: improvements to ippCheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20230313/ippTests/ippCheck/camstats.pro

    r42125 r42629  
    216216 vstat -q numFound; $Nfound = $TOTAL
    217217 vstat -q numGood;  $Ngood  = $TOTAL
    218  
    219  fprintf "%d of %d total sources detected, %d unmasked" $Nfound $Ntotal $Ngood
     218 vstat -q numPoss;  $Nposs  = $TOTAL
     219 
     220 fprintf "%d of %d total sources detected, %d unmasked and %d possible" $Nfound $Ntotal $Ngood $Nposs
     221
     222 subset tmp = numTotal  where (magBin > 15) && (magBin < 20); vstat -q tmp; $numBrightTotal  = $TOTAL
     223 subset tmp = numPoss  where (magBin > 15) && (magBin < 20); vstat -q tmp; $numBrightPoss  = $TOTAL
     224 subset tmp = numFound where (magBin > 15) && (magBin < 20); vstat -q tmp; $numBrightFound = $TOTAL
     225 subset tmp = numGood  where (magBin > 15) && (magBin < 20); vstat -q tmp; $numBrightGood  = $TOTAL
     226
     227 fprintf "%d of %d total bright sources detected, %d unmasked and %d possible" $numBrightFound $numBrightTotal $numBrightGood $numBrightPoss
     228
    220229
    221230 legend.init 0.02 0.95 0.03 0.02
Note: See TracChangeset for help on using the changeset viewer.