|
DEEP2 DR3 Slitmask Info Primer |
|
|
The information below is an attempt to document the DEIMOS slitmask
design information that is housed in the "bintabs" files, as generated by
the spec2d reduction pipeline and included in DR3.
In addition to detailing the contents
of each binary table (or bintab), some IDL code is provided to link
the various tables. The "bintabs" file for a given slitmask (e.g., 1243.bintabs.fits) details the position and dimension (PA, length, width, etc.) of each slitlet, the objects placed in each slitlet, and much more. This information is housed in the following binary tables:         (1) ObjectCat         (2) MaskDesign         (3) DesiSlits         (4) SlitObjMap         (5) MaskBlu         (6) BluSlits         (7) Observers         (8) PhotCat With the exception of the PhotCat table, this slitmask information is provided as output on each DEIMOS science frame. The DEEP2 bintabs files are simply the manner in which the DEEP2 spec2d pipeline passes this info forward in the reduction process. For terse descriptions of each table, see below or follow the links above. |
| ObjectCat |
|
The ObjectCat table gives info about the objects targeted on the
slitmask. It can be read in IDL like so:
        IDL> objcat = mrdfits('1243.bintabs.fits', 1) The tags for the structure (objcat) follow the format:
with the following definitions:
|
| MaskDesign |
The MaskDesign table gives general info about the DEIMOS slitmask:
with the following definitions:
|
| DesiSlits |
The DesiSlits table gives useful info about each of the slitlets on the DEIMOS slitmask:
with the following definitions:
|
| SlitObjMap |
The SlitObjMap table gives more useful info for each slitlet on the slitmask and is the key to linking the other tables to each other:
with the following definitions:
|
| MaskBlu |
The MaskBlu table gives general info about the DEIMOS slitmask:
with the following definitions:
|
| BluSlits |
The BluSlits table gives info about the position of the slitlets on the DEIMOS slitmask:
with the following definitions:
|
| Observers |
| The Observers table gives reference info for the observer/designer of the slitmask...no need to explain this one. |
| PhotCat |
| The PhotCat table gives info from the DEEP2 photometry catalog. The tags are explained in the DR1 photometry primer. |
| Linking the Bintabs... |
|
The IDL routine link_bintabs is provided to link the various binary tables held within a bintabs file. The IDL function takes a single argument, a string specifying a bintabs file and returns an IDL structure containing much of the useful information from the bintabs file. The syntax is as follows:         out = link_bintabs('1243.bintabs.fits') The output structure will should contain the following info: IDL> help, out, /str ** Structure <22e918>, 33 tags, length=35248, data length=35232, refs=1:
where nobj is the number of objects on the slitmask. Note that the number of slitlets on the slitmask will often be less than nobj, since DEEP2 sometimes places two objects in a single slit. In the case of mask 1243, there are 157 objects (i.e., nobj = 157), with 156 slitlets. In this specific case, there are two repeated numbers in the SLITNAME entry in the linked IDL structure. |