IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 9, 2006, 5:42:10 PM (20 years ago)
Author:
eugene
Message:

no automatic rejection for now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/detrend_reject_imfile.pl

    r9451 r9452  
    4646    'dark' => 0,                # Dark should be zero
    4747    'shutter' => undef,         # Shutter could be anything (depends on exposure level)
    48     'flat' => undef             # Flat could be anything (depends on exposure level)
     48    'flat' => 0         # Flat could be anything (depends on exposure level)
    4949    };
    5050
     
    5252# This measures how close it is to what's expected
    5353use constant REJECT_INDIVIDUAL_MEAN => {
    54     'bias' => 5,                # Should be fairly flat; some CRs
    55     'dark' => 10,               # Lots of CRs
     54    'bias' => 0,                # Should be fairly flat; some CRs
     55    'dark' => 0,                # Lots of CRs
    5656    'shutter' => undef,         # Can't define expected value (depends on exposure level)
    57     'flat' => undef             # Can't define expected value (depends on exposure level)
     57    'flat' => 0         # Can't define expected value (depends on exposure level)
    5858    };
    5959
     
    6161# This measures how much variation there is in each component
    6262use constant REJECT_INDIVIDUAL_STDEV => {
    63     'bias' => 10,               # Should be fairly flat; some CRs
    64     'dark' => 100,              # Lots of CRs
     63    'bias' => 0,                # Should be fairly flat; some CRs
     64    'dark' => 0,                # Lots of CRs
    6565    'shutter' => undef,         # Can be significant structure
    66     'flat' => 1000              # Stars and galaxies
     66    'flat' => 0        # Stars and galaxies
    6767    };
    6868
     
    7070# This measures how close it is to what's expected
    7171use constant REJECT_SAMPLE_MEAN => {
    72     'bias' => 10,               # Should be little variation between chips
    73     'dark' => 100,              # Could be some glow on some chips
     72    'bias' => 0,                # Should be little variation between chips
     73    'dark' => 0,                # Could be some glow on some chips
    7474    'shutter' => undef,         # Can't define expected value (depends on exposure level)
    75     'flat' => undef             # Can't define expected value (depends on exposure level)
     75    'flat' => 0         # Can't define expected value (depends on exposure level)
    7676    };
    7777
     
    7979# This measures how much variation there is across the components
    8080use constant REJECT_SAMPLE_STDEV => {
    81     'bias' => 10,               # Should be little variation between chips
    82     'dark' => 100,              # Could be some glow on some chips
     81    'bias' => 0,                # Should be little variation between chips
     82    'dark' => 0,                # Could be some glow on some chips
    8383    'shutter' => undef,         # Can be significant structure
    84     'flat' => 500               # Could be features on some chips, but all should be about the same
     84    'flat' => 0                 # Could be features on some chips, but all should be about the same
    8585    };
    8686
Note: See TracChangeset for help on using the changeset viewer.