IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9337


Ignore:
Timestamp:
Oct 5, 2006, 5:17:26 PM (20 years ago)
Author:
Paul Price
Message:

Adding shutter measurement.

Location:
trunk/ippScripts/scripts
Files:
7 edited

Legend:

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

    r9202 r9337  
    4040    'bias' => 0,
    4141    'dark' => 0,
     42    'shutter' => 0,
    4243    'flat' => 1
    4344    };
  • trunk/ippScripts/scripts/detrend_process_imfile.pl

    r9224 r9337  
    4040# Recipes to use, as a function of the detrend type
    4141use 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
    4546};
    4647
  • trunk/ippScripts/scripts/detrend_reject_exp.pl

    r9288 r9337  
    3636    'bias' => 10,               # Should be fairly flat; some CRs
    3737    'dark' => 100,              # Lots of CRs
     38    'shutter' => 10,            # Should be less than 10 sec
    3839    'flat' => undef             # Can't define expected value (depends on exposure level)
    3940    };
     
    4445    'bias' => 10, # Components should have the same degree of variation
    4546    'dark' => 10, # Components should have the same degree of variation
     47    'shutter' => undef,         # Might be significant variation
    4648    'flat' => 10 # Components should have the same degree of variation
    4749    };
     
    5254    'bias' => 5,                # All images should be equally structured
    5355    'dark' => 5,                # All images should be equally structured
     56    'shutter' => 5,             # All images should be equally structured
    5457    'flat' => 5                 # All images should be equally structured
    5558    };
  • trunk/ippScripts/scripts/detrend_reject_imfile.pl

    r9286 r9337  
    4545    'bias' => 0,                # Bias should be zero
    4646    'dark' => 0,                # Dark should be zero
     47    'shutter' => undef,         # Shutter could be anything (depends on exposure level)
    4748    'flat' => undef             # Flat could be anything (depends on exposure level)
    4849    };
     
    5354    'bias' => 5,                # Should be fairly flat; some CRs
    5455    'dark' => 10,               # Lots of CRs
     56    'shutter' => undef,         # Can't define expected value (depends on exposure level)
    5557    'flat' => undef             # Can't define expected value (depends on exposure level)
    5658    };
     
    6163    'bias' => 10,               # Should be fairly flat; some CRs
    6264    'dark' => 100,              # Lots of CRs
     65    'shutter' => undef,         # Can be significant structure
    6366    'flat' => 1000              # Stars and galaxies
    6467    };
     
    6972    'bias' => 10,               # Should be little variation between chips
    7073    'dark' => 100,              # Could be some glow on some chips
     74    'shutter' => undef,         # Can't define expected value (depends on exposure level)
    7175    'flat' => undef             # Can't define expected value (depends on exposure level)
    7276    };
     
    7781    'bias' => 10,               # Should be little variation between chips
    7882    'dark' => 100,              # Could be some glow on some chips
     83    'shutter' => undef,         # Can be significant structure
    7984    'flat' => 500               # Could be features on some chips, but all should be about the same
    8085    };
  • trunk/ippScripts/scripts/detrend_resid.pl

    r9259 r9337  
    4848    'bias' => 'PPIMAGE_B',      # Bias only
    4949    'dark' => 'PPIMAGE_D',      # Dark only
     50    'shutter' => 'PPIMAGE_S',   # Shutter only
    5051    'flat' => 'PPIMAGE_F',      # Flat-field only
    5152};
     
    5556    'bias' => '-bias',          # Specify the bias frame
    5657    'dark' => '-dark',          # Specify the dark frame
     58    'shutter' => '-shutter',    # Specify the shutter frame
    5759    'flat' => '-flat',          # Specify the flat frame
    5860};
  • trunk/ippScripts/scripts/detrend_stack.pl

    r9266 r9337  
    4343    'bias' => 'PPMERGE_BIAS',
    4444    'dark' => 'PPMERGE_DARK',
     45    'shutter' => 'PPMERGE_SHUTTER',
    4546    'flat' => 'PPMERGE_FLAT'
    4647    };
  • trunk/ippScripts/scripts/phase0_exp.pl

    r9268 r9337  
    2828# Define setup
    2929use constant TYPE => "exp_type"; # Observation type keyword
    30 use constant DETRENDS => [ "bias", "dark", "flat", "fringe" ]; # Observation types to mark as detrend
     30use constant DETRENDS => [ "bias", "dark", "shutter", "flat", "fringe" ]; # Observation types to mark as detrend
    3131use constant DETREND_FLAG => "-detrend"; # Flag to use to mark detrend exposure
    3232
Note: See TracChangeset for help on using the changeset viewer.