Changeset 9452
- Timestamp:
- Oct 9, 2006, 5:42:10 PM (20 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 2 edited
-
detrend_reject_exp.pl (modified) (3 diffs)
-
detrend_reject_imfile.pl (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_reject_exp.pl
r9446 r9452 34 34 # This measures how close it is to what's expected 35 35 use constant REJECT_MEAN => { 36 'bias' => 10, # Should be fairly flat; some CRs37 'dark' => 100, # Lots of CRs36 'bias' => 0, # Should be fairly flat; some CRs 37 'dark' => 0, # Lots of CRs 38 38 'shutter' => 10, # Should be less than 10 sec 39 39 'flat' => undef # Can't define expected value (depends on exposure level) … … 43 43 # This measures how much variation there is within the components of an exposure, compared to "typical" 44 44 use constant REJECT_STDEV => { 45 'bias' => 10, # Components should have the same degree of variation46 'dark' => 10, # Components should have the same degree of variation45 'bias' => 0, # Components should have the same degree of variation 46 'dark' => 0, # Components should have the same degree of variation 47 47 'shutter' => undef, # Might be significant variation 48 'flat' => 10 # Components should have the same degree of variation48 'flat' => 0 # Components should have the same degree of variation 49 49 }; 50 50 … … 52 52 # This measures how structured the images are, compared to "typical" 53 53 use constant REJECT_MEAN_STDEV => { 54 'bias' => 5, # All images should be equally structured55 'dark' => 5, # All images should be equally structured56 'shutter' => 5, # All images should be equally structured57 'flat' => 5# All images should be equally structured54 '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 58 58 }; 59 59 -
trunk/ippScripts/scripts/detrend_reject_imfile.pl
r9451 r9452 46 46 'dark' => 0, # Dark should be zero 47 47 '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) 49 49 }; 50 50 … … 52 52 # This measures how close it is to what's expected 53 53 use constant REJECT_INDIVIDUAL_MEAN => { 54 'bias' => 5, # Should be fairly flat; some CRs55 'dark' => 10, # Lots of CRs54 'bias' => 0, # Should be fairly flat; some CRs 55 'dark' => 0, # Lots of CRs 56 56 '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) 58 58 }; 59 59 … … 61 61 # This measures how much variation there is in each component 62 62 use constant REJECT_INDIVIDUAL_STDEV => { 63 'bias' => 10, # Should be fairly flat; some CRs64 'dark' => 100, # Lots of CRs63 'bias' => 0, # Should be fairly flat; some CRs 64 'dark' => 0, # Lots of CRs 65 65 'shutter' => undef, # Can be significant structure 66 'flat' => 1000# Stars and galaxies66 'flat' => 0 # Stars and galaxies 67 67 }; 68 68 … … 70 70 # This measures how close it is to what's expected 71 71 use constant REJECT_SAMPLE_MEAN => { 72 'bias' => 10, # Should be little variation between chips73 'dark' => 100, # Could be some glow on some chips72 'bias' => 0, # Should be little variation between chips 73 'dark' => 0, # Could be some glow on some chips 74 74 '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) 76 76 }; 77 77 … … 79 79 # This measures how much variation there is across the components 80 80 use constant REJECT_SAMPLE_STDEV => { 81 'bias' => 10, # Should be little variation between chips82 'dark' => 100, # Could be some glow on some chips81 'bias' => 0, # Should be little variation between chips 82 'dark' => 0, # Could be some glow on some chips 83 83 'shutter' => undef, # Can be significant structure 84 'flat' => 500# Could be features on some chips, but all should be about the same84 'flat' => 0 # Could be features on some chips, but all should be about the same 85 85 }; 86 86
Note:
See TracChangeset
for help on using the changeset viewer.
