Details
-
Type:
Improvement
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: obs_lsst
-
Labels:None
-
Story Points:1
-
Epic Link:
-
Team:Data Release Production
Description
All data is now taken with 64 columns of serial overscan, so we should make that the default in the camera definition. This will avoid the need to rework the bounding boxes on read.
In addition, the serial overscan should extend to the top of the image, so the parallel overscan region can be corrected as well.
I believe the issue is not that the size of the serial overscan should be 64 pixels. Instead, it's that the Camera code is writing out the data for each amp using a raw bounding box of size 576 x 2048 pixels for both e2V and ITL CCDs. As a result, for e2V, the serial overscan is 54 pixels wide, while for ITL it's 64 pixels. Here are the relevant header excerpts from the BOT data taken on 2021-12-12:
For an e2V CCD:
XTENSION= 'IMAGE ' / marks beginning of new HDU
BITPIX = 32 / bits per data value
NAXIS = 2 / number of axis
NAXIS1 = 576 / size of the n'th axis
NAXIS2 = 2048 / size of the n'th axis
PCOUNT = 0 / Required value
GCOUNT = 1 / Required value
CHANNEL = 1
EXTNAME = 'Segment10'
CCDSUM = '1 1 '
DATASEC = '[11:522,1:2002]'
DETSEC = '[512:1,1:2002]'
DETSIZE = '[1:4096,1:4004]'
For an ITL CCD:
XTENSION= 'IMAGE ' / marks beginning of new HDU
BITPIX = 32 / bits per data value
NAXIS = 2 / number of axis
NAXIS1 = 576 / size of the n'th axis
NAXIS2 = 2048 / size of the n'th axis
PCOUNT = 0 / Required value
GCOUNT = 1 / Required value
CHANNEL = 1
EXTNAME = 'Segment10'
CCDSUM = '1 1 '
DATASEC = '[4:512,1:2000]'
DETSEC = '[509:1,1:2000]'
DETSIZE = '[1:4072,1:4000]'
We should check with Tony Johnson whether these bounding boxes sizes are final or not.