Changeset 9337
- Timestamp:
- Oct 5, 2006, 5:17:26 PM (20 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 7 edited
-
detrend_norm_calc.pl (modified) (1 diff)
-
detrend_process_imfile.pl (modified) (1 diff)
-
detrend_reject_exp.pl (modified) (3 diffs)
-
detrend_reject_imfile.pl (modified) (5 diffs)
-
detrend_resid.pl (modified) (2 diffs)
-
detrend_stack.pl (modified) (1 diff)
-
phase0_exp.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_norm_calc.pl
r9202 r9337 40 40 'bias' => 0, 41 41 'dark' => 0, 42 'shutter' => 0, 42 43 'flat' => 1 43 44 }; -
trunk/ippScripts/scripts/detrend_process_imfile.pl
r9224 r9337 40 40 # Recipes to use, as a function of the detrend type 41 41 use constant RECIPES => { 42 'bias' => 'PPIMAGE_O', # Overscan only 43 'dark' => 'PPIMAGE_OB', # Overscan and bias only 44 'flat' => 'PPIMAGE_OBD', # Overscan, bias and dark only 42 'bias' => 'PPIMAGE_O', # Overscan only 43 'dark' => 'PPIMAGE_OB', # Overscan and bias only 44 'shutter' => 'PPIMAGE_OBD', # Overscan, bias and dark only 45 'flat' => 'PPIMAGE_OBDS', # Overscan, bias, dark and shutter only 45 46 }; 46 47 -
trunk/ippScripts/scripts/detrend_reject_exp.pl
r9288 r9337 36 36 'bias' => 10, # Should be fairly flat; some CRs 37 37 'dark' => 100, # Lots of CRs 38 'shutter' => 10, # Should be less than 10 sec 38 39 'flat' => undef # Can't define expected value (depends on exposure level) 39 40 }; … … 44 45 'bias' => 10, # Components should have the same degree of variation 45 46 'dark' => 10, # Components should have the same degree of variation 47 'shutter' => undef, # Might be significant variation 46 48 'flat' => 10 # Components should have the same degree of variation 47 49 }; … … 52 54 'bias' => 5, # All images should be equally structured 53 55 'dark' => 5, # All images should be equally structured 56 'shutter' => 5, # All images should be equally structured 54 57 'flat' => 5 # All images should be equally structured 55 58 }; -
trunk/ippScripts/scripts/detrend_reject_imfile.pl
r9286 r9337 45 45 'bias' => 0, # Bias should be zero 46 46 'dark' => 0, # Dark should be zero 47 'shutter' => undef, # Shutter could be anything (depends on exposure level) 47 48 'flat' => undef # Flat could be anything (depends on exposure level) 48 49 }; … … 53 54 'bias' => 5, # Should be fairly flat; some CRs 54 55 'dark' => 10, # Lots of CRs 56 'shutter' => undef, # Can't define expected value (depends on exposure level) 55 57 'flat' => undef # Can't define expected value (depends on exposure level) 56 58 }; … … 61 63 'bias' => 10, # Should be fairly flat; some CRs 62 64 'dark' => 100, # Lots of CRs 65 'shutter' => undef, # Can be significant structure 63 66 'flat' => 1000 # Stars and galaxies 64 67 }; … … 69 72 'bias' => 10, # Should be little variation between chips 70 73 'dark' => 100, # Could be some glow on some chips 74 'shutter' => undef, # Can't define expected value (depends on exposure level) 71 75 'flat' => undef # Can't define expected value (depends on exposure level) 72 76 }; … … 77 81 'bias' => 10, # Should be little variation between chips 78 82 'dark' => 100, # Could be some glow on some chips 83 'shutter' => undef, # Can be significant structure 79 84 'flat' => 500 # Could be features on some chips, but all should be about the same 80 85 }; -
trunk/ippScripts/scripts/detrend_resid.pl
r9259 r9337 48 48 'bias' => 'PPIMAGE_B', # Bias only 49 49 'dark' => 'PPIMAGE_D', # Dark only 50 'shutter' => 'PPIMAGE_S', # Shutter only 50 51 'flat' => 'PPIMAGE_F', # Flat-field only 51 52 }; … … 55 56 'bias' => '-bias', # Specify the bias frame 56 57 'dark' => '-dark', # Specify the dark frame 58 'shutter' => '-shutter', # Specify the shutter frame 57 59 'flat' => '-flat', # Specify the flat frame 58 60 }; -
trunk/ippScripts/scripts/detrend_stack.pl
r9266 r9337 43 43 'bias' => 'PPMERGE_BIAS', 44 44 'dark' => 'PPMERGE_DARK', 45 'shutter' => 'PPMERGE_SHUTTER', 45 46 'flat' => 'PPMERGE_FLAT' 46 47 }; -
trunk/ippScripts/scripts/phase0_exp.pl
r9268 r9337 28 28 # Define setup 29 29 use constant TYPE => "exp_type"; # Observation type keyword 30 use constant DETRENDS => [ "bias", "dark", " flat", "fringe" ]; # Observation types to mark as detrend30 use constant DETRENDS => [ "bias", "dark", "shutter", "flat", "fringe" ]; # Observation types to mark as detrend 31 31 use constant DETREND_FLAG => "-detrend"; # Flag to use to mark detrend exposure 32 32
Note:
See TracChangeset
for help on using the changeset viewer.
