Commit 31c306af authored by Fang Yuedong's avatar Fang Yuedong
Browse files

Merge branch 'master' into 'release_v3.0'

release v3.3.0

See merge request !35
parents b7e4e575 2022bb95
# CSST主巡天仿真软件
## 重要更新或问题修复:
* 2025.07.10: 针对1000平方度宽场及50平方度深场仿真,更新至v3.3版本,内容包括:
* 根据最新实测结果,更新部分探测器参数
* 加入光谱PSF、LED图像获取工具
* 更新光谱分光文件
* 更新系统效率曲线
* 更新头文件关键字
* 在config中加入data_set关键字
* 2025.05.21: 更新至v3.2版本,内容包括:
* 加入亮星PSF外插模块
* 加入串扰模块
......
......@@ -3,7 +3,7 @@
#
# Configuration file for CSST simulation
# Overall settings
# CSST-Sim Group, 2024/01/08
# CSST-Sim Group, 2025/06/18
#
###############################################
......@@ -12,10 +12,10 @@
# ok to pass either way or both, as long as they are consistent
work_dir: "/public/home/fangyuedong/project/workplace/"
run_name: "ext_on"
data_set: "csst-msc-c9-25sqdeg-v_test"
data_set: "csst-msc-c11-1000sqdeg-wide-v1"
# Project cycle and run counter are used to name the outputs
project_cycle: 9
project_cycle: 11
run_counter: 1
# Run options
......
......@@ -68,8 +68,8 @@ class Observation(object):
chip.shutter_img = np.ones_like(chip.img.array)
else:
chip.shutter_img = effects.ShutterEffectArr(
chip.img, t_exp=pointing.exp_time, t_shutter=1.3, dist_bearing=735, dt=1E-3)
chip.prnu_img = effects.PRNU_Img(xsize=chip.npix_x, ysize=chip.npix_y, sigma=0.01,
chip.img, t_exp=pointing.exp_time, t_shutter=1.5, dist_bearing=735, dt=1E-3)
chip.prnu_img = effects.PRNU_Img(xsize=chip.npix_x, ysize=chip.npix_y, sigma=0.007,
seed=int(self.config["random_seeds"]["seed_prnu"]+chip.chipID))
return chip
......
......@@ -26,9 +26,11 @@ class ChipOutput(object):
im_type=pointing.pointing_type,
sat_pos=[pointing.sat_x, pointing.sat_y, pointing.sat_z],
sat_vel=[pointing.sat_vx, pointing.sat_vy, pointing.sat_vz],
pa=(pointing.img_pa.deg + 180) % 360 - 180,
project_cycle=self.config["project_cycle"],
run_counter=self.config["run_counter"],
chip_name=self.chip_label,
obstype=pointing.pointing_type,
dataset=pointing.dataset)
obs_id = _util.get_obs_id(img_type=self.pointing_type, project_cycle=config["project_cycle"], run_counter=config[
......@@ -71,7 +73,7 @@ class ChipOutput(object):
self.hdr += additional_column_names
def create_output_file(self):
if self.pointing_type == 'SCI':
if self.pointing_type == 'WIDE' or self.pointing_type == 'DEEP':
self.cat = open(os.path.join(self.subdir, self.cat_name), "w")
self.logger.info("Creating catalog file %s ...\n" %
(os.path.join(self.subdir, self.cat_name)))
......
......@@ -10,7 +10,7 @@ import observation_sim.instruments._util as _util
class Pointing(object):
def __init__(self, id=0, ra=0., dec=0., img_pa=0., timestamp=1621915200, sat_x=0., sat_y=0., sat_z=0., sun_x=0., sun_y=0., sun_z=0., sat_vx=0., sat_vy=0., sat_vz=0., exp_time=150., pointing_type='SCI', pointing_type_code='101', pointing_id='00000001', obs_config_file=None, t_shutter_open=1.3, t_shutter_close=1.3, dataset='csst-msc-c9-25sqdeg-v3'):
def __init__(self, id=0, ra=0., dec=0., img_pa=0., timestamp=1621915200, sat_x=0., sat_y=0., sat_z=0., sun_x=0., sun_y=0., sun_z=0., sat_vx=0., sat_vy=0., sat_vz=0., exp_time=150., pointing_type='WIDE', pointing_type_code='101', pointing_id='00000001', obs_config_file=None, t_shutter_open=1.3, t_shutter_close=1.3, dataset='csst-msc-c9-25sqdeg-v3'):
self.id = id
self.ra = ra
self.dec = dec
......@@ -91,6 +91,9 @@ class Pointing(object):
# [TODO] Can also define other survey types
if is_deep == 2:
self.survey_field_type = "DEEP"
self.pointing_type = "DEEP"
else:
self.pointing_type = "WIDE"
if not self.obs_config_file:
self.obs_config_file = str(columns[20])
......@@ -102,7 +105,7 @@ class Pointing(object):
self.pointing_type_code = columns[21][0:3]
self.obs_id = columns[21][3:]
if self.obs_param["obs_type"]:
self.pointing_type = self.obs_param["obs_type"]
else:
self.timestamp = t
......
......@@ -355,7 +355,7 @@ def WCS_def(xlen=9216, ylen=9232, gapy=898.0, gapx1=534, gapx2=1309, ra_ref=60,
# TODO project_cycle is temporary, is not in header defined, delete in future
def generatePrimaryHeader(xlen=9216, ylen=9232, pointing_id='00000001', pointing_type_code='101', ra=60, dec=-40, pixel_scale=0.074, time_pt=None, im_type='SCI', exptime=150., sat_pos=[0., 0., 0.], sat_vel=[0., 0., 0.], project_cycle=6, run_counter=0, chip_name="01", obstype='WIDE', dataset='csst-msc-c9-25sqdeg-v3'):
def generatePrimaryHeader(xlen=9216, ylen=9232, pointing_id='00000001', pointing_type_code='101', ra=60, dec=-40, pixel_scale=0.074, time_pt=None, im_type='SCI', exptime=150., sat_pos=[0., 0., 0.], sat_vel=[0., 0., 0.], pa=23.5, project_cycle=6, run_counter=0, chip_name="01", obstype='WIDE', dataset='csst-msc-c9-25sqdeg-v3'):
# array_size1, array_size2, flux, sigma = int(argv[1]), int(argv[2]), 1000.0, 5.0
......@@ -471,10 +471,11 @@ def generatePrimaryHeader(xlen=9216, ylen=9232, pointing_id='00000001', pointing
end_time_str[11:13] + end_time_str[14:16] + end_time_str[17:19]
# h_prim['FILENAME'] = 'CSST_MSC_MS_' + im_type + '_' + file_start_time + '_' + file_end_time + '_' + OBS_id + '_' + CCDID[
# k - 1].rjust(2, '0') + '_L0_V01'
h_prim['FILENAME'] = 'CSST_MSC_MS_' + im_type + '_' + \
h_prim['FILENAME'] = 'CSST_MSC_MS_' + obstype + '_' + \
file_start_time + '_' + file_end_time + \
'_' + OBS_id + '_' + chip_name + '_L0_V01'
h_prim['POS_ANG0'] = pa
h_prim['POSI0_X'] = sat_pos[0]
h_prim['POSI0_Y'] = sat_pos[1]
h_prim['POSI0_Z'] = sat_pos[2]
......
......@@ -119,10 +119,11 @@ class Chip(FocalPlane):
def _set_attributes_from_config(self, config):
# Default setting
self.read_noise = 5.0 # e/pix
self.read_noise = 4.5 # e/pix
self.dark_noise = 0.02 # e/pix/s
self.rotate_angle = 0.
self.overscan = 1000
self.badfraction = 5e-5
# Override default values
# for key in ["gain", "bias_level, dark_exptime", "flat_exptime", "readout_time", "full_well", "read_noise", "dark_noise", "overscan"]:
# if key in config["ins_effects"]:
......
......@@ -82,7 +82,7 @@ def getChipSLSConf(chipID):
def generateHeader(chip, pointing, img_type=None, img_type_code=None, project_cycle='9', run_counter='1'):
if (img_type is None) or (img_type_code is None):
img_type = pointing.pointing_type
img_type = pointing.survey_field_type
img_type_code = pointing.pointing_type_code
h_prim = generatePrimaryHeader(
......@@ -95,12 +95,14 @@ def generateHeader(chip, pointing, img_type=None, img_type_code=None, project_cy
pixel_scale=chip.pix_scale,
time_pt=pointing.timestamp,
exptime=pointing.exp_time,
im_type=img_type,
obstype=img_type,
sat_pos=[pointing.sat_x, pointing.sat_y, pointing.sat_z],
sat_vel=[pointing.sat_vx, pointing.sat_vy, pointing.sat_vz],
pa=(pointing.img_pa.deg + 180) % 360 - 180,
project_cycle=project_cycle,
run_counter=run_counter,
chip_name=str(chip.chipID).rjust(2, '0'))
chip_name=str(chip.chipID).rjust(2, '0'),
dataset=pointing.dataset)
h_ext = generateExtensionHeader(
chip=chip,
xlen=chip.npix_x,
......
......@@ -92,13 +92,14 @@ def BadColumns(GSImage, seed=20240309, chipid=1, logger=None):
print(xposit+1)
# signs = 2*rgdn.integers(0,2,size=(nbadsecA+nbadsecD))-1
# if meanimg>0:
dn = rgdn.integers(low=np.abs(meanimg)*1.3+50, high=np.abs(meanimg)*2+150, size=(nbadsecA+nbadsecD)) # *signs
# dn = rgdn.integers(low=np.abs(meanimg)*1.3+50, high=np.abs(meanimg)*2+150, size=(nbadsecA+nbadsecD)) # *signs
dn = rgdn.integers(low=50, high=30000, size=(nbadsecA+nbadsecD)) # *signs
# elif meanimg<0:
# dn = rgdn.integers(low=meanimg*2-150, high=meanimg*1.3-50, size=(nbadsecA+nbadsecD)) #*signs
for badcoli in range(nbadsecA):
GSImage.array[(ysize-collen[badcoli]):ysize, xposit[badcoli]:(xposit[badcoli]+1)] = (np.abs(np.random.normal(0, stdimg*2, (collen[badcoli], 1)))+dn[badcoli])
GSImage.array[(ysize-collen[badcoli]):ysize, xposit[badcoli]:(xposit[badcoli]+1)] = (np.abs(np.random.normal(0, 8.58*np.exp(0.0378*dn[badcoli]**0.5), (collen[badcoli], 1)))+dn[badcoli]) # (np.abs(np.random.normal(0, stdimg*2, (collen[badcoli], 1)))+dn[badcoli])
for badcoli in range(nbadsecD):
GSImage.array[0:collen[badcoli+nbadsecA], xposit[badcoli+nbadsecA]:(xposit[badcoli+nbadsecA]+1)] = (np.abs(np.random.normal(0, stdimg*2, (collen[badcoli+nbadsecA], 1)))+dn[badcoli+nbadsecA])
GSImage.array[0:collen[badcoli+nbadsecA], xposit[badcoli+nbadsecA]:(xposit[badcoli+nbadsecA]+1)] = (np.abs(np.random.normal(0, 8.58*np.exp(0.0378*dn[badcoli+nbadsecA]**0.5), (collen[badcoli+nbadsecA], 1)))+dn[badcoli+nbadsecA]) # (np.abs(np.random.normal(0, stdimg*2, (collen[badcoli+nbadsecA], 1)))+dn[badcoli+nbadsecA])
return GSImage
......
......@@ -277,13 +277,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"2": {
"chip_name": "GV-1",
......@@ -299,13 +300,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"3": {
"chip_name": "GU-1",
......@@ -321,13 +323,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"4": {
"chip_name": "GU-2",
......@@ -343,13 +346,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"5": {
"chip_name": "GV-2",
......@@ -365,13 +369,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"6": {
"chip_name": "y-1",
......@@ -387,13 +392,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"7": {
"chip_name": "i-1",
......@@ -409,13 +415,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"8": {
"chip_name": "g-1",
......@@ -431,13 +438,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"9": {
"chip_name": "r-1",
......@@ -453,13 +461,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"10": {
"chip_name": "GI-2",
......@@ -475,13 +484,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"11": {
"chip_name": "z-1",
......@@ -497,13 +507,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"12": {
"chip_name": "NUV-1",
......@@ -519,13 +530,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"13": {
"chip_name": "NUV-2",
......@@ -541,13 +553,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"14": {
"chip_name": "u-1",
......@@ -563,13 +576,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"15": {
"chip_name": "y-2",
......@@ -585,13 +599,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"16": {
"chip_name": "y-3",
......@@ -607,13 +622,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"17": {
"chip_name": "u-2",
......@@ -629,13 +645,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"18": {
"chip_name": "NUV-3",
......@@ -651,13 +668,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"19": {
"chip_name": "NUV-4",
......@@ -673,13 +691,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"20": {
"chip_name": "z-2",
......@@ -695,13 +714,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"21": {
"chip_name": "GI-3",
......@@ -717,13 +737,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"22": {
"chip_name": "r-2",
......@@ -739,13 +760,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"23": {
"chip_name": "g-2",
......@@ -761,13 +783,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"24": {
"chip_name": "i-2",
......@@ -783,13 +806,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"25": {
"chip_name": "y-4",
......@@ -805,13 +829,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"26": {
"chip_name": "GV-3",
......@@ -827,13 +852,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"27": {
"chip_name": "GU-3",
......@@ -849,13 +875,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"28": {
"chip_name": "GU-4",
......@@ -871,13 +898,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 3.2E-6
},
"29": {
"chip_name": "GV-4",
......@@ -893,13 +921,14 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
},
"30": {
"chip_name": "GI-4",
......@@ -915,12 +944,13 @@
"flat_exptime": 150,
"readout_time": 40,
"df_strength": 2.3,
"bias_level": 500,
"gain": 1.1,
"bias_level": 2000,
"gain": 1.4,
"full_well": 90000,
"prescan_x": 27,
"overscan_x": 71,
"prescan_y": 0,
"overscan_y": 84
"overscan_y": 84,
"badfraction": 1.9E-5
}
}
......@@ -2,41 +2,41 @@ INSTRUMETN CSSTSLS
GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA -1186 -528
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
# -1 order (BEAM C) *******************
BEAMC 494 1346
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 0.14817231992808644 0.0005079228025548398 5.393015911919454e-05 -2.982451966637128e-08 -5.6367601736659e-09 1.5820426294476737e-09
DYDX_A_1 -0.0009276470296729458 3.1005740765743757e-07 -1.2237577325446853e-07 -2.0571882414473167e-11 1.8321776016715952e-11 -7.578903580318974e-12
DYDX_ORDER_C 1
DYDX_C_0 83.81747196731513 -0.017449251674001954 -0.000322244113302182 -2.5299416599094274e-11 2.8613582689543482e-09 -5.564977244215021e-09
DYDX_C_1 0.004280751812666565 -1.4950747771154375e-07 4.88876339937037e-07 2.158848690854892e-13 6.505299727868646e-12 1.172421209026527e-12
#
# X and Y Offsets
#
XOFF_A 0.0
YOFF_A 0.0
XOFF_C 0.0
YOFF_C 0.0
#
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 85.38358038937345 0.0032653138486398448 0.00031539654827738325 2.2556716283763742e-07 -5.583323908896222e-09 -3.9854304970418865e-08
DLDP_A_1 -8.619481286417143 -0.00010163441564111018 5.796132532958049e-07 -1.1409725324392857e-09 -1.2661986911495662e-10 5.161995577255066e-11
DISP_ORDER_C 1
DLDP_C_0 755.6596588932522 0.015587390300485957 -0.16741314744072028 -1.3175281859957994e-06 2.05513727604675e-06 8.832969164479482e-08
DLDP_C_1 9.935624889005847 -0.0002136737653699562 -1.020872864604142e-05 6.058024980252416e-09 9.635255997706835e-10 -1.2149704292413596e-11
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -85 116
BEAMB -154 200
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 -1.6980112570847214 0.000496763674347146 -3.984876156626912e-05 -3.30920819871009e-08 -3.2826138616433233e-09 4.068281942742765e-09
DYDX_B_0 80.24863809576165 -0.017425736469683324 -0.00011864304993404706 -6.877737710288559e-10 -3.0362486785020107e-09 2.7894259783399993e-09
#
# X and Y Offsets
#
......@@ -46,87 +46,87 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -50799.93465739006 -1.0249446791288364e-06 1.4398214931432562e-07 6.515061995210521e-11 -8.555513184027325e-12 -2.263435794484282e-12
DLDP_B_1 3799.99600787394 -2.5740187050753252e-09 -7.967764019647142e-09 3.381327484806399e-13 1.1102413590842226e-13 8.056536395000781e-13
DLDP_B_0 995241.0728648517 -24.71534641352107 -288.2151936379665 -0.0010795367866120933 0.010336266427944106 8.516908411151849e-05
DLDP_B_1 25530.524227691232 -3.388020874121551 -0.26391981628258115 0.0002052463253811721 3.3420370284981715e-05 4.5064565217872774e-06
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI1.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC 576 1270
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
# 1 order (BEAM A) *******************
BEAMA -1246 -438
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 2.164489607366864 0.00015356245807983922 -3.436363301868159e-05 -1.870489414179214e-08 3.4169903432371594e-09 1.329160668259838e-08
DYDX_C_1 -0.01025662163204071 2.563555771056362e-07 -3.8339712168522614e-07 -3.0921572651851273e-12 -2.782385864095027e-12 -1.2927405756300694e-11
DYDX_ORDER_A 1
DYDX_A_0 85.2843090605858 -0.017481446797368794 -0.0005935374852298529 3.5324739675287524e-09 6.4502029035927366e-09 1.5360986646185374e-09
DYDX_A_1 0.02117321725305586 -8.535863742666985e-07 -1.452178396345705e-07 4.5886854128926034e-11 1.960770921440642e-11 2.0100800662081158e-13
#
# X and Y Offsets
#
XOFF_C 0.0
YOFF_C 0.0
XOFF_A 0.0
YOFF_A 0.0
#
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 177.13399505238104 -0.007207586351786929 -0.0002463626212392644 1.1096967611485913e-07 -7.172568195316576e-08 7.661078070414997e-08
DLDP_C_1 7.909922724387606 0.00010522086987605297 -3.2603543631115034e-07 1.5646494966367527e-09 -5.03678693326057e-12 -3.0290035506411384e-11
DISP_ORDER_A 1
DLDP_A_0 -601.4357551561787 0.004692647940697769 0.1785506784682844 -2.7298780059716884e-07 -2.196524008871197e-06 -5.334309630876116e-08
DLDP_A_1 -10.26277823570018 0.00013987375475042036 4.136073926936967e-06 -1.7466640448990531e-09 -2.4045663625915006e-10 4.080458278673443e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
SENSITIVITY_A GI1.Throughput.1st.fits
#
# 2 order (BEAM D) *******************
BEAMD -2308 -1172
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
# -2 order (BEAM E) *******************
BEAME 1173 2629
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 6.575586074514935 0.00017715365529036883 0.0005455451137842477 -1.9613440745741114e-08 -9.227386593836169e-09 -4.188087036184667e-09
DYDX_D_1 0.0036275858789754415 -2.6482112732759975e-08 2.5593462628528386e-07 6.463563645069831e-12 4.03172098429654e-12 -3.917214235864082e-12
DYDX_ORDER_E 1
DYDX_E_0 91.43021007772509 -0.017383724099838342 -0.0004972008516780219 4.506567126857951e-09 -2.7331729003283705e-09 -9.845626595400903e-09
DYDX_E_1 -0.0022058014247893867 -6.88455038919061e-08 7.340380433783799e-07 -6.043653039421781e-12 6.457900009763713e-12 1.102262331296489e-12
#
# X and Y Offsets
#
XOFF_D 0.0
YOFF_D 0.0
XOFF_E 0.0
YOFF_E 0.0
#
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 188.0941098549664 0.008593570433461354 -9.662052486438888e-05 -2.9312713794817294e-08 -3.6321156810539864e-08 2.059898349073838e-08
DLDP_D_1 -4.215360393019362 -4.419789923213378e-05 4.6430642928086416e-08 -6.593956748322828e-10 -4.486888764266082e-11 4.091168733272308e-11
DISP_ORDER_E 1
DLDP_E_0 868.8360109063287 0.023706842139603508 -0.0769491855531814 -1.2395403734878433e-06 1.309989329353733e-06 5.888920201824052e-08
DLDP_E_1 4.559436282521804 -0.00011499243384001066 -5.219520441621047e-06 3.6430604777099415e-09 4.088575683543154e-10 6.9770027648387484e-12
#
SENSITIVITY_D GI.Throughput.2st.fits
SENSITIVITY_E GI.Throughput.-2st.fits
#
# -2 order (BEAM E) *******************
BEAME 1272 2571
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
# 2 order (BEAM D) *******************
BEAMD -2366 -1077
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 7.647178915824622 -0.00014153778353717477 0.0006585912409573279 1.1451647036969672e-08 -2.2503331458372405e-08 -5.97673441914924e-10
DYDX_E_1 -0.013388600612320525 3.4987613986258344e-07 -8.934574682539956e-07 -2.1629798251888717e-11 1.1573035017917812e-11 1.4777345392719905e-12
DYDX_ORDER_D 1
DYDX_D_0 89.13254530373214 -0.01574422617016808 -0.0007764544095069011 -1.0088780764634777e-07 -2.8997148538540083e-08 4.802659988476042e-09
DYDX_D_1 0.025107513290948572 1.711511429157548e-07 -2.12212352980213e-07 -2.0392076475692164e-11 -2.315303475275201e-12 1.625038020529223e-13
#
# X and Y Offsets
#
XOFF_E 0.0
YOFF_E 0.0
XOFF_D 0.0
YOFF_D 0.0
#
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 749.365138624119 -0.009040904047632537 -3.651933072926262e-05 6.29068316288477e-09 -5.071858671240351e-08 4.3936241943591134e-08
DLDP_E_1 3.525849844257782 5.076985320043654e-05 -2.3283028857990373e-07 7.89052047264076e-10 -5.107307936601006e-13 -1.2368324896846148e-11
DISP_ORDER_D 1
DLDP_D_0 59.66360803090409 -0.03645657387700975 0.08209922534239997 2.230113264859621e-06 -4.834004311535735e-07 -1.4872358497827982e-08
DLDP_D_1 -4.851077446754604 3.6642497122158304e-05 -1.3067839658951964e-06 1.1000927192809675e-09 3.3314583798264184e-10 2.0678278604813818e-11
#
SENSITIVITY_E GI.Throughput.-2st.fits
SENSITIVITY_D GI.Throughput.2st.fits
#
......@@ -3,15 +3,15 @@ GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA 505 1238
BEAMA 502 1351
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 1.6521968560197104 -0.00023636575255565063 0.00014657966669906052 5.5353251643711546e-08 -6.875491197053945e-09 1.898528225132234e-09
DYDX_A_1 -0.00823033845070988 8.828905689160072e-08 -4.959096708134394e-07 -1.9481266745599912e-11 1.1236282464271542e-11 -7.748796599795913e-12
DYDX_A_0 92.25422288715659 -0.017636666694869598 -0.0006062212799569738 1.0694307349847608e-08 -1.2984430545458677e-08 -8.090740369487141e-09
DYDX_A_1 0.0025356503692253057 1.6891379700204204e-07 5.491974879148518e-07 -1.634035086385272e-11 1.1946865858205328e-11 2.1822921100882184e-12
#
# X and Y Offsets
#
......@@ -21,22 +21,22 @@ YOFF_A 0.0
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 368.406778602958 0.003046565833724366 0.0008085615398225785 -2.139787644130709e-07 -1.1201107471275321e-07 -3.4449662405229706e-08
DLDP_A_1 8.461359683949652 0.00022163929626988009 -6.114607283280979e-07 7.123049245778616e-09 1.99766396430199e-11 2.5539201322842942e-11
DLDP_A_0 512.8771643592365 0.0002285636295730753 -0.16571684730005576 -5.67781766128259e-07 4.655969738086991e-06 1.747674998462007e-07
DLDP_A_1 9.42747933875964 -0.00027234108395563704 -6.800807713176678e-06 6.942300207942708e-09 1.906605696541774e-10 -8.359951019422576e-11
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_A GI2.Throughput.1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -121 80
BEAMB -127 217
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 -0.15118122059806027 -0.00014883011863745443 7.638889641475754e-05 3.208928684076908e-08 -2.743527540058062e-16 -5.917502574749109e-09
DYDX_B_0 87.90230563649153 -0.017474214924458165 -0.0004212268065938937 -2.8779817204029485e-10 1.246097575701762e-09 3.781039469069765e-09
#
# X and Y Offsets
#
......@@ -46,23 +46,22 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -69799.9181918991 7.954241458130043e-08 -4.318951729587184e-08 2.591993568563933e-12 -5.884436166492418e-12 3.83253047082687e-12
DLDP_B_1 -3799.99600104444 7.250278281031939e-09 -3.3418691029874735e-09 -1.6236581010798935e-12 -4.3502364485117337e-13 4.507009220450333e-13
DLDP_B_0 -1605989.7003448205 -2547.4134788532256 1046.0213921092432 0.4841338941808186 0.6157371155642489 0.009359682043090041
DLDP_B_1 -70800.61697181585 -7.162020107376179 -0.04469046523058191 -0.010293297313108537 -0.00021761440709276735 8.073487290239672e-06
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI2.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC -1251 -537
BEAMC -1228 -412
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 1.6274259827507076 -0.00034821339283356466 0.0002392999867887435 1.5635809977657976e-07 -7.514174027001749e-09 -6.566395011125117e-09
DYDX_C_1 -5.3689415286860876e-05 -1.912489940030657e-07 -1.070383333548475e-08 1.53386647062175e-10 -1.1208241918489809e-11 3.406912464353884e-12
DYDX_C_0 91.49277210187859 -0.017391059346303462 -0.0008503420681760901 -1.2031606244990094e-09 -5.617625241599499e-10 3.9874220052450655e-09
DYDX_C_1 0.01759543070429301 -1.1660184062024595e-07 -5.460026199930307e-09 -7.331901128138591e-13 4.0639785381891745e-12 2.2546457968482757e-13
#
# X and Y Offsets
#
......@@ -72,23 +71,23 @@ YOFF_C 0.0
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 -132.55108204545758 -0.002194041658487836 -0.0011882168059149318 4.510589778063266e-08 5.420547634024377e-08 9.930897689686617e-08
DLDP_C_1 -8.799340620412947 -0.00021774440141256442 -9.53499834632785e-07 -6.889561983057868e-09 -1.6142159956150814e-10 1.0347079457327646e-10
DLDP_C_0 -250.87653891624046 0.00011775257705091215 0.17032253220726248 4.239006846514879e-07 -4.231564609888579e-06 -1.6592658263169117e-07
DLDP_C_1 -9.761452141315582 0.00026372262860814094 8.23248940748449e-06 -6.472545916630079e-09 -4.0674947242394865e-10 -2.962493212627706e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 2 order (BEAM D) *******************
BEAMD 1154 2507
BEAMD 1157 2594
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 6.882799280484086 -0.00027753891131284954 0.0004922039820404395 3.082997123523641e-08 -9.49966186877231e-09 -2.3656818322711693e-09
DYDX_D_1 -0.011947813534498112 4.093696016714032e-08 -7.435107573317389e-07 2.5528541317977112e-12 3.192792142602198e-12 -2.453919520892182e-12
DYDX_D_0 98.3523131135543 -0.01714250260182704 -0.0007933302164548449 3.777793051362842e-11 -8.241325008114599e-09 -8.97289129445854e-09
DYDX_D_1 -0.0017550360786052037 -1.639397334879156e-07 7.505360425078057e-07 3.9824566741009056e-13 4.9814841672837295e-12 -7.06882822449359e-14
#
# X and Y Offsets
#
......@@ -98,23 +97,23 @@ YOFF_D 0.0
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 681.5215546431494 -0.003828618628269481 0.00025066858071110036 8.289914582311179e-08 -8.404758131147936e-08 2.9680890659588283e-08
DLDP_D_1 3.8798704838712443 0.0001054229718827677 -6.676804799370928e-08 3.250115236230527e-09 1.9094002846781994e-11 -2.387851784113332e-11
DLDP_D_0 733.8401554624074 0.004439836992939525 -0.075583396442746 -1.8532968432870368e-07 2.0798115752148517e-06 5.615411326008769e-08
DLDP_D_1 4.3341044902747194 -0.00012844068613405936 -3.80431814145908e-06 3.1967317450926887e-09 2.1258234347796274e-10 -7.27712508846882e-12
#
SENSITIVITY_D GI.Throughput.2st.fits
#
# -2 order (BEAM E) *******************
BEAME -2429 -1162
BEAME -2376 -1037
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 7.677233822131253 -0.00048041060058740204 0.0004956385735024366 6.868585247565035e-08 -9.175237278696478e-09 1.2566962458208905e-09
DYDX_E_1 0.003983370254635055 -1.232787560255339e-08 2.1234388976109016e-07 1.6204618268328708e-11 3.983819645370279e-12 4.263520014579825e-12
DYDX_E_0 100.42129858226174 -0.0171160120825564 -0.0014077766178795172 -3.6317107458862376e-09 -1.3202273100099128e-08 1.0844393976008489e-08
DYDX_E_1 0.02421593694727413 -7.88279597174166e-08 -3.4022255689263277e-07 -3.372846506179203e-12 2.9462152147362093e-12 1.8316277340651857e-12
#
# X and Y Offsets
#
......@@ -124,8 +123,8 @@ YOFF_E 0.0
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 225.51253672373838 0.004993681854364764 -0.0005008288340946528 -3.699489889412266e-07 9.185967746730138e-10 3.449301385107925e-08
DLDP_E_1 -4.201429796832916 -0.0001002659886793457 -1.5067099385104427e-07 -3.422412459135902e-09 -4.7864621219451994e-11 1.2110924433274547e-11
DLDP_E_0 170.21582576112604 -0.00361702904232373 0.08120079523412951 1.6321744869549026e-07 -2.007293660443609e-06 -6.116726298600102e-08
DLDP_E_1 -4.66005261735872 0.00012332189146351306 3.732415013960603e-06 -3.103549611558497e-09 -2.077368288348721e-10 6.924884169998507e-12
#
SENSITIVITY_E GI.Throughput.-2st.fits
#
......
......@@ -2,41 +2,41 @@ INSTRUMETN CSSTSLS
GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA -1165 -529
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
# -1 order (BEAM C) *******************
BEAMC 508 1324
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -6.701182974571684 0.002775408465714937 -5.008027204529155e-06 -2.0681229887800945e-07 1.672558785215065e-08 1.2883006682484139e-08
DYDX_A_1 -0.011058869539133943 3.7599975750379265e-06 -1.454801544711055e-07 -2.732296676828887e-10 1.6807252890453843e-11 2.3078988017693426e-11
DYDX_ORDER_C 1
DYDX_C_0 82.2034933804246 -0.017429772133578648 -0.000588586050339533 -6.797287406795978e-10 -1.4088345684737913e-09 -1.1566796071825558e-08
DYDX_C_1 0.02460208899505898 5.1062191849770494e-08 4.829435073312018e-07 -2.1791576712156842e-13 4.438502508122657e-12 -7.020525828783807e-14
#
# X and Y Offsets
#
XOFF_A 0.0
YOFF_A 0.0
XOFF_C 0.0
YOFF_C 0.0
#
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 89.29929713075846 0.007869055877167033 0.002032069165263719 -1.354914635928767e-07 -2.36625746360585e-07 -3.653227037149024e-08
DLDP_A_1 -8.949772455359303 -6.84744764524538e-05 1.329382642654382e-06 -4.373865234929442e-10 -1.1429952054685429e-10 1.198595248877539e-11
DISP_ORDER_C 1
DLDP_C_0 852.920713271251 0.00020415981375164483 -0.16129382979592288 -7.094115756146758e-08 1.2217226618960415e-06 4.595200105721275e-08
DLDP_C_1 9.270679356371144 -7.693005148931799e-05 -3.4004786192542885e-06 4.20577558524093e-10 3.050789878765704e-11 -2.0681369535337074e-11
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -85 116
BEAMB -159 187
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 0.7417052210055195 -0.00020203678602604693 -0.000127477041087712 1.203348368929054e-08 1.9691405801937715e-08 -4.438126623705844e-09
DYDX_B_0 82.38873109012752 -0.017444538306041237 -7.215845160855589e-05 1.0360589334548516e-10 1.770806836470795e-09 -8.175026409278442e-10
#
# X and Y Offsets
#
......@@ -46,87 +46,87 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -50799.93910700834 3.847511110522434e-07 -4.445057447289337e-08 -2.938727291115533e-11 3.865928180323842e-12 2.1172969265028556e-12
DLDP_B_1 3799.995997881015 -1.89567765038538e-09 2.279835481772109e-09 2.5541048679054035e-13 -2.1242903608582366e-14 -2.2979734207889763e-13
DLDP_B_0 1382572.2109215294 -67.57308435692731 -338.8434086061111 0.0018139030513343222 0.011490103406174849 0.0009931723570556121
DLDP_B_1 13773.27193015268 0.8717421621359333 0.13986531842575928 -0.00010488464872687881 -1.4223523017810121e-05 -1.0425251548683606e-05
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI3.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC 574 1242
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
# 1 order (BEAM A) *******************
BEAMA -1245 -466
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 4.4793311976875065 -0.0007086900045398478 0.00011182473491208784 4.7164973849785044e-08 3.838133586023918e-09 -4.20736855305813e-09
DYDX_C_1 -0.009955230104200801 5.494138645881217e-07 -5.71634189603669e-07 -2.919798057644714e-11 1.4502406606426133e-11 -2.075548579200935e-12
DYDX_ORDER_A 1
DYDX_A_0 81.19762659217919 -0.017410006131997644 -0.0004586520971526177 -2.9998749841978293e-09 -1.0835719315632046e-09 -2.6947627585606236e-09
DYDX_A_1 0.01564517849538273 1.1912881775546165e-07 -7.867532586214696e-08 -1.5369093997715681e-12 6.992211538581406e-12 -1.0390622083596457e-12
#
# X and Y Offsets
#
XOFF_C 0.0
YOFF_C 0.0
XOFF_A 0.0
YOFF_A 0.0
#
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 172.015460036964 -0.011348421736173205 -0.003498652429831966 4.1487695135523336e-07 3.0021620711836923e-07 1.7778051158454707e-07
DLDP_C_1 8.26733928497497 8.256951613360409e-05 1.5496732845186095e-06 3.450034904725797e-10 -1.9571509341541388e-10 -1.2282949512739158e-10
DISP_ORDER_A 1
DLDP_A_0 -624.3945368033409 -0.0036521811128522545 0.16992792555162392 1.9028055096936003e-08 -9.123993168030768e-07 -2.0592691996962565e-08
DLDP_A_1 -9.77320008608022 6.186920332943867e-05 2.557444775545256e-06 -3.502166485781506e-10 2.2101987324688482e-11 5.947813820505766e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
SENSITIVITY_A GI3.Throughput.1st.fits
#
# 2 order (BEAM D) *******************
BEAMD -2272 -1175
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
# -2 order (BEAM E) *******************
BEAME 1209 2598
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 8.08810918775784 -0.0003160383656201733 0.00032117137940834755 1.7411054368514052e-08 1.661691957794701e-08 -7.331801211925892e-10
DYDX_D_1 0.004037692561048198 9.260581777483333e-08 2.0948104952770805e-07 -1.3666211810764903e-12 9.22151128823822e-12 3.56053004729388e-12
DYDX_ORDER_E 1
DYDX_E_0 77.67926568941367 -0.017459426700922057 -0.0009512057352893541 -8.328193266969539e-10 -4.308733017547624e-09 -1.6459441770846814e-08
DYDX_E_1 0.028226625570675002 4.610736333558472e-08 7.224353677981018e-07 -1.7232857018050592e-13 4.70286708332131e-12 3.24500345629986e-13
#
# X and Y Offsets
#
XOFF_D 0.0
YOFF_D 0.0
XOFF_E 0.0
YOFF_E 0.0
#
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 216.25403003355524 0.010374226070392576 -8.445144407446138e-05 -1.3805132146415428e-07 -1.0303848286678046e-07 9.95005770780554e-08
DLDP_D_1 -4.354036406782779 -2.890684685642903e-05 -2.0137357930919185e-07 -2.0731415899498934e-10 -1.8122542882321346e-11 7.612593103222925e-11
DISP_ORDER_E 1
DLDP_E_0 957.0511758459659 0.005057746213763902 -0.0729423622942145 -2.5234988784255296e-08 6.177575813799166e-07 2.8607495663385403e-08
DLDP_E_1 4.207286898486323 -3.8954613053354636e-05 -1.7821876182464824e-06 2.1505315357934174e-10 1.8211832171998413e-11 -1.2937132797368936e-11
#
SENSITIVITY_D GI.Throughput.2st.fits
SENSITIVITY_E GI.Throughput.-2st.fits
#
# -2 order (BEAM E) *******************
BEAME 1266 2504
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
# 2 order (BEAM D) *******************
BEAMD -2360 -1122
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 9.62422536352037 -0.0007513346376027576 0.00047559530073159164 5.269556788714742e-08 7.1730007979798225e-09 -6.677835198312419e-09
DYDX_E_1 -0.012614129322424207 3.0685483155242454e-07 -8.080248472425367e-07 -1.675839114053055e-11 6.28724942761309e-12 1.830554524540624e-12
DYDX_ORDER_D 1
DYDX_D_0 77.92811591583053 -0.01781030703951946 -0.0010466179075824893 7.126038529093535e-09 1.0754782369433661e-08 1.3561966498068974e-08
DYDX_D_1 0.012853842970076646 -1.3353917302186952e-07 -5.358488688556493e-07 6.399534043088399e-12 1.5281076798582166e-11 6.441495307871381e-12
#
# X and Y Offsets
#
XOFF_E 0.0
YOFF_E 0.0
XOFF_D 0.0
YOFF_D 0.0
#
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 715.1023667764158 -0.0095541207696842 -0.0004816563593544562 2.055415816694876e-08 8.93200948525963e-08 -1.1631961374782272e-09
DLDP_E_1 3.7098943532880795 3.94128127508779e-05 -3.9595900555782286e-07 3.5698399082793767e-10 -1.1202538105303241e-11 4.141971822345156e-12
DISP_ORDER_D 1
DLDP_D_0 -65.08675793660555 -0.005230548874792504 0.08200627548217507 6.1009009374265e-08 -4.2174137391224704e-07 -2.5285310688107825e-08
DLDP_D_1 -4.706814910015965 2.7850084482601076e-05 1.42184037625585e-06 -1.3488399703664095e-10 -7.224356720729e-12 9.929160329154079e-12
#
SENSITIVITY_E GI.Throughput.-2st.fits
SENSITIVITY_D GI.Throughput.2st.fits
#
......@@ -3,15 +3,15 @@ GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA 496 1205
BEAMA 496 1346
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 1.8079411230667526 0.000294687296425808 0.00013075268730441774 -5.8695979322444216e-08 -1.8530865927043794e-08 -3.4435334927576097e-10
DYDX_A_1 -0.007559325619461293 -2.235588199890071e-07 -4.861200082190469e-07 5.67597561284664e-11 9.665085002819538e-12 -5.654003972981209e-12
DYDX_A_0 78.40900986360747 -0.017313452881414466 -0.0008814582637001966 -7.210243344000712e-09 -4.860900301086975e-09 -1.0202505125457856e-08
DYDX_A_1 0.02499695141469718 -1.3315434587547103e-07 5.140182942278509e-07 1.165227631783508e-11 7.001523764590145e-12 -4.0809965821488924e-13
#
# X and Y Offsets
#
......@@ -21,22 +21,22 @@ YOFF_A 0.0
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 357.25672649585346 0.0026817631051531373 -0.0008088235647495063 1.8090568199353523e-08 -1.8174081782777532e-07 4.848228169943458e-08
DLDP_A_1 8.722697564037938 0.000205426058276804 6.458898780582076e-07 5.754551977966249e-09 3.665174051543842e-10 -6.499751993083657e-11
DLDP_A_0 480.00328010488676 0.0023102396589526134 -0.1646751567734682 -5.355528876073026e-07 4.051734663248392e-06 1.976250235775175e-07
DLDP_A_1 9.478285943170544 -0.00025924431780273373 -1.0535504424056378e-05 6.261385564939022e-09 6.022015877811941e-10 -4.457084910847021e-11
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_A GI4.Throughput.1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -121 80
BEAMB -134 219
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 -0.346400522896565 0.00018739376670127208 5.56857577173339e-05 -1.70474412603054e-08 -2.2972785159783426e-08 -3.6984395352510956e-09
DYDX_B_0 79.40940340384546 -0.01744196875833874 -0.00030929274207862383 1.1931616373397914e-09 -4.836521743575162e-10 -8.091282301579004e-10
#
# X and Y Offsets
#
......@@ -46,23 +46,23 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -69799.91747887168 -2.9724644701190073e-07 1.5072336267962783e-07 2.015287719689396e-11 1.0102759666168193e-11 -2.921355374946831e-11
DLDP_B_1 -3799.9960108170285 1.230476741723959e-08 5.120008047919456e-09 -1.7260127319496886e-12 -2.894859545656582e-13 -2.518720263725144e-13
DLDP_B_0 -924552.8811032962 -129.16242678445727 489.99160734298107 0.009843880739218224 0.04809217192044277 0.0004947731417981056
DLDP_B_1 -28178.037875948383 -2.16580904959014 -0.06659905082397459 -0.0002301312235181095 -5.342631039719999e-06 3.924082930296734e-06
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI4.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC -1226 -531
BEAMC -1236 -407
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 2.077313161445304 0.000980949024127796 0.00021283436080014677 -2.6874752294266443e-07 1.2116296272703047e-08 -2.34247574816342e-08
DYDX_C_1 0.0006570356116067526 1.2290395976811375e-06 1.6637183470133416e-07 -3.0304924532261765e-10 2.4734040679617618e-11 -2.3590221649145147e-11
DYDX_C_0 78.28628313181405 -0.0174676280033532 -0.0007211049806067924 1.3550520517084727e-09 -5.033529411903303e-09 -8.78275284150823e-10
DYDX_C_1 0.016850139406676158 6.584638147130702e-08 -3.2213347083022265e-08 1.3212081014454314e-13 4.070209190178842e-12 1.0110099052975842e-13
#
# X and Y Offsets
#
......@@ -72,23 +72,23 @@ YOFF_C 0.0
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 -121.78907997722058 0.0032696940319881414 0.0006464378401977006 -7.640813428906632e-07 -1.8609591417862846e-07 8.290436333072529e-09
DLDP_C_1 -8.97979084681475 -0.00019598212441758928 3.783145685550695e-07 -6.5034895421998424e-09 -1.2413982090479435e-10 2.8899833209195562e-11
DLDP_C_0 -241.44260321837353 0.00024565678186001805 0.16961119565319727 3.5159141395928157e-07 -4.000086038003742e-06 -1.623403207876253e-07
DLDP_C_1 -9.698374939844344 0.0002462837648602002 9.616502860539608e-06 -5.808764012361449e-09 -4.39365822808047e-10 1.2446736713224882e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 2 order (BEAM D) *******************
BEAMD 1133 2430
BEAMD 1148 2572
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 6.774750256151258 4.707107703698734e-05 0.000503719215056276 -9.167623136460398e-09 -4.152231401897418e-08 -9.419809130154712e-09
DYDX_D_1 -0.011168343549873953 2.6666977679877337e-08 -7.470831119863737e-07 -6.286511915787003e-12 1.6439841503101933e-11 2.596573361763681e-12
DYDX_D_0 74.27246863248385 -0.017587094045487427 -0.001206551722712742 1.572110226174595e-09 -1.279403610355547e-08 -1.5318356735595456e-08
DYDX_D_1 0.028092430333842053 5.230090209700276e-08 7.175232185657758e-07 -3.2767023733146164e-13 4.6507910442738204e-12 6.266432164371173e-13
#
# X and Y Offsets
#
......@@ -98,23 +98,23 @@ YOFF_D 0.0
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 644.6040954256978 -0.006725435944267471 -0.00046759138288674147 6.074871380608643e-07 5.934218163422943e-08 4.8842737161317195e-08
DLDP_D_1 4.024665076158718 0.00010081087363835187 7.778605740527281e-08 2.3982243719693978e-09 -9.612044507219901e-12 -2.68791877244903e-11
DLDP_D_0 690.8693298335895 0.0042952425677610295 -0.07610716612288357 -1.464841243672765e-07 1.9861396305779965e-06 6.845801200125911e-08
DLDP_D_1 4.377269895441115 -0.00012192353167760412 -4.699499575538241e-06 2.868111256606352e-09 2.1110459295730655e-10 -5.359993567948835e-12
#
SENSITIVITY_D GI.Throughput.2st.fits
#
# -2 order (BEAM E) *******************
BEAME -2388 -1152
BEAME -2394 -1045
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 7.575427899521311 -0.00021618386157363904 0.0005591063261388894 7.342842947533113e-09 -1.7485023350712322e-08 -1.0377783468068108e-08
DYDX_E_1 0.004683960947904331 -1.888624610879838e-08 3.2884821904527606e-07 1.018984346983241e-11 5.168946855257885e-12 -2.043053548121042e-12
DYDX_E_0 70.89523114991954 -0.017577892632593173 -0.0010948657663897429 5.564257577573999e-09 -1.6971918041393377e-08 6.338399864124131e-09
DYDX_E_1 0.011550662893104848 1.1418946794996425e-07 -3.7446670144290727e-07 1.7893907114935469e-12 3.999653846132198e-12 9.226788098795193e-13
#
# X and Y Offsets
#
......@@ -124,8 +124,8 @@ YOFF_E 0.0
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 267.93286227255373 0.00201938462017863 0.0006580841742383252 1.342728670389483e-07 8.208055062958599e-08 -5.8696202469254026e-08
DLDP_E_1 -4.25924990707677 -9.333093346801208e-05 3.0998041792804064e-07 -2.5252108562599416e-09 6.108018499993683e-11 -2.776870248444526e-11
DLDP_E_0 221.30719461723865 -0.00399404068801109 0.08008068425807174 1.300225978294597e-07 -1.8437444055260217e-06 -7.264382451612819e-08
DLDP_E_1 -4.592908026858205 0.00011356177269749191 4.317455512817054e-06 -2.7095348212113367e-09 -2.0010817631405507e-10 6.879826996826563e-12
#
SENSITIVITY_E GI.Throughput.-2st.fits
#
......
......@@ -2,41 +2,41 @@ INSTRUMETN CSSTSLS
GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA -1142 -529
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
# -1 order (BEAM C) *******************
BEAMC 477 1255
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -4.200912391295848 0.0004333567324527654 -7.510300071818624e-05 -2.1331102660870273e-08 1.5338634352743392e-08 1.055303654378919e-09
DYDX_A_1 -0.007660479005222489 9.451959584118495e-07 3.458636697255676e-08 -6.318343930980603e-11 1.1729491007094295e-11 2.113431385867461e-12
DYDX_ORDER_C 1
DYDX_C_0 -73.2365115831949 0.01745044106986586 -0.0008030919558085526 8.827612935798139e-10 -4.631740629192957e-09 7.572917292299042e-09
DYDX_C_1 -0.025825421653747613 -1.0007608939749985e-07 3.3526730548320395e-07 1.6847785516832158e-13 5.4595793030149344e-12 -1.3068761866013005e-13
#
# X and Y Offsets
#
XOFF_A 0.0
YOFF_A 0.0
XOFF_C 0.0
YOFF_C 0.0
#
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 212.6370588038428 -0.005328074111337933 -0.0023720180871699176 5.501583016672216e-07 2.848872085012972e-07 8.060924498731553e-08
DLDP_A_1 -9.640892310705308 2.2302627584998243e-05 -1.8505691913556196e-06 4.809271781932673e-10 1.2477546958721986e-10 5.870182278347927e-11
DISP_ORDER_C 1
DLDP_C_0 -537.9660585966255 0.00438167871123454 0.15676346539605587 -2.53892400946457e-09 1.8731437104829996e-07 3.635318226419379e-09
DLDP_C_1 9.00819376482459 9.025683982351825e-06 8.023564609272604e-07 -4.6769171104616986e-11 4.905979891312598e-13 -2.0188829145651968e-11
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -85 116
BEAMB -183 170
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 -5e-324 0.0 0.0 0.0 0.0 0.0
DYDX_B_0 -78.12320877751185 0.017443324537305793 -0.0002270182829371463 1.3130183991957203e-09 -1.1997580183531612e-09 1.5517524722292646e-09
#
# X and Y Offsets
#
......@@ -46,87 +46,87 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -50799.938574382 1.3575899314195e-07 6.08683779317945e-08 -8.181098643363408e-12 -3.530854798131135e-12 -3.5008828623908384e-12
DLDP_B_1 3799.996092209513 -2.7860836575978236e-08 -3.2069891966861607e-09 1.9414631054997687e-12 3.373188473217534e-13 1.0220313769441769e-13
DLDP_B_0 -2302408.4224713813 80.1158774646424 521.0999620151962 0.00043423471574272575 -0.0189396879529421 0.0012474301302523346
DLDP_B_1 32222.691943011992 -1.7667988119420177 0.16824160020477769 5.3740215081975685e-05 -1.4773356864728212e-05 8.218022678054056e-07
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI5.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC 569 1191
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
# 1 order (BEAM A) *******************
BEAMA -1249 -482
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 -0.6190375093057178 -0.000819084818469411 0.00028964716536233805 6.270789289859524e-08 -1.420775464725658e-08 -9.328521975988917e-09
DYDX_C_1 0.008680162051601499 3.330054831581405e-07 -6.469221396130517e-07 -3.9523801242915675e-11 2.810706046076844e-11 9.755545191838492e-12
DYDX_ORDER_A 1
DYDX_A_0 -73.57568140123692 0.017514585860060824 -0.0004878960518572391 -1.2757316045449461e-09 -4.7769987950268305e-09 -7.361523722591217e-10
DYDX_A_1 -0.010804966713497444 -9.089025774228726e-08 -1.692490340301291e-07 -2.312884932343764e-12 2.19828366857447e-12 -3.047268256459593e-13
#
# X and Y Offsets
#
XOFF_C 0.0
YOFF_C 0.0
XOFF_A 0.0
YOFF_A 0.0
#
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 37.50703731673491 0.002432440511720802 0.0028804968623743934 -2.602261467790905e-07 -5.419786198771479e-07 1.1296637845026923e-07
DLDP_C_1 9.251340870414325 -1.2208637137615217e-05 -3.1482145947374464e-07 1.2253266294528508e-12 3.8179361481388297e-10 -1.6796514556638682e-10
DISP_ORDER_A 1
DLDP_A_0 812.7631863772024 -0.0067149179427233785 -0.15996218717224492 3.03240722603091e-08 -4.753324952720763e-07 6.4058496199967534e-09
DLDP_A_1 -9.189545571955989 -2.8580216171212242e-05 3.976348120039773e-07 7.86872181455838e-11 2.75704228737828e-11 9.071137015505605e-12
#
SENSITIVITY_C GI.Throughput.-1st.fits
SENSITIVITY_A GI5.Throughput.1st.fits
#
# 2 order (BEAM D) *******************
BEAMD -2253 -1182
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
# -2 order (BEAM E) *******************
BEAME 1165 2439
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 -7.508248370511439 -0.0006714401608233293 0.00017558009908350287 2.984240425469985e-08 4.3819705023343136e-08 -5.025346537840718e-09
DYDX_D_1 -0.009040738692611343 -2.842628508976022e-07 2.8610552097167497e-07 2.0072941233633973e-12 2.6743473726716594e-11 -1.990153449263359e-12
DYDX_ORDER_E 1
DYDX_E_0 -64.58431118119486 0.01743322989036803 -0.0012684793007061777 8.430900621273076e-10 -3.455999855155228e-09 1.2155005837222668e-08
DYDX_E_1 -0.03186102330011877 -9.468561887637411e-08 5.880225543513495e-07 1.9152508033786483e-13 4.756556129866927e-12 -3.584535077482993e-13
#
# X and Y Offsets
#
XOFF_D 0.0
YOFF_D 0.0
XOFF_E 0.0
YOFF_E 0.0
#
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 381.03519274588444 -0.00048132954580875026 -0.0009078348689822108 5.6369489472931e-07 5.1385154496291813e-08 2.6667313984441104e-08
DLDP_D_1 -4.6147496022141326 1.501539716943773e-05 -6.231695670917471e-07 2.5625156654556145e-10 -2.0921055812964298e-11 1.4510116746037656e-11
DISP_ORDER_E 1
DLDP_E_0 224.0721309655383 0.007197461958309403 0.07212038333817478 2.1872156487291446e-09 1.8341273345615703e-08 9.100552757743326e-09
DLDP_E_1 4.1601531622692836 5.095208498538777e-07 6.201257241641928e-07 -2.8539967857985083e-11 2.7293452256572596e-12 -1.2957307695403892e-11
#
SENSITIVITY_D GI.Throughput.2st.fits
SENSITIVITY_E GI.Throughput.-2st.fits
#
# -2 order (BEAM E) *******************
BEAME 1248 2361
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
# 2 order (BEAM D) *******************
BEAMD -2369 -1142
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 -8.842745665545023 -0.0007610512902166516 0.0003383458198829188 5.974061158162743e-08 1.0142609417116612e-08 1.2101422641494325e-09
DYDX_E_1 0.015397941297630027 2.693607213384038e-08 -6.075147917008666e-07 -1.6037105086389434e-11 4.296881158063552e-12 -1.2228485054031964e-12
DYDX_ORDER_D 1
DYDX_D_0 -67.31246176143426 0.017384441143739795 -0.0007352068076391507 1.045377848684933e-08 -1.1096918912614594e-08 -3.4698381883327675e-09
DYDX_D_1 -0.005919043120345099 -1.330975675283133e-07 -4.569332620779928e-07 5.215784918467614e-12 -1.1045660777736044e-12 7.79993332711835e-13
#
# X and Y Offsets
#
XOFF_E 0.0
YOFF_E 0.0
XOFF_D 0.0
YOFF_D 0.0
#
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 555.3228122491964 -0.0032816271948183685 8.497088760215862e-05 -2.333183304786902e-07 -1.3382635330862395e-07 9.576851587183454e-08
DLDP_E_1 4.219766730845783 -1.0826443476186772e-06 9.824037028806256e-07 2.7744642560349696e-11 2.419170757157779e-11 -7.635566528813666e-11
DISP_ORDER_D 1
DLDP_D_0 719.7224863314966 -0.005697176688533596 -0.07586967989649633 2.346123896233467e-08 -2.9146329828387334e-07 7.744413775123236e-09
DLDP_D_1 -4.3492611542593425 -1.4709816817909576e-05 -1.8120551555358492e-07 1.1375330524498133e-11 -8.687874973033575e-12 1.522352258034993e-11
#
SENSITIVITY_E GI.Throughput.-2st.fits
SENSITIVITY_D GI.Throughput.2st.fits
#
......@@ -3,15 +3,15 @@ GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA 514 1178
BEAMA 481 1286
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -2.4868135735450316 7.771356835935478e-06 7.293007669020518e-05 -3.723640949820827e-08 3.924041777140374e-08 -5.3110816109428186e-09
DYDX_A_1 0.0079127710571156 2.9729743015082654e-07 -3.1180123250976507e-07 -5.258164675496368e-11 -2.7566093710108052e-11 5.668407477649057e-12
DYDX_A_0 -73.153714985464 0.017457173964633886 -0.0007975966312389871 2.0549840871545972e-09 -3.1752369867724115e-09 5.7018522000923154e-09
DYDX_A_1 -0.025980104264176972 -8.959870863963025e-08 3.445060237801273e-07 -1.6833058103098051e-13 4.968655729516156e-12 -2.3522180286076927e-13
#
# X and Y Offsets
#
......@@ -21,22 +21,22 @@ YOFF_A 0.0
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 303.2241023766399 -0.001965634825988126 -0.0002711641542390685 4.613693024110242e-07 -2.746520119818922e-08 4.084867425340394e-08
DLDP_A_1 8.992000242758873 0.000128304886978376 1.4068034009928154e-06 8.71631367024453e-10 6.790356048855898e-12 -1.3087728807972732e-10
DLDP_A_0 -850.9109790279225 0.022729359070401203 0.1685674162436968 -2.059677219668826e-07 -2.580613008516176e-06 -1.1355546353509742e-07
DLDP_A_1 9.499716466765234 -0.0001503113424711402 2.6012923906931153e-06 2.1300618961100423e-09 -4.727670268676987e-11 1.6384080503403349e-10
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_A GI6.Throughput.1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -121 80
BEAMB -162 191
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 5e-324 0.0 0.0 0.0 0.0 0.0
DYDX_B_0 -78.39339720485903 0.017406149524789784 -0.00025273708558646473 2.3958638997413713e-09 2.331546780221795e-09 2.8140192264985782e-09
#
# X and Y Offsets
#
......@@ -46,23 +46,23 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -69799.91778564677 -3.691347183476523e-08 -3.7065635005717468e-09 -1.332598739472654e-11 -9.489640066411204e-12 3.2431427064282675e-12
DLDP_B_1 -3799.995966118615 -5.051620510787558e-09 4.027709249454503e-09 7.631399411868727e-13 -1.9538246617389204e-12 -6.392684098006571e-13
DLDP_B_0 3237788.1938426266 272.5202987693508 -596.5826607384582 0.0024685909435946747 -0.05133282431883559 0.006257138184473182
DLDP_B_1 -32758.952482005596 -2.1204120581103414 0.25456440063723174 -0.00019118951127461274 -1.436463567070821e-05 1.4348033937675118e-05
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI6.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC -1219 -556
BEAMC -1255 -455
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 -3.644711332713124 0.0008001860385266981 9.479324761591071e-05 -1.743740644543708e-07 3.6478784815791542e-09 6.917592947848256e-09
DYDX_C_1 -0.005127657192091357 3.406797050005203e-07 1.6449903475316612e-07 -9.485982506821913e-11 -4.3771960897499225e-12 8.550685815444732e-12
DYDX_C_0 -73.68594638521174 0.017518014385996296 -0.00048362378096031245 1.212392711201327e-09 -2.2200677233227075e-09 -2.2306862125166058e-09
DYDX_C_1 -0.010889771247127627 -1.1485534147095884e-07 -1.7162608875118255e-07 -1.1130847373827446e-12 3.539078700006475e-12 -1.779451514405953e-13
#
# X and Y Offsets
#
......@@ -72,23 +72,23 @@ YOFF_C 0.0
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 -65.03739168271441 0.000273032145504211 -0.0009708028689378464 1.7577586213338363e-07 6.764952949264291e-08 1.755638796286074e-07
DLDP_C_1 -8.99142484287621 -0.00011046243411218466 -1.1980952998786023e-06 -1.7418950040208532e-09 2.518464449747762e-11 1.3953244305539582e-10
DLDP_C_0 1078.6745945120392 -0.0176312189072174 -0.16361425680994407 7.378517168144378e-08 2.1673962264050777e-06 -9.947322295425197e-08
DLDP_C_1 -9.418728792941984 0.00013082892941448392 -5.93121481475239e-06 -1.7669063943999543e-09 1.41264621801653e-10 2.8786662612126178e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 2 order (BEAM D) *******************
BEAMD 1163 2352
BEAMD 1140 2456
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 -11.173576155920372 0.0007519533830363816 0.0004253768680462055 -1.5201878553469454e-07 2.0472547690216743e-08 -2.0569213743460413e-09
DYDX_D_1 0.014593603600807335 -2.5136860755841604e-07 -5.949998376910171e-07 3.678337259167903e-11 -3.0972180049312983e-12 1.6165162111383372e-12
DYDX_D_0 -65.0014651002715 0.017577569366013755 -0.0012402625446315458 1.8617192882448088e-09 -7.957444727377027e-09 1.0208170148173137e-08
DYDX_D_1 -0.03181586973962627 -9.836962857490592e-08 5.857281445093791e-07 1.4953209807330546e-13 4.979222816725106e-12 -3.1758993717023825e-13
#
# X and Y Offsets
#
......@@ -98,23 +98,23 @@ YOFF_D 0.0
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 539.5784997159695 -0.0063448782452085635 0.0008190750512402471 3.567830814865618e-07 -1.7774235257059137e-08 -9.225836565044142e-08
DLDP_D_1 4.208693850792232 6.303193595129204e-05 8.011750831158397e-08 6.354810145897402e-10 -2.146543541654942e-12 2.285947747122523e-11
DLDP_D_0 -11.12811083647831 0.013976493381914609 0.07686635136582942 -2.5542068213683834e-08 -1.200761990359649e-06 5.666508207027322e-08
DLDP_D_1 4.4494183707297825 -7.243798741405312e-05 3.1829451656273764e-06 9.694770935155256e-10 -7.616318496782523e-11 -9.626882383242083e-12
#
SENSITIVITY_D GI.Throughput.2st.fits
#
# -2 order (BEAM E) *******************
BEAME -2396 -1210
BEAME -2427 -1121
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 -12.213462520279169 0.00047910742870929717 0.0005408610935256049 -7.413930918915843e-08 -8.606042861984915e-09 -2.657692925463347e-09
DYDX_E_1 -0.011203612261385857 -1.0569751604742679e-07 4.877450459862202e-07 4.101880695762023e-12 -2.7701720429242062e-12 -1.1821036616778763e-12
DYDX_E_0 -67.73998856447491 0.017607743232986212 -0.0007162330594692711 1.3111691627127919e-09 -1.2027888327978335e-08 -6.580852221959489e-09
DYDX_E_1 -0.005943985721766999 -8.57301723070765e-08 -4.568981762318159e-07 -3.345351950625046e-14 6.21964061331926e-13 -3.5750759880907235e-13
#
# X and Y Offsets
#
......@@ -124,8 +124,8 @@ YOFF_E 0.0
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 381.72885799727345 0.006609165682840584 0.0002814704660473246 -1.1404842555448189e-07 -1.62948001302065e-07 5.1470546328821954e-08
DLDP_E_1 -4.197969076185558 -4.73544762090405e-05 -3.920775527753983e-08 -8.630087518412822e-10 -1.0658253853932482e-10 1.6876118202971064e-11
DLDP_E_0 936.967595741106 -0.012552722639105524 -0.07591461239823166 2.7831800530409183e-08 9.465209885135738e-07 -4.7311414807159783e-08
DLDP_E_1 -4.380499812986055 5.7216955556917666e-05 -2.5896515522315093e-06 -7.794803261575746e-10 6.145152354312546e-11 1.0710325273408623e-11
#
SENSITIVITY_E GI.Throughput.-2st.fits
#
......
......@@ -2,41 +2,41 @@ INSTRUMETN CSSTSLS
GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA -1160 -522
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
# -1 order (BEAM C) *******************
BEAMC 469 1253
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -3.909655566307311 0.0006226535483926489 -0.00037077071526022136 -4.892818061191566e-08 1.3468087956535563e-08 3.502239756409958e-08
DYDX_A_1 -0.007230958764388139 6.773112254541168e-07 -2.5310100100560147e-07 -5.83888744199344e-11 2.2237376000044196e-11 3.205232183744099e-11
DYDX_ORDER_C 1
DYDX_C_0 -82.07370882007775 0.017537538044776313 -0.0006094377405749101 -5.660075299835249e-09 1.204548105783624e-08 -7.095936227944103e-10
DYDX_C_1 -0.012714996014749045 2.9203190269270505e-08 3.182382139046279e-07 4.893978871609639e-12 -6.426234305302795e-12 7.51985486461068e-12
#
# X and Y Offsets
#
XOFF_A 0.0
YOFF_A 0.0
XOFF_C 0.0
YOFF_C 0.0
#
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 173.89546446013748 0.01008954892257773 0.0015928760106189818 -5.369265991976866e-07 -2.4710092975855365e-07 -2.214365544737125e-08
DLDP_A_1 -10.084916055357075 0.00010773278585527017 -4.1353237907293385e-07 -1.5881686262797657e-09 -8.760310692311207e-11 -5.094623222376089e-11
DISP_ORDER_C 1
DLDP_C_0 -532.0211521847255 0.002254076113888861 0.15700167118659702 1.900937045164252e-08 5.871610806281634e-07 -1.6444367434662652e-08
DLDP_C_1 8.978593461431105 3.332578317107452e-05 -1.7981649398247447e-06 8.601260944489962e-11 -2.0710478490509867e-11 -2.1874014594467737e-11
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -85 116
BEAMB -179 174
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 0.4629787564347483 3.5261908782974086e-05 -7.806136587745538e-05 -3.008375481211044e-09 -8.0559377033469e-09 8.87672209747203e-09
DYDX_B_0 -80.7685029669117 0.017446807519433942 -0.00019671856561248195 1.9615542242859783e-09 3.185428589827707e-10 -2.851012701664145e-09
#
# X and Y Offsets
#
......@@ -46,87 +46,87 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -50799.940218929616 8.152025994245804e-07 2.1132107619337148e-08 -6.050186474862093e-11 -9.987817979628406e-12 -2.3555379660496916e-12
DLDP_B_1 3799.9960241983986 -4.262018267104231e-09 -7.131999160980144e-09 1.3956693373575935e-13 6.987091633107319e-13 2.4376633059741784e-13
DLDP_B_0 -3785304.993324402 142.00639777160097 943.2489797189085 0.005695595421105199 -0.04472821375677971 -0.00871752611534265
DLDP_B_1 58299.70748224133 -3.656614883828688 -1.9600187221856804 2.6516179360493324e-05 0.0001846421318772342 1.9124993804669216e-05
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI7.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC 559 1204
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
# 1 order (BEAM A) *******************
BEAMA -1250 -468
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 -2.500141585167653 -1.969888743137498e-05 -3.719251228351035e-05 2.2450041893993265e-09 -4.776577101251428e-09 1.3199727484804396e-08
DYDX_C_1 0.009108519277662467 -3.0705408681783576e-07 -3.132719515155802e-07 6.422536264194293e-12 1.5326983931450917e-11 -5.645216688436237e-12
DYDX_ORDER_A 1
DYDX_A_0 -81.17109125134269 0.017365321153662926 -0.0007517079947897617 1.587882421650924e-09 7.067002605860562e-09 -3.1395939761222772e-09
DYDX_A_1 -0.022553587745290052 -4.675945998583035e-08 -2.964400653317668e-07 3.780690432024221e-12 9.949885511028916e-12 1.7063499044947183e-12
#
# X and Y Offsets
#
XOFF_C 0.0
YOFF_C 0.0
XOFF_A 0.0
YOFF_A 0.0
#
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 34.898164070100904 0.0007540039296404403 0.00036424671855238316 -2.892661360428501e-07 6.976198295270433e-08 -5.228790034183333e-08
DLDP_C_1 9.700042563818466 -7.69154893119217e-05 3.934303797840372e-07 6.143351313760188e-10 9.250069220896446e-11 -4.235225015625558e-11
DISP_ORDER_A 1
DLDP_A_0 773.2005666442732 0.0033999616683489955 -0.15604410209524347 -3.648977248743764e-07 -1.0934563004351654e-06 5.160161685872039e-09
DLDP_A_1 -9.078150247540504 -4.2344044324960755e-05 4.346388001493961e-06 -5.7604535791317e-10 -2.2026858553532868e-10 -1.4874839432850177e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
SENSITIVITY_A GI7.Throughput.1st.fits
#
# 2 order (BEAM D) *******************
BEAMD -2296 -1168
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
# -2 order (BEAM E) *******************
BEAME 1142 2421
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 -9.389297829853636 -0.00015464197650568576 0.0002660281765192433 3.4852623322772082e-09 9.484803976320427e-09 7.336382512941422e-09
DYDX_D_1 -0.01112945128342416 -1.1311863974473163e-07 4.218220828671425e-07 -1.2516252053776076e-12 9.161770824233885e-12 -1.4981685450709086e-14
DYDX_ORDER_E 1
DYDX_E_0 -87.27693229809691 0.017491934076761043 -0.0008673266937346915 -1.0732902059280548e-09 3.6147617582516032e-09 1.0087049678215159e-08
DYDX_E_1 -0.009139980864644298 9.029365375125306e-08 5.2907592416417e-07 4.9830655771673295e-14 4.739706570684598e-12 -5.2567061463665703e-14
#
# X and Y Offsets
#
XOFF_D 0.0
YOFF_D 0.0
XOFF_E 0.0
YOFF_E 0.0
#
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 414.3360725349684 -0.0014510899429481371 -0.0001314674472593925 5.794445816625538e-07 6.91982254162384e-08 -5.0343316141943886e-08
DLDP_D_1 -4.778099907882847 4.6515099419075665e-05 -8.745616264507051e-07 -9.117719562248668e-11 8.6360442510841e-11 -3.463638110731034e-11
DISP_ORDER_E 1
DLDP_E_0 187.65177615629855 0.00637653152131823 0.07295940841870997 3.223696301366317e-09 2.0251926978764295e-07 -4.326818493059828e-09
DLDP_E_1 4.17537440437742 1.173408637060574e-05 -8.000493821926849e-07 2.8586986578727203e-11 -5.7469946582445485e-12 -1.2782108184381548e-11
#
SENSITIVITY_D GI.Throughput.2st.fits
SENSITIVITY_E GI.Throughput.-2st.fits
#
# -2 order (BEAM E) *******************
BEAME 1226 2383
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
# 2 order (BEAM D) *******************
BEAMD -2384 -1121
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 -12.07564081561785 0.0003538313487376174 0.0003424445292518675 -2.8281829213173136e-08 -1.9103125073139345e-09 1.3342745843474139e-08
DYDX_E_1 0.015623821782753402 -3.872409697306194e-07 -5.946762100158761e-07 1.4986070563264542e-11 8.421611722722356e-12 -3.1933488456130784e-12
DYDX_ORDER_D 1
DYDX_D_0 -85.05654886859068 0.017445201829895236 -0.0010555222655198077 1.7272027815572394e-09 1.1384834350104569e-09 -7.743289706632839e-09
DYDX_D_1 -0.025287951800945896 2.811665642029544e-08 -5.061095603665407e-07 1.2755464580192813e-12 2.3240822165394545e-12 1.4004023955307263e-12
#
# X and Y Offsets
#
XOFF_E 0.0
YOFF_E 0.0
XOFF_D 0.0
YOFF_D 0.0
#
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 531.4636178698494 -0.0033713411432347955 -0.0003951137097326675 -2.9246227861697077e-07 2.92714654261334e-09 2.5661246000406344e-08
DLDP_E_1 4.44382324896884 -3.1137971107607885e-05 7.043130188874199e-07 3.0312464416796704e-10 3.198399746849868e-11 -3.639190527684606e-11
DISP_ORDER_D 1
DLDP_D_0 742.9174325506501 -0.005125427316823133 -0.07426186412274696 1.1748310760592294e-08 -4.4747049822921297e-07 2.980663308980631e-08
DLDP_D_1 -4.26090563486898 -2.5760070449361016e-05 1.2940038754749951e-06 -9.270851066273062e-11 1.6410019536142015e-11 1.679664951067348e-11
#
SENSITIVITY_E GI.Throughput.-2st.fits
SENSITIVITY_D GI.Throughput.2st.fits
#
......@@ -3,15 +3,15 @@ GRATING GI
WAVELENGTH 6200 10000
# 1 order (BEAM A) *******************
BEAMA 512 1161
BEAMA 484 1266
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -2.9343671904486053 0.00019056381695486767 0.0002503529884221337 -3.8338160465645914e-08 2.3685382591870607e-08 -2.2222892556563732e-08
DYDX_A_1 0.007492442304389336 -1.7981554180178763e-07 -4.990663415590651e-07 3.1253609629165585e-11 -2.2001702147444277e-11 2.999403836188871e-11
DYDX_A_0 -82.00948559252825 0.017479028915150074 -0.0005520465776097865 -1.4477242358649277e-08 3.329099503310184e-08 -1.4774770322600227e-08
DYDX_A_1 -0.01269298935264234 7.022754466305543e-08 2.511646240866335e-07 1.712438663680776e-11 -3.6959469639334e-11 2.6236032883863683e-11
#
# X and Y Offsets
#
......@@ -21,22 +21,22 @@ YOFF_A 0.0
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 284.91973829602983 0.0018591544889166479 -0.0020136738535739573 -5.580625301462912e-07 -1.065647008386459e-07 2.4176637121732255e-07
DLDP_A_1 9.154722122778058 0.0001018749590946613 3.5300851406001578e-06 1.898490431905869e-09 1.2554566976921166e-10 -3.3458797343185313e-10
DLDP_A_0 -831.6876475878164 0.02066526665430972 0.16612325061079505 -2.2239794200140028e-07 -2.1480658685761417e-06 -1.2917292931387475e-07
DLDP_A_1 9.53529944825621 -0.00011856465438945138 3.221546602045884e-06 1.3622338174637354e-09 1.3637127240527112e-10 1.9079395424881992e-10
#
SENSITIVITY_A GI.Throughput.1st.fits
SENSITIVITY_A GI8.Throughput.1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -120 80
BEAMB -159 186
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 0.03499716072679382 1.2864287087295686e-05 -7.589076389651053e-05 2.6072547475845947e-08 -1.611122772062905e-08 9.615941891036791e-09
DYDX_B_0 -81.19245769731646 0.017470595318265055 -0.0001885925167936834 9.166789337603156e-10 -6.448326761270154e-10 -4.319011144192576e-09
#
# X and Y Offsets
#
......@@ -46,23 +46,23 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -69799.91815980859 1.9308188249367211e-07 2.3039811883725067e-07 -5.5093567803699396e-11 -1.1511025521549767e-11 -2.4981788325316052e-11
DLDP_B_1 -3799.9959974152075 2.142124265173412e-08 1.8968600301594307e-10 -4.682543884184239e-12 1.8887159572833137e-13 -1.5065853435577991e-13
DLDP_B_0 2174741.272336595 123.08035124921348 -351.37933718220575 0.0014428479982968871 -0.025662505747124035 -0.007059774943400425
DLDP_B_1 -22888.891510341455 -0.9570494346700471 -0.33050979229834265 -8.607697387063136e-05 -5.024381564470469e-05 1.7069703554723772e-06
#
SENSITIVITY_B GI.Throughput.0st.fits
SENSITIVITY_B GI8.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC -1209 -557
BEAMC -1245 -461
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 -2.966407573122309 0.00017931467145883436 -1.1937327382141583e-05 -3.430114664968074e-08 -1.7104028303486308e-11 1.0768834553932357e-08
DYDX_C_1 -0.005803626340330835 -4.170068439771959e-08 1.290433938281288e-07 -2.8134994496798826e-11 3.815680617576105e-12 7.512242155559056e-12
DYDX_C_0 -81.21817048034715 0.01739627705395788 -0.0007474186383750847 -8.978864536133683e-10 -6.926644141846488e-10 4.4408851687456024e-10
DYDX_C_1 -0.0227411007581037 3.501986936683563e-08 -2.9457889266723674e-07 -2.423633583668101e-12 8.123813166412755e-12 3.2905114158336383e-12
#
# X and Y Offsets
#
......@@ -72,23 +72,23 @@ YOFF_C 0.0
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 -35.96776977432674 0.0020892363434486584 -0.0012996881415610136 -9.350822663420106e-08 4.036426101885307e-08 7.330754180291592e-08
DLDP_C_1 -9.043064642406627 -8.89293205679684e-05 -1.399079778226014e-06 -1.1268829149695008e-09 -1.9064255238164075e-11 2.963098740440045e-11
DLDP_C_0 1056.8325440730064 -0.014204025694647047 -0.16318191074490812 2.6877657584237892e-08 1.6524922852421444e-06 -4.896270506435058e-08
DLDP_C_1 -9.366780530805652 9.722282136261132e-05 -2.5239759709995177e-06 -1.0065653248016178e-09 4.818614377890025e-11 3.4625327395550536e-11
#
SENSITIVITY_C GI.Throughput.-1st.fits
#
# 2 order (BEAM D) *******************
BEAMD 1156 2308
BEAMD 1139 2412
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 -10.924673575089688 0.00016185988743270996 0.00046683827051840587 8.136189930172963e-09 -1.1869040578509591e-08 -6.414416857587861e-10
DYDX_D_1 0.013421122504499828 -8.139117646528983e-08 -5.636862104195129e-07 -7.650480709282686e-12 8.277703707581925e-12 9.22249281275454e-13
DYDX_D_0 -86.93661153724817 0.017394029536549244 -0.000850347106305071 1.0484287903769868e-09 -7.613101060229243e-09 1.2954496414350653e-08
DYDX_D_1 -0.009167785202154366 9.259821898101421e-08 5.270470965611501e-07 -1.7530811078078396e-14 4.938670930269869e-12 -4.436816743930331e-14
#
# X and Y Offsets
#
......@@ -98,23 +98,23 @@ YOFF_D 0.0
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 496.42260476519164 -0.005479035905561366 0.00022852017788829206 1.6122602011653737e-07 -4.708527574783268e-09 -3.677516445527633e-08
DLDP_D_1 4.3123994141366735 5.3445560480035986e-05 3.776228695773076e-07 4.808514445271101e-10 -2.1752607038921715e-13 5.549315124273614e-12
DLDP_D_0 -41.02063907879796 0.012150663756101975 0.0782413086071074 2.8087070909532813e-08 -9.630744660075177e-07 4.175720156492698e-08
DLDP_D_1 4.496551145057613 -5.7056494878758826e-05 1.6124958031420059e-06 5.646256733036721e-10 -4.2341212204614415e-11 -1.1519456974414145e-11
#
SENSITIVITY_D GI.Throughput.2st.fits
#
# -2 order (BEAM E) *******************
BEAME -2385 -1216
BEAME -2419 -1130
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 -11.846585635638787 0.0002775660851037459 0.0005294313159274511 -2.2581643082700262e-08 -1.0333470137987452e-08 -6.219484318552529e-09
DYDX_E_1 -0.012336624365849553 -8.074439040178428e-08 5.451023075403868e-07 -5.4380660096969335e-12 -1.2614361480717028e-13 -4.742212399798437e-12
DYDX_E_0 -84.77109811313149 0.017336430223433202 -0.0010436993566318301 5.2845389728190685e-09 -1.2308729795137997e-08 -4.371327564295508e-09
DYDX_E_1 -0.025298987665096032 1.501662977208783e-08 -5.103682152829387e-07 2.087534136395027e-12 1.3803906048618432e-12 1.7789343759448706e-12
#
# X and Y Offsets
#
......@@ -124,8 +124,8 @@ YOFF_E 0.0
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 432.9384567581054 0.005178997750974504 0.0009449691765401639 -1.8761348357129504e-07 -3.237477950075083e-08 -1.0076481809007652e-07
DLDP_E_1 -4.19583584675353 -3.8378969339740695e-05 2.665443248912497e-07 -5.780138680429203e-10 -2.7900829845061575e-11 -6.002405126627185e-11
DLDP_E_0 955.5459060417518 -0.011057905708622185 -0.07535337779640625 1.171071111873667e-08 7.064974501743545e-07 -2.6104547409281025e-08
DLDP_E_1 -4.331222349026045 4.122984696540422e-05 -1.0688723993566453e-06 -4.295703512552668e-10 2.569990953920325e-11 1.284127359196491e-11
#
SENSITIVITY_E GI.Throughput.-2st.fits
#
......
......@@ -2,41 +2,41 @@ INSTRUMETN CSSTSLS
GRATING GU
WAVELENGTH 2550 4000
# 1 order (BEAM A) *******************
BEAMA -1116 -450
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
# -1 order (BEAM C) *******************
BEAMC 438 1238
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -0.8579648685539558 1.974441047904326e-05 0.00018586759676652 -1.4910123108914926e-15 -4.277382594305307e-09 5.511202004208874e-17
DYDX_A_1 -0.00013984184605205557 -2.8938989148665944e-08 3.0304907879510175e-08 1.034063231875495e-15 6.266188407356117e-12 -1.5625947443825372e-19
DYDX_ORDER_C 1
DYDX_C_0 83.01898314582873 -0.01743881197907911 -0.0004931720683539836 2.8181329339411422e-11 -8.95490176492938e-10 -1.053579417318203e-08
DYDX_C_1 0.014335358093913095 -4.2497449635952946e-08 5.728438614885856e-07 -7.935063420263354e-14 3.983681056166747e-12 1.5461441050794553e-13
#
# X and Y Offsets
#
XOFF_A 0.0
YOFF_A 0.0
XOFF_C 0.0
YOFF_C 0.0
#
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 48.79818034088662 0.001149640795096399 -0.0006025497661406755 9.94223618342318e-08 -1.0066894474864874e-13 6.526760013843253e-08
DLDP_A_1 -3.7943469311330174 -5.42743761792813e-05 1.1268365383133654e-07 -1.5901576776956405e-09 -2.7341503997896093e-17 -1.2205741455228057e-11
DISP_ORDER_C 1
DLDP_C_0 364.9101632013059 -0.0015728310306061595 -0.07635288491376326 -2.343966526903431e-08 1.0362470719640017e-06 3.643516878520644e-08
DLDP_C_1 4.404010179798589 -7.021194196570792e-05 -2.334433793027881e-06 7.932039412035062e-10 5.584867075511059e-11 -9.587685502849045e-12
#
SENSITIVITY_A GU.Throughput.1st.fits
SENSITIVITY_C GU.Throughput.-1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -85 117
BEAMB -157 198
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 0.10690630040775706 -4.627332633822499e-06 -2.3159961865308403e-05 3.298289717454347e-16 1.002457826835898e-09 2.8501668705350103e-16
DYDX_B_0 81.35838346852027 -0.01745261174200106 -0.00013087314531725778 1.8510508472557096e-11 5.729756750155631e-11 -9.338095325436204e-12
#
# X and Y Offsets
#
......@@ -46,87 +46,87 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 54679.39684650934 -19.728292760319803 -9.792938702552238e-08 0.0012274181967951324 1.1897818911290553e-11 3.911069419608574e-12
DLDP_B_1 -3478.626554705143 1.3152195170491838 -1.4689304244964376e-08 -8.18278805194542e-05 1.688194728060797e-12 5.012126368082255e-13
DLDP_B_0 84819.420268286 -2.108784185066009 -23.662435226106524 1.2371321180611514e-05 0.0005968627186678796 -3.279766975241143e-06
DLDP_B_1 1322.6480583815567 -0.024699871432904152 0.0006806814610583786 -7.119813421784137e-07 1.3222224611438883e-07 -9.522755052927134e-08
#
SENSITIVITY_B GU.Throughput.0st.fits
SENSITIVITY_B GU1.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC 492 1193
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
# 1 order (BEAM A) *******************
BEAMA -1151 -387
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 -0.7141848112333804 -5.04487513827462e-06 0.00015471935463847038 -7.014900817242317e-15 1.0929298687685976e-09 1.5741557084177702e-16
DYDX_C_1 0.0027492227533061912 3.5138528790228245e-09 -5.955850399858713e-07 3.427213002653244e-18 -7.613092613195848e-13 4.139822785657121e-18
DYDX_ORDER_A 1
DYDX_A_0 82.83220285169969 -0.01741732647148964 -0.0005504521041584722 3.392880473441122e-10 -4.939791364893595e-09 3.6871358890359117e-09
DYDX_A_1 0.017361823846671686 -2.9280446955549605e-08 -4.751950195415369e-08 -3.49418649004478e-13 7.481273728821045e-12 6.809209039445107e-12
#
# X and Y Offsets
#
XOFF_C 0.0
YOFF_C 0.0
XOFF_A 0.0
YOFF_A 0.0
#
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 49.0874047302965 0.003769483506859313 0.0004946525924919139 -4.851580074408997e-07 6.436590260997547e-14 -5.358027314184083e-08
DLDP_C_1 3.496317212625788 5.6378717176716276e-05 2.9629125704684116e-07 1.6797981737450685e-09 6.528002021758798e-17 -3.2093954809331144e-11
DISP_ORDER_A 1
DLDP_A_0 -263.21807182268725 0.0007396538243560613 0.08069104754016349 -4.753817792718285e-08 -9.50603042563745e-07 -4.879635531400435e-08
DLDP_A_1 -4.65607278480529 6.668232085073225e-05 2.423934470488935e-06 -8.28342618004064e-10 -2.84161920091609e-11 -2.8891986306547315e-11
#
SENSITIVITY_C GU.Throughput.-1st.fits
SENSITIVITY_A GU1.Throughput.1st.fits
#
# 2 order (BEAM D) *******************
BEAMD -2165 -1013
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
# -2 order (BEAM E) *******************
BEAME 1060 2384
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 -2.106939125335775 2.910542304113313e-05 0.0004564427303190319 1.2607563885812768e-14 -6.305371040561855e-09 3.6839544062510705e-17
DYDX_D_1 -0.0008727377151777036 -3.574005433242036e-08 1.8906445736936065e-07 -5.341623280966443e-16 7.744222476838046e-12 -2.0367190878495254e-16
DYDX_ORDER_E 1
DYDX_E_0 84.27925420670302 -0.017410652820544093 -0.0007083620847065568 2.1354634124629223e-10 -4.601328527401666e-09 -1.3720067152933878e-08
DYDX_E_1 0.013400096637900389 -5.043469221384282e-08 7.455821962908892e-07 -1.5486165634090904e-13 4.458046511629148e-12 1.5668532425585364e-13
#
# X and Y Offsets
#
XOFF_D 0.0
YOFF_D 0.0
XOFF_E 0.0
YOFF_E 0.0
#
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 78.48698841959778 0.0027627221718891214 -0.00038788387276238526 6.805209703828735e-08 -9.024310970556539e-13 4.201538493013777e-08
DLDP_D_1 -1.8578764243540793 -2.5908713737841246e-05 -9.586167232804246e-08 -6.646832184617744e-10 -1.7362198220260625e-16 1.0383768891016449e-11
DISP_ORDER_E 1
DLDP_E_0 374.515206532422 0.00104513682737227 -0.035155378442613405 -8.384085265449387e-09 5.030197818899751e-07 1.8773202222857674e-08
DLDP_E_1 2.0309876137111793 -3.407822979751493e-05 -1.1232725399190938e-06 3.852590932461435e-10 2.71690605474166e-11 -5.571525824361045e-12
#
SENSITIVITY_D GU.Throughput.2st.fits
SENSITIVITY_E GU.Throughput.-2st.fits
#
# -2 order (BEAM E) *******************
BEAME 1092 2385
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
# 2 order (BEAM D) *******************
BEAMD -2163 -970
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 -2.20514006896569 2.9051997594102368e-05 0.00047771653989605765 -1.912692705609593e-14 -6.293715169166762e-09 3.935667733125835e-16
DYDX_E_1 0.003698183554891061 -1.9034332412054844e-08 -8.011647070145565e-07 2.414951487944578e-18 4.123548306803602e-12 -2.1651713505639886e-16
DYDX_ORDER_D 1
DYDX_D_0 85.979844243631 -0.017282995273613638 -0.0010865458899144047 5.270429311608331e-10 -2.6329592099183747e-08 1.948198575029312e-09
DYDX_D_1 0.019928662282098032 3.696656357880736e-08 -4.225133265249223e-07 -2.66573158977996e-13 -3.3183721739947802e-12 -3.740516391227021e-12
#
# X and Y Offsets
#
XOFF_E 0.0
YOFF_E 0.0
XOFF_D 0.0
YOFF_D 0.0
#
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 267.25412011266627 -0.0026298632873131157 0.0004071073128438848 -7.17491866700825e-08 -6.943568517806865e-13 -4.4096902871348884e-08
DLDP_E_1 1.5845572956062102 2.914217050446588e-05 -3.907234530194168e-08 6.62081246577581e-10 1.4327811046343182e-16 4.232128463972533e-12
DISP_ORDER_D 1
DLDP_D_0 -49.325490917832106 -0.0013913294735450126 0.03917039027025591 1.2589306806760954e-08 -4.5866699326357666e-07 -1.1548873411672944e-08
DLDP_D_1 -2.2626349050504464 3.111207041653475e-05 1.011396352184425e-06 -3.5032793070978125e-10 -2.463923699861252e-11 6.7102786434387836e-12
#
SENSITIVITY_E GU.Throughput.-2st.fits
SENSITIVITY_D GU.Throughput.2st.fits
#
......@@ -3,15 +3,15 @@ GRATING GU
WAVELENGTH 2550 4000
# 1 order (BEAM A) *******************
BEAMA 428 1138
BEAMA 442 1265
MMAG_EXTRACT_A 30
MMAG_MARK_A 30
#
# Trace description
#
DYDX_ORDER_A 1
DYDX_A_0 -0.66185084178326 1.4288258838692961e-05 0.00014338189744544244 7.961721260174768e-17 -3.095376536199516e-09 1.0306906840629792e-16
DYDX_A_1 0.0027976379829719733 3.379133266929145e-09 -6.060732120996456e-07 1.112269287480878e-16 -7.31944254065208e-13 -1.222812083268464e-16
DYDX_A_0 84.35406464886732 -0.01750304209483829 -0.0007370178211879694 4.078377361591192e-09 1.0416398982213647e-08 -9.93367221472846e-09
DYDX_A_1 0.014043984312314519 6.604085358127424e-08 6.248429563541589e-07 -6.45059671904413e-12 -1.2390709488390618e-11 -6.188331703848061e-13
#
# X and Y Offsets
#
......@@ -21,22 +21,22 @@ YOFF_A 0.0
# Dispersion solution
#
DISP_ORDER_A 1
DLDP_A_0 165.68292000181646 0.0015566027352682827 0.0009254976369687825 5.3414898579020046e-09 -9.889628363184508e-14 -1.0024883675019196e-07
DLDP_A_1 3.8870570512402245 9.974046068530595e-05 -1.4295590389801655e-06 3.1167441365411397e-09 1.417487273608447e-16 1.5484819837181571e-10
DLDP_A_0 234.78662029772417 -0.00024165304882502777 -0.07445888157060641 -2.0769474095992274e-07 1.9338982894155568e-06 1.008634294691689e-07
DLDP_A_1 4.246558855407728 -0.00012096082925853113 -3.91014830789146e-06 2.9872643582603373e-09 2.034452952713036e-10 -2.7804208632832892e-11
#
SENSITIVITY_A GU.Throughput.1st.fits
SENSITIVITY_A GU2.Throughput.1st.fits
#
# 0 order (BEAM B) *******************
BEAMB -121 80
BEAMB -132 221
MMAG_EXTRACT_B 30
MMAG_MARK_B 30
#
# Trace description
#
DYDX_ORDER_B 0
DYDX_B_0 0.13611574782251787 1.294554091330436e-05 -2.948777617967336e-05 -2.63040348084689e-15 -2.804494768970861e-09 -5.329394953326246e-15
DYDX_B_0 82.91782550095616 -0.017450074030956903 -0.00034211980919903514 -5.229479577962483e-10 6.618188334096981e-10 4.5712407536340074e-11
#
# X and Y Offsets
#
......@@ -46,23 +46,23 @@ YOFF_B 0.0
# Dispersion solution
#
DISP_ORDER_B 1
DLDP_B_0 -31500.081833227378 -1.29572162110847e-07 -1.1337253813525905e-07 2.741425341671721e-11 -1.908648884557315e-12 9.624058833397099e-12
DLDP_B_1 -1700.0040024132616 -8.299196822825206e-09 1.6694688027840687e-09 1.3782404892991149e-12 9.940250967450329e-14 -9.6824514077558e-14
DLDP_B_0 7763276.642055119 -20266.736198394356 1255.309384604854 5.066171367500259 1.2647000472616756 -0.25632575767112603
DLDP_B_1 -143465.8971715863 684.9306681233783 -157.3534822656011 -0.2303808137854618 0.03539958163679847 0.005924035996712881
#
SENSITIVITY_B GU.Throughput.0st.fits
SENSITIVITY_B GU2.Throughput.0st.fits
#
# -1 order (BEAM C) *******************
BEAMC -1154 -462
BEAMC -1148 -348
MMAG_EXTRACT_C 30
MMAG_MARK_C 30
#
# Trace description
#
DYDX_ORDER_C 1
DYDX_C_0 -0.8315346150463981 5.0198529393279955e-05 0.0001801418146367924 -7.973220526527133e-16 -1.0874898224312304e-08 -4.649475516861549e-17
DYDX_C_1 -0.0004831850282262942 4.4703024254268985e-09 1.0467587318097426e-07 -6.245290748577401e-16 -9.67808789638995e-13 1.8675680517829847e-20
DYDX_C_0 84.48438208032648 -0.0174294630501102 -0.0008297385322911171 1.0278576319068791e-10 -1.6206196945736706e-09 1.4081881175239814e-09
DYDX_C_1 0.017966288448655637 -3.812108567100483e-08 -9.639407806510928e-08 -2.6101176754415033e-13 7.540660643326984e-12 2.8650611980264644e-13
#
# X and Y Offsets
#
......@@ -72,23 +72,23 @@ YOFF_C 0.0
# Dispersion solution
#
DISP_ORDER_C 1
DLDP_C_0 -52.89174386244325 -0.00102801750431614 -0.0004965382285477562 5.591391869561681e-08 -1.537085551032691e-14 5.378450114674051e-08
DLDP_C_1 -4.030532634049651 -9.83133712732272e-05 -8.101921584697645e-07 -2.8471625922359545e-09 4.574279151348612e-17 8.775913924619851e-11
DLDP_C_0 -114.99204037518963 -0.0002851148556557194 0.07618828521866121 1.6197262276297848e-07 -1.8609664190591673e-06 -3.4934289673442495e-08
DLDP_C_1 -4.384937407874203 0.00011641225592750675 3.5675060100570783e-06 -2.792239538482911e-09 -1.9655627522701245e-10 4.080224175354599e-11
#
SENSITIVITY_C GU.Throughput.-1st.fits
#
# 2 order (BEAM D) *******************
BEAMD 994 2285
BEAMD 1036 2395
MMAG_EXTRACT_D 30
MMAG_MARK_D 30
#
# Trace description
#
DYDX_ORDER_D 1
DYDX_D_0 -1.9194976847857337 5.2522649333701604e-05 0.00041583572415658347 -7.945377957980844e-16 -1.1378389323146788e-08 -9.30553377012502e-16
DYDX_D_1 0.0035512682123718664 -1.335162450569774e-08 -7.693387103306084e-07 4.782557131456633e-17 2.8923723305608908e-12 -3.557167801553638e-18
DYDX_D_0 85.51557888637772 -0.01737556507560854 -0.0009366488032935661 4.690127320463887e-10 -9.65491876558307e-09 -1.3508069405614662e-08
DYDX_D_1 0.013386089023258904 -5.0296922137720065e-08 7.477047935287639e-07 -1.6381596741033283e-13 4.453036790592808e-12 1.4702385062924545e-13
#
# X and Y Offsets
#
......@@ -98,23 +98,23 @@ YOFF_D 0.0
# Dispersion solution
#
DISP_ORDER_D 1
DLDP_D_0 267.2488913258691 -0.000692586412714866 -0.00040750884806534625 -4.7176510316247026e-08 6.27161411708197e-14 4.4140866539890636e-08
DLDP_D_1 1.803765292229598 4.764581253384267e-05 1.9306562859458874e-07 1.4970745446470203e-09 1.0274286612324085e-16 -2.0912673232606236e-11
DLDP_D_0 291.1677555103135 0.001187860359272897 -0.034517196425985434 -6.489750623622182e-08 9.172947129359239e-07 3.5899182499666384e-08
DLDP_D_1 1.977436765121087 -5.7394957421952916e-05 -1.93104149416814e-06 1.3821731055498225e-09 9.643057031548263e-11 -5.0860611886083745e-12
#
SENSITIVITY_D GU.Throughput.2st.fits
#
# -2 order (BEAM E) *******************
BEAME -2224 -1008
BEAME -2195 -923
MMAG_EXTRACT_E 30
MMAG_MARK_E 30
#
# Trace description
#
DYDX_ORDER_E 1
DYDX_E_0 -2.0905850693944563 5.4359066390605035e-05 0.00045289971366087875 -4.304782162448096e-15 -1.1776224473350576e-08 -2.4120023848357506e-16
DYDX_E_1 -0.0011960850677701557 -2.5552822787103083e-08 2.5911619508272597e-07 2.7377051875450244e-17 5.5356793066910265e-12 1.4408483631640674e-16
DYDX_E_0 85.44679905070389 -0.017412985725980823 -0.0010207863035582257 5.251674029790015e-11 -3.740698169232156e-09 3.0648418153504833e-09
DYDX_E_1 0.01849745549523256 -3.7191503970699893e-08 -1.979534467794693e-07 -3.126457894470033e-13 7.940395317105765e-12 2.4821923491796853e-13
#
# X and Y Offsets
#
......@@ -124,8 +124,8 @@ YOFF_E 0.0
# Dispersion solution
#
DISP_ORDER_E 1
DLDP_E_0 77.62095386201321 0.001634089927114338 6.329052569063417e-05 -4.583877261405292e-08 1.1176993622575856e-13 -6.85557045608049e-09
DLDP_E_1 -1.9428021379066338 -4.579054863679852e-05 -6.477134858663041e-08 -1.4396707219822777e-09 1.1242679835593742e-16 7.015946375529048e-12
DLDP_E_0 48.499999235572 -0.0018734734341022791 0.03682779423565926 7.348524051387277e-08 -8.772942121815387e-07 -3.0613799355727e-08
DLDP_E_1 -2.113607414257356 5.4987440040572334e-05 1.866118696212413e-06 -1.3296976876872248e-09 -9.296481018300224e-11 3.496612591545741e-12
#
SENSITIVITY_E GU.Throughput.-2st.fits
#
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment