IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9452


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

no automatic rejection for now

Location:
trunk/ippScripts/scripts
Files:
2 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
  • 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.