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_exp.pl

    r9446 r9452  
    3434# This measures how close it is to what's expected
    3535use constant REJECT_MEAN => {
    36     'bias' => 10,               # Should be fairly flat; some CRs
    37     'dark' => 100,              # Lots of CRs
     36    'bias' => 0,                # Should be fairly flat; some CRs
     37    'dark' => 0,                # Lots of CRs
    3838    'shutter' => 10,            # Should be less than 10 sec
    3939    'flat' => undef             # Can't define expected value (depends on exposure level)
     
    4343# This measures how much variation there is within the components of an exposure, compared to "typical"
    4444use constant REJECT_STDEV => {
    45     'bias' => 10, # Components should have the same degree of variation
    46     'dark' => 10, # Components should have the same degree of variation
     45    'bias' => 0, # Components should have the same degree of variation
     46    'dark' => 0, # Components should have the same degree of variation
    4747    'shutter' => undef,         # Might be significant variation
    48     'flat' => 10 # Components should have the same degree of variation
     48    'flat' => 0 # Components should have the same degree of variation
    4949    };
    5050
     
    5252# This measures how structured the images are, compared to "typical"
    5353use constant REJECT_MEAN_STDEV => {
    54     'bias' => 5,                # All images should be equally structured
    55     'dark' => 5,                # All images should be equally structured
    56     'shutter' => 5,             # All images should be equally structured
    57     'flat' => 5                 # All images should be equally structured
     54    'bias' => 0,                # All images should be equally structured
     55    'dark' => 0,                # All images should be equally structured
     56    'shutter' => 0,             # All images should be equally structured
     57    'flat' => 0                 # All images should be equally structured
    5858    };
    5959
Note: See TracChangeset for help on using the changeset viewer.