#!/usr/bin/sh # ESO VLT project # # author : w.hummel # first entry : 07/12/99 # convert fims output files for FORS2 # to be used with FORS1 by simply # exchanging the optical component id # # can only be applied of modes : # MOS, IMG, LSS, HITS (if not used with mxu) # # cannot be applied to PMOS, IPOL, MXU and ECHS # this might be alo applied to FORS2 OB to be used with # FORS1 sed '/COLL_SR+6/s//COLL_SR+1/g /COLL_HR+7/s//COLL_HR+2/g /GRIS_600B+22/s//GRIS_600B+12/g /GRIS_600R+24/s//GRIS_600R+14/g /GRIS_600I+25/s//GRIS_600I+15/g /GRIS_600z+26/s//GRIS_600z+16/g /GRIS_300V+20/s//GRIS_300V+10/g /GRIS_300I+21/s//GRIS_300I+11/g /GRIS_150I+27/s//GRIS_150I+17/g /GG375+80/s//GG375+30/g /GG435+81/s//GG435+31/g /OG590+72/s//OG590+32/g /B_BESS+74/s//B_BESS+34/g /V_BESS+75/s//V_BESS+35/g /R_SPEZIAL+76/s//R_BESS+36/g /I_BESS+77/s//I_BESS+37/g' $1 > $2