diff --git a/Catalog/C3Catalog.py b/Catalog/C3Catalog.py index dd066b939d4cf650d9378756769bbb05f468e982..9a750603d0ad60dd3514963c431efc3d5c0dc1d6 100644 --- a/Catalog/C3Catalog.py +++ b/Catalog/C3Catalog.py @@ -14,6 +14,12 @@ from ObservationSim.MockObject import CatalogBase, Star, Galaxy, Quasar from ObservationSim.MockObject._util import seds, sed_assign, extAv, tag_sed, getObservedSED from ObservationSim.Astrometry.Astrometry_util import on_orbit_obs_position +try: + import importlib.resources as pkg_resources +except ImportError: + # Try backported to PY<37 'importlib_resources' + import importlib_resources as pkg_resources + NSIDE = 128 class C3Catalog(CatalogBase): @@ -21,10 +27,14 @@ class C3Catalog(CatalogBase): super().__init__() self.cat_dir = os.path.join(config["data_dir"], config["input_path"]["cat_dir"]) self.seed_Av = config["random_seeds"]["seed_Av"] - self.normalize_dir = os.path.join(config["data_dir"], config["SLS_path"]["SLS_norm"]) - - self.normF_star = Table.read(os.path.join(self.normalize_dir, 'SLOAN_SDSS.g.fits')) - self.normF_galaxy = Table.read(os.path.join(self.normalize_dir, 'lsst_throuput_g.fits')) + # self.normalize_dir = os.path.join(config["data_dir"], config["SLS_path"]["SLS_norm"]) + + # self.normF_star = Table.read(os.path.join(self.normalize_dir, 'SLOAN_SDSS.g.fits')) + # self.normF_galaxy = Table.read(os.path.join(self.normalize_dir, 'lsst_throuput_g.fits')) + with pkg_resources.path('Catalog.data', 'SLOAN_SDSS.g.fits') as filter_path: + self.normF_star = filter_path + with pkg_resources.path('Catalog.data', 'lsst_throuput_g.fits') as filter_path: + self.normF_star = filter_path self.config = config self.chip = chip @@ -136,14 +146,15 @@ class C3Catalog(CatalogBase): # Apply astrometric modeling ra_arr = stars["RA"][:] dec_arr = stars["Dec"][:] - if "astrometric_lib" in self.config["obs_setting"] and self.config["obs_setting"]["enable_astrometric_model"]: + # if "astrometric_lib" in self.config["obs_setting"] and self.config["obs_setting"]["enable_astrometric_model"]: + if self.config["obs_setting"]["enable_astrometric_model"]: ra_list = ra_arr.tolist() dec_list = dec_arr.tolist() pmra_list = np.zeros(nstars).tolist() pmdec_list = np.zeros(nstars).tolist() rv_list = np.zeros(nstars).tolist() parallax_list = [1e-9] * nstars - lib_path = os.path.join(self.config["data_dir"], self.config["obs_setting"]["astrometric_lib"]) + # lib_path = os.path.join(self.config["data_dir"], self.config["obs_setting"]["astrometric_lib"]) dt = datetime.fromtimestamp(self.pointing.timestamp) date_str = dt.date().isoformat() time_str = dt.time().isoformat() @@ -164,7 +175,7 @@ class C3Catalog(CatalogBase): input_epoch="J2015.5", input_date_str=date_str, input_time_str=time_str, - lib_path=lib_path + # lib_path=lib_path ) for istars in range(nstars): param = self.initialize_param() diff --git a/Catalog/data/SLOAN_SDSS.g.fits b/Catalog/data/SLOAN_SDSS.g.fits new file mode 100644 index 0000000000000000000000000000000000000000..99ac0cefbd287526967ec46e4037bf99ead25162 Binary files /dev/null and b/Catalog/data/SLOAN_SDSS.g.fits differ diff --git a/Catalog/data/__init__.py b/Catalog/data/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Catalog/data/__pycache__/__init__.cpython-38.pyc b/Catalog/data/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95578e1f8ac239a9e60e4a7ad5a21fdf13163c89 Binary files /dev/null and b/Catalog/data/__pycache__/__init__.cpython-38.pyc differ diff --git a/Catalog/data/lsst_throuput_g.fits b/Catalog/data/lsst_throuput_g.fits new file mode 100644 index 0000000000000000000000000000000000000000..4a64c23690364d337bc87fd52342748bd949a104 Binary files /dev/null and b/Catalog/data/lsst_throuput_g.fits differ diff --git a/ObservationSim/Astrometry/Astrometry_util.py b/ObservationSim/Astrometry/Astrometry_util.py index 4667a17d695dbd38ddb7ff62faaaf4b81a54b20d..1d32cb48eebe6410b13e029637177005ddf2e64c 100644 --- a/ObservationSim/Astrometry/Astrometry_util.py +++ b/ObservationSim/Astrometry/Astrometry_util.py @@ -1,6 +1,12 @@ from ctypes import * import numpy as np +try: + import importlib.resources as pkg_resources +except ImportError: + # Try backported to PY<37 'importlib_resources' + import importlib_resources as pkg_resources + def checkInputList(input_list, n): if not isinstance(input_list, list): raise TypeError("Input type is not list!", input_list) @@ -11,7 +17,7 @@ def checkInputList(input_list, n): if len(input_list) != n: raise RuntimeError("Length of input list is not equal to stars' number!", input_list) -def on_orbit_obs_position(input_ra_list, input_dec_list, input_pmra_list, input_pmdec_list, input_rv_list, input_parallax_list, input_nstars, input_x, input_y, input_z, input_vx, input_vy, input_vz, input_epoch, input_date_str, input_time_str, lib_path): +def on_orbit_obs_position(input_ra_list, input_dec_list, input_pmra_list, input_pmdec_list, input_rv_list, input_parallax_list, input_nstars, input_x, input_y, input_z, input_vx, input_vy, input_vz, input_epoch, input_date_str, input_time_str, lib_path=None): #Check input parameters if not isinstance(input_nstars, int): raise TypeError("Parameter 7 is not int!", input_nstars) @@ -83,7 +89,9 @@ def on_orbit_obs_position(input_ra_list, input_dec_list, input_pmra_list, input_ if not (input_second>=0 and input_second<60.0): raise TypeError("Parameter 16 second range error [0 ~ 60)!", input_second) #Inital dynamic lib - shao = cdll.LoadLibrary(lib_path) + # shao = cdll.LoadLibrary(lib_path) + with pkg_resources.path('ObservationSim.Astrometry.lib', "libshao.so") as lib_path: + shao = cdll.LoadLibrary(lib_path) shao.onOrbitObs.restype = c_int d3 = c_double * 3 diff --git a/ObservationSim/Astrometry/lib/__init__.py b/ObservationSim/Astrometry/lib/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ObservationSim/Astrometry/lib/__pycache__/__init__.cpython-38.pyc b/ObservationSim/Astrometry/lib/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..31f63f42d8602920cd10723ff73130eeb79362f6 Binary files /dev/null and b/ObservationSim/Astrometry/lib/__pycache__/__init__.cpython-38.pyc differ diff --git a/ObservationSim/Astrometry/lib/libshao.so b/ObservationSim/Astrometry/lib/libshao.so new file mode 100644 index 0000000000000000000000000000000000000000..47d97a44a74c8f011914dc07f52d8957c81eff39 Binary files /dev/null and b/ObservationSim/Astrometry/lib/libshao.so differ diff --git a/ObservationSim/Config/Config.py b/ObservationSim/Config/Config.py index b9478b3495b913924a206ee097b817a5991880ec..4778a7e19e6db8e11ba7b40dc13b36f5135355bb 100755 --- a/ObservationSim/Config/Config.py +++ b/ObservationSim/Config/Config.py @@ -26,18 +26,24 @@ def config_dir(config, work_dir=None, data_dir=None): # SED catalog directory # TODO: SED_dir is deprecated path_dict["SED_dir"] = os.path.join(path_dict["data_dir"], "imageSims/Catalog/SEDObject") + # Directories/files for instrument parameters, e.g. efficiency curves. - path_dict["filter_dir"] = os.path.join(path_dict["data_dir"], config["Efficiency_curve_path"]["filter_eff"]) - path_dict["ccd_dir"] = os.path.join(path_dict["data_dir"], config["Efficiency_curve_path"]["ccd_eff"]) - path_dict["mirror_file"] = os.path.join(path_dict["data_dir"], config["Efficiency_curve_path"]["mirror_eff"]) + # path_dict["filter_dir"] = os.path.join(path_dict["data_dir"], config["Efficiency_curve_path"]["filter_eff"]) + # path_dict["ccd_dir"] = os.path.join(path_dict["data_dir"], config["Efficiency_curve_path"]["ccd_eff"]) + # path_dict["mirror_file"] = os.path.join(path_dict["data_dir"], config["Efficiency_curve_path"]["mirror_eff"]) # Cosmic-ray data directory: - path_dict["CRdata_dir"] = os.path.join(path_dict["data_dir"], config["CR_data_path"]) - path_dict["sky_file"] = os.path.join(path_dict["data_dir"], config["sky_data_path"]) + # path_dict["CRdata_dir"] = os.path.join(path_dict["data_dir"], config["CR_data_path"]) + + # if "sky_file" in config: + # path_dict["sky_file"] = os.path.join(path_dict["data_dir"], config["sky_file"]) + # else: + # path_dict["sky_file"] = 'sky_emiss_hubble_50_50_A.dat' + # path_dict["sky_file"] = os.path.join(path_dict["data_dir"], config["sky_data_path"]) # Slitless spectroscopy realted - path_dict["sls_dir"] = os.path.join(path_dict["data_dir"], config["SLS_path"]["SLS_conf"]) - path_dict["normalize_dir"] = os.path.join(path_dict["data_dir"], config["SLS_path"]["SLS_norm"]) + # path_dict["sls_dir"] = os.path.join(path_dict["data_dir"], config["SLS_path"]["SLS_conf"]) + # path_dict["normalize_dir"] = os.path.join(path_dict["data_dir"], config["SLS_path"]["SLS_norm"]) return path_dict diff --git a/ObservationSim/Instrument/Chip/Chip.py b/ObservationSim/Instrument/Chip/Chip.py index da25552da7111abb9b3f373d3b59039fa7341313..5c6aea744acecfbb523135098cd28c05fdb0e9ab 100755 --- a/ObservationSim/Instrument/Chip/Chip.py +++ b/ObservationSim/Instrument/Chip/Chip.py @@ -10,8 +10,14 @@ from ObservationSim.Instrument.Chip import Effects as effects from ObservationSim.Instrument.FocalPlane import FocalPlane from ObservationSim.Config.Header import generatePrimaryHeader, generateExtensionHeader +try: + import importlib.resources as pkg_resources +except ImportError: + # Try backported to PY<37 'importlib_resources' + import importlib_resources as pkg_resources + class Chip(FocalPlane): - def __init__(self, chipID, ccdEffCurve_dir, CRdata_dir, normalize_dir=None, sls_dir=None, config=None, treering_func=None): + def __init__(self, chipID, ccdEffCurve_dir=None, CRdata_dir=None, sls_dir=None, config=None, treering_func=None): # Get focal plane (instance of paraent class) info # TODO: use chipID to config individual chip? super().__init__() @@ -40,17 +46,21 @@ class Chip(FocalPlane): self.bound = self.getChipLim() self.ccdEffCurve_dir = ccdEffCurve_dir self.CRdata_dir = CRdata_dir - self.normalize_dir = normalize_dir - self.sls_dir=sls_dir + # self.sls_dir=sls_dir # self.sls_conf = os.path.join(self.sls_dir, self.getChipSLSConf()) slsconfs = self.getChipSLSConf() if np.size(slsconfs) == 1: - self.sls_conf = [os.path.join(self.sls_dir, slsconfs)] + # self.sls_conf = [os.path.join(self.sls_dir, slsconfs)] + with pkg_resources.path('ObservationSim.Instrument.data.sls_conf', slsconfs) as conf_path: + self.sls_conf = str(conf_path) else: - self.sls_conf = [os.path.join(self.sls_dir, slsconfs[0]), os.path.join(self.sls_dir, slsconfs[1])] + # self.sls_conf = [os.path.join(self.sls_dir, slsconfs[0]), os.path.join(self.sls_dir, slsconfs[1])] + self.sls_conf = [] + with pkg_resources.path('ObservationSim.Instrument.data.sls_conf', slsconfs[0]) as conf_path: + self.sls_conf.append(str(conf_path)) + with pkg_resources.path('ObservationSim.Instrument.data.sls_conf', slsconfs[1]) as conf_path: + self.sls_conf.append(str(conf_path)) - if self.normalize_dir is not None: - self._getNormF() self.effCurve = self._getChipEffCurve(self.filter_type) self._getCRdata() @@ -77,10 +87,6 @@ class Chip(FocalPlane): else: return "photometric" - def _getNormF(self): - self.normF_star = Table.read(os.path.join(self.normalize_dir, 'SLOAN_SDSS.g.fits')) - self.normF_galaxy = Table.read(os.path.join(self.normalize_dir, 'lsst_throuput_g.fits')) - def _getChipEffCurve(self, filter_type): # CCD efficiency curves if filter_type in ['nuv', 'u', 'GU']: filename = 'UV0.txt' @@ -92,15 +98,19 @@ class Chip(FocalPlane): if filter_type in ['g', 'r', 'i', 'z', 'y']: mirror_eff = 0.8 if filter_type in ['GU', 'GV', 'GI']: mirror_eff = 1. # Not sure if this is right - path = os.path.join(self.ccdEffCurve_dir, filename) - table = Table.read(path, format='ascii') + # path = os.path.join(self.ccdEffCurve_dir, filename) + # table = Table.read(path, format='ascii') + with pkg_resources.path('ObservationSim.Instrument.data.ccd', filename) as ccd_path: + table = Table.read(ccd_path, format='ascii') throughput = galsim.LookupTable(x=table['col1'], f=table['col2']*mirror_eff, interpolant='linear') bandpass = galsim.Bandpass(throughput, wave_type='nm') return bandpass def _getCRdata(self): - path = os.path.join(self.CRdata_dir, 'wfc-cr-attachpixel.dat') - self.attachedSizes = np.loadtxt(path) + # path = os.path.join(self.CRdata_dir, 'wfc-cr-attachpixel.dat') + # self.attachedSizes = np.loadtxt(path) + with pkg_resources.path('ObservationSim.Instrument.data', "wfc-cr-attachpixel.dat") as cr_path: + self.attachedSizes = np.loadtxt(cr_path) def getChipFilter(self, chipID=None, filter_layout=None): """Return the filter index and type for a given chip #(chipID) diff --git a/ObservationSim/Instrument/Filter.py b/ObservationSim/Instrument/Filter.py index 5268ddc5119177c8273f73fb73a821af101d5d15..1ca59218b7b57db43d0fbc0b009312f2648a8571 100755 --- a/ObservationSim/Instrument/Filter.py +++ b/ObservationSim/Instrument/Filter.py @@ -6,14 +6,20 @@ import numpy as np from ObservationSim.Instrument._util import photonEnergy from ObservationSim.Instrument.FilterParam import FilterParam +try: + import importlib.resources as pkg_resources +except ImportError: + # Try backported to PY<37 'importlib_resources' + import importlib_resources as pkg_resources + class Filter(object): def __init__(self, filter_id, filter_type, filter_param, ccd_bandpass): self.filter_id = filter_id self.filter_type = filter_type self.ccd_bandpass = ccd_bandpass self._getParam(filter_param, filter_type) - if self.filter_dir is not None: - self.bandpass_full, self.bandpass_sub_list = self._get_bandpasses(self.filter_dir) + # if self.filter_dir is not None: + self.bandpass_full, self.bandpass_sub_list = self._get_bandpasses() self.survey_type = self._getSurveyType() def _getSurveyType(self): @@ -31,7 +37,7 @@ class Filter(object): self.sky_background = filter_param.param[filter_type][5] self.mag_saturation = filter_param.param[filter_type][6] self.mag_dim = filter_param.param[filter_type][7] - self.filter_dir = filter_param.filter_dir + # self.filter_dir = filter_param.filter_dir def is_too_bright(self, mag): return mag <= self.mag_saturation - 1.0 @@ -39,17 +45,21 @@ class Filter(object): def is_too_dim(self, mag): return mag >= self.mag_dim + 1.0 - def _get_bandpasses(self, filter_dir, unit='A'): + def _get_bandpasses(self, filter_dir=None, unit='A'): if self.filter_id < 7: # Photometric # Get full-bandpass - filter_file = os.path.join(filter_dir, self.filter_type+".dat") - bandpass_full = galsim.Bandpass(filter_file, wave_type=unit) + # filter_file = os.path.join(filter_dir, self.filter_type+".dat") + # bandpass_full = galsim.Bandpass(filter_file, wave_type=unit) + with pkg_resources.path('ObservationSim.Instrument.data.filters', self.filter_type.lower() + '.txt') as filter_file: + bandpass_full = galsim.Bandpass(str(filter_file), wave_type=unit) bandpass_full = bandpass_full * self.ccd_bandpass # Get sub-bandpasses bandpass_sub_list = [] - wave_bin_file = os.path.join(filter_dir, self.filter_type.lower() + "_sub.list") - wave_points = open(wave_bin_file).read().splitlines() + # wave_bin_file = os.path.join(filter_dir, self.filter_type.lower() + "_sub.list") + # wave_points = open(wave_bin_file).read().splitlines() + with pkg_resources.path('ObservationSim.Instrument.data.filters', self.filter_type.lower() + "_sub.list") as wave_bin_file: + wave_points = open(wave_bin_file).read().splitlines() for i in range(2, len(wave_points), 2): blim = max(float(wave_points[i-2])*0.1, bandpass_full.blue_limit) @@ -65,8 +75,10 @@ class Filter(object): con_spec = galsim.LookupTable(sls_lamb, sls_lamb, interpolant='nearest') bandpass_full = galsim.Bandpass(con_spec, wave_type=unit) bandpass_sub_list = [] - wave_bin_file = os.path.join(filter_dir, self.filter_type.lower() + "_sub.list") - wave_points = open(wave_bin_file).read().splitlines() + # wave_bin_file = os.path.join(filter_dir, self.filter_type.lower() + "_sub.list") + # wave_points = open(wave_bin_file).read().splitlines() + with pkg_resources.path('ObservationSim.Instrument.data.filters', self.filter_type.lower() + "_sub.list") as wave_bin_file: + wave_points = open(wave_bin_file).read().splitlines() for i in range(2, len(wave_points), 2): blim = max(float(wave_points[i - 2]) * 0.1, bandpass_full.blue_limit) rlim = min(float(wave_points[i]) * 0.1, bandpass_full.red_limit) diff --git a/ObservationSim/Instrument/Telescope.py b/ObservationSim/Instrument/Telescope.py index d603a061ef8ea8b235cbe1dc8d1251226697cddb..d3063c71a7ed0d24a3ee6498de804ee86e0c292d 100755 --- a/ObservationSim/Instrument/Telescope.py +++ b/ObservationSim/Instrument/Telescope.py @@ -1,5 +1,11 @@ import numpy as np +try: + import importlib.resources as pkg_resources +except ImportError: + # Try backported to PY<37 'importlib_resources' + import importlib_resources as pkg_resources + class Telescope(object): def __init__(self, param=None, optEffCurve_path=None): self.diameter = 2.0 # in unit of meter @@ -8,6 +14,9 @@ class Telescope(object): self.pupil_area = np.pi * (0.5 * self.diameter)**2 if optEffCurve_path is not None: self.efficiency = self._get_efficiency(optEffCurve_path) + else: + with pkg_resources.path('ObservationSim.Instrument.data', 'mirror_ccdnote.txt') as optEffCurve_path: + self.efficiency = self._get_efficiency(optEffCurve_path) def _get_efficiency(self, effCurve_path): """ Read in the efficiency of optics diff --git a/ObservationSim/Instrument/data/__init__.py b/ObservationSim/Instrument/data/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ObservationSim/Instrument/data/__pycache__/__init__.cpython-38.pyc b/ObservationSim/Instrument/data/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ccb54408ff430f8a2336de8b9b2fa3f17e762220 Binary files /dev/null and b/ObservationSim/Instrument/data/__pycache__/__init__.cpython-38.pyc differ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/.DS_Store b/ObservationSim/Instrument/data/ccd/.DS_Store similarity index 73% rename from ObservationSim/PSF/PSFInterp/libCentroid/.DS_Store rename to ObservationSim/Instrument/data/ccd/.DS_Store index caaee6fc555e9ca8353e0f0b35ec79234dbd3595..f5986581377d6596ff3f73a930a273a694ebd847 100644 Binary files a/ObservationSim/PSF/PSFInterp/libCentroid/.DS_Store and b/ObservationSim/Instrument/data/ccd/.DS_Store differ diff --git a/ObservationSim/Instrument/data/ccd/Astro_MB.txt b/ObservationSim/Instrument/data/ccd/Astro_MB.txt new file mode 100755 index 0000000000000000000000000000000000000000..bd42e306a5d1b5ecc75571acd910ef067928e935 --- /dev/null +++ b/ObservationSim/Instrument/data/ccd/Astro_MB.txt @@ -0,0 +1,67 @@ +# Graph from Astro&MB, page 1 +251.4 0.5285 +254.2 0.4885 +257.0 0.4485 +259.9 0.4085 +264.1 0.3428 +269.8 0.2828 +272.6 0.2657 +276.9 0.2542 +281.1 0.2542 +285.3 0.2657 +291.0 0.2771 +299.5 0.2828 +316.5 0.3028 +329.2 0.3200 +349.1 0.3428 +366.1 0.3828 +371.7 0.4142 +371.7 0.4142 +376.0 0.4542 +383.0 0.4971 +390.1 0.5485 +398.6 0.6000 +405.7 0.6400 +412.8 0.6771 +424.1 0.7171 +438.3 0.7628 +448.2 0.7942 +448.2 0.7942 +448.2 0.7942 +448.2 0.7942 +469.4 0.8400 +490.7 0.8800 +490.7 0.8800 +511.9 0.9057 +541.6 0.9228 +565.7 0.9285 +586.9 0.9285 +620.9 0.9200 +647.8 0.9028 +680.4 0.8714 +721.5 0.8114 +741.3 0.7800 +758.3 0.7428 +771.0 0.7114 +786.6 0.6685 +800.7 0.6314 +813.5 0.5942 +822.0 0.5657 +836.1 0.5228 +850.3 0.4714 +860.2 0.4400 +860.2 0.4400 +868.7 0.4114 +877.2 0.3771 +887.1 0.3485 +901.3 0.3000 +915.4 0.2571 +926.8 0.2257 +938.1 0.1914 +955.1 0.1485 +976.3 0.1000 +997.6 0.06000 +1016 0.03714 +1033 0.02000 +1040 0.01428 +1050 0.01142 diff --git a/ObservationSim/Instrument/data/ccd/Basic_NIR.txt b/ObservationSim/Instrument/data/ccd/Basic_NIR.txt new file mode 100755 index 0000000000000000000000000000000000000000..631688b9cf92f771e6625c202e8ebd8a94d93510 --- /dev/null +++ b/ObservationSim/Instrument/data/ccd/Basic_NIR.txt @@ -0,0 +1,70 @@ +# Graph from Basic&NIR, page 1 +250.0 0.06837 +258.5 0.05973 +265.6 0.05681 +275.5 0.07380 +281.2 0.1050 +286.9 0.1363 +294.0 0.1704 +303.9 0.2102 +313.9 0.2443 +323.8 0.2641 +336.6 0.2754 +352.3 0.2838 +367.9 0.2836 +376.4 0.3091 +389.2 0.3432 +399.2 0.3801 +413.4 0.4170 +430.4 0.4539 +444.6 0.4794 +458.8 0.5077 +477.3 0.5502 +494.4 0.5871 +508.6 0.6154 +525.6 0.6466 +539.8 0.6721 +549.8 0.6891 +566.8 0.7145 +586.7 0.7456 +603.8 0.7711 +603.8 0.7711 +603.8 0.7711 +618.0 0.7937 +639.3 0.8220 +656.3 0.8418 +673.4 0.8587 +690.4 0.8756 +701.8 0.8840 +720.3 0.8924 +740.2 0.9007 +762.9 0.9062 +792.8 0.8944 +812.6 0.8743 +825.4 0.8570 +841.1 0.8255 +841.1 0.8255 +855.3 0.7855 +866.6 0.7540 +876.6 0.7226 +889.4 0.6712 +897.9 0.6341 +906.4 0.5969 +913.5 0.5655 +919.2 0.5370 +924.9 0.5084 +933.4 0.4684 +940.5 0.4256 +949.1 0.3856 +957.6 0.3428 +966.1 0.3000 +974.6 0.2572 +983.2 0.2200 +993.1 0.1772 +1004 0.1343 +1011 0.1058 +1024 0.07149 +1032 0.04861 +1042 0.03141 +1051 0.01992 +1059 0.01128 diff --git a/ObservationSim/Instrument/data/ccd/UV0.txt b/ObservationSim/Instrument/data/ccd/UV0.txt new file mode 100755 index 0000000000000000000000000000000000000000..fccd1273c6604668b45e9a0f3e7c31c55e2a01a8 --- /dev/null +++ b/ObservationSim/Instrument/data/ccd/UV0.txt @@ -0,0 +1,51 @@ +# Graph from UV0, page 1 +251.4 0.4900 +264.2 0.5041 +274.1 0.5268 +278.4 0.5609 +286.9 0.5864 +296.8 0.5949 +308.2 0.5919 +322.4 0.5861 +336.6 0.5717 +352.3 0.5516 +360.8 0.5401 +367.9 0.5229 +375.0 0.5342 +383.5 0.5541 +394.9 0.5767 +409.1 0.6108 +421.9 0.6220 +433.3 0.6333 +447.5 0.6389 +465.9 0.6444 +485.8 0.6555 +504.3 0.6582 +522.8 0.6552 +544.1 0.6578 +572.5 0.6546 +592.4 0.6516 +620.8 0.6484 +640.7 0.6396 +660.6 0.6280 +680.5 0.6136 +693.3 0.6021 +710.3 0.5876 +726.0 0.5647 +738.8 0.5474 +757.2 0.5216 +781.4 0.4729 +812.6 0.4127 +828.3 0.3755 +845.3 0.3355 +858.1 0.3040 +872.3 0.2725 +892.2 0.2324 +905.0 0.2009 +923.5 0.1551 +939.1 0.1265 +970.4 0.07207 +1003 0.03184 +1025 0.01450 +1038 0.008668 +1050 0.00000 diff --git a/ObservationSim/Instrument/data/ccd/__init__.py b/ObservationSim/Instrument/data/ccd/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ObservationSim/Instrument/data/ccd/__pycache__/__init__.cpython-38.pyc b/ObservationSim/Instrument/data/ccd/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5bbd3c3829d5e318144c2274c6c4c850f5322359 Binary files /dev/null and b/ObservationSim/Instrument/data/ccd/__pycache__/__init__.cpython-38.pyc differ diff --git a/ObservationSim/Instrument/data/filters/__init__.py b/ObservationSim/Instrument/data/filters/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ObservationSim/Instrument/data/filters/__pycache__/__init__.cpython-38.pyc b/ObservationSim/Instrument/data/filters/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb329e9c18c417d98bcbae165ab0b045d7cf7cc2 Binary files /dev/null and b/ObservationSim/Instrument/data/filters/__pycache__/__init__.cpython-38.pyc differ diff --git a/ObservationSim/Instrument/data/filters/filter.list b/ObservationSim/Instrument/data/filters/filter.list new file mode 100755 index 0000000000000000000000000000000000000000..410c15d8cfeb8f1f75381bc613c6c182d17ab891 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/filter.list @@ -0,0 +1,7 @@ +nuv.dat +u.dat +g.dat +r.dat +i.dat +z.dat +y.dat diff --git a/ObservationSim/Instrument/data/filters/g.txt b/ObservationSim/Instrument/data/filters/g.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d83fa2d75d2a650b7fdd03ec199aa4192e708e9 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/g.txt @@ -0,0 +1,8 @@ +3914.0 0.00000 +3989.0 0.00000 +4014.0 0.45000 +4039.0 0.90000 +5438.0 0.90000 +5468.0 0.45000 +5498.0 0.00000 +5568.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/g_sub.list b/ObservationSim/Instrument/data/filters/g_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..f5dda5704ae2b49d8a6fd923d3e80a75c1a80b72 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/g_sub.list @@ -0,0 +1,9 @@ +3800 +4217 +4432 +4631 +4820 +5002 +5179 +5354 +5799 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/gi_sub.list b/ObservationSim/Instrument/data/filters/gi_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..e548239e833952cc96551677dd5d16050d720c3b --- /dev/null +++ b/ObservationSim/Instrument/data/filters/gi_sub.list @@ -0,0 +1,9 @@ +6000 +6579 +6987 +7381 +7770 +8166 +8591 +9103 +10590 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/gu_sub.list b/ObservationSim/Instrument/data/filters/gu_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..6a09020af1d7163917588cb43b2852e1417cb821 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/gu_sub.list @@ -0,0 +1,9 @@ +2513 +2740 +2933 +3120 +3310 +3506 +3712 +3914 +4299 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/gv_sub.list b/ObservationSim/Instrument/data/filters/gv_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..46493e41293cedd983e9f75f957ef23a49f81aee --- /dev/null +++ b/ObservationSim/Instrument/data/filters/gv_sub.list @@ -0,0 +1,9 @@ +3700 +4307 +4644 +4954 +5248 +5537 +5824 +6111 +6799 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/i.txt b/ObservationSim/Instrument/data/filters/i.txt new file mode 100644 index 0000000000000000000000000000000000000000..9290c8a5913df0b769c1d2e326abb59dcfe126eb --- /dev/null +++ b/ObservationSim/Instrument/data/filters/i.txt @@ -0,0 +1,8 @@ +6821.0 0.00000 +6886.0 0.00000 +6921.0 0.46000 +6956.0 0.92000 +8379.0 0.92000 +8424.0 0.46000 +8469.0 0.00000 +8524.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/i_sub.list b/ObservationSim/Instrument/data/filters/i_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..715f74adc9f4e57632ab217b1c3cfc52b4b44c0f --- /dev/null +++ b/ObservationSim/Instrument/data/filters/i_sub.list @@ -0,0 +1,9 @@ +6600 +7061 +7255 +7448 +7640 +7833 +8027 +8226 +8999 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/nuv.txt b/ObservationSim/Instrument/data/filters/nuv.txt new file mode 100644 index 0000000000000000000000000000000000000000..62b84f731e5f4fff1714b97e40bf8f08dc88b156 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/nuv.txt @@ -0,0 +1,8 @@ +2419.0 0.00000 +2504.0 0.00000 +2519.0 0.32500 +2534.0 0.65000 +3190.0 0.65000 +3210.0 0.32500 +3230.0 0.00000 +3310.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/nuv_sub.list b/ObservationSim/Instrument/data/filters/nuv_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..c89b5dc482f102fbed5b8c27b2365dd92d2e97d1 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/nuv_sub.list @@ -0,0 +1,9 @@ +2513 +2621 +2716 +2805 +2888 +2969 +3050 +3132 +3499 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/r.txt b/ObservationSim/Instrument/data/filters/r.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6645e2c1c8dee6db331510ebd95fe90d32c6424 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/r.txt @@ -0,0 +1,8 @@ +5368.0 0.00000 +5438.0 0.00000 +5468.0 0.45000 +5498.0 0.90000 +6886.0 0.90000 +6921.0 0.45000 +6956.0 0.00000 +7021.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/r_sub.list b/ObservationSim/Instrument/data/filters/r_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..0abf1914147287d276b73f82f1308b066ac579df --- /dev/null +++ b/ObservationSim/Instrument/data/filters/r_sub.list @@ -0,0 +1,9 @@ +5100 +5642 +5821 +6001 +6181 +6363 +6547 +6735 +7199 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/u.txt b/ObservationSim/Instrument/data/filters/u.txt new file mode 100644 index 0000000000000000000000000000000000000000..8953313de32ee98075aa54b975cdc433f6bf9bab --- /dev/null +++ b/ObservationSim/Instrument/data/filters/u.txt @@ -0,0 +1,8 @@ +3110.0 0.00000 +3190.0 0.00000 +3210.0 0.39000 +3230.0 0.78000 +3989.0 0.78000 +4014.0 0.39000 +4039.0 0.00000 +4114.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/u_sub.list b/ObservationSim/Instrument/data/filters/u_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..f3a2b72db1d1fb2ec8f5abbd42edf293ed73cb69 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/u_sub.list @@ -0,0 +1,9 @@ +3000 +3277 +3380 +3485 +3592 +3703 +3813 +3918 +4499 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/y.txt b/ObservationSim/Instrument/data/filters/y.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b6b62d091e1b02c7a80d5fabeb77c5e38bb8e3f --- /dev/null +++ b/ObservationSim/Instrument/data/filters/y.txt @@ -0,0 +1,8 @@ +9167.0 0.00000 +9217.0 0.00000 +9267.0 0.46000 +9317.0 0.92000 +10745.0 0.92000 +10800.0 0.46000 +10855.0 0.00000 +10900.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/y_sub.list b/ObservationSim/Instrument/data/filters/y_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..81dc2431f773a3edb7ff8a1be622efa93741a19c --- /dev/null +++ b/ObservationSim/Instrument/data/filters/y_sub.list @@ -0,0 +1,9 @@ +9000 +9322 +9405 +9489 +9584 +9695 +9832 +10024 +10590 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/filters/z.txt b/ObservationSim/Instrument/data/filters/z.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ef9e32823145db1062d1f1ec614b71088e4695e --- /dev/null +++ b/ObservationSim/Instrument/data/filters/z.txt @@ -0,0 +1,8 @@ +8324.0 0.00000 +8379.0 0.00000 +8424.0 0.46000 +8469.0 0.92000 +10745.0 0.92000 +10800.0 0.46000 +10855.0 0.00000 +10900.0 0.00000 diff --git a/ObservationSim/Instrument/data/filters/z_sub.list b/ObservationSim/Instrument/data/filters/z_sub.list new file mode 100644 index 0000000000000000000000000000000000000000..b0191a57650149226ff5fdbcbba3441caa2e7873 --- /dev/null +++ b/ObservationSim/Instrument/data/filters/z_sub.list @@ -0,0 +1,9 @@ +7800 +8494 +8638 +8790 +8955 +9141 +9363 +9663 +10590 \ No newline at end of file diff --git a/ObservationSim/Instrument/data/mirror_ccdnote.txt b/ObservationSim/Instrument/data/mirror_ccdnote.txt new file mode 100755 index 0000000000000000000000000000000000000000..3e0970ec26c6bffd49b3f4f00936d86f657c7efa --- /dev/null +++ b/ObservationSim/Instrument/data/mirror_ccdnote.txt @@ -0,0 +1,12 @@ + +波段 CCD曲线 镜面效率 +nuv UV0 0.54 +u UV0 0.68 +g Astro_MB 0.8 +r Astro_MB 0.8 +i Basic_NIR 0.8 +z Basic_NIR 0.8 +y Basic_NIR 0.8 +GU UV0 -1 +GV Astro_MB -1 +GI Basic_NIR -1 diff --git a/ObservationSim/Instrument/data/sls_conf/._CSST_GI1.conf b/ObservationSim/Instrument/data/sls_conf/._CSST_GI1.conf new file mode 100755 index 0000000000000000000000000000000000000000..afe84e13b241509cf960068981c9e7033f876e86 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/._CSST_GI1.conf differ diff --git a/ObservationSim/Instrument/data/sls_conf/._CSST_GV1.conf b/ObservationSim/Instrument/data/sls_conf/._CSST_GV1.conf new file mode 100755 index 0000000000000000000000000000000000000000..13acd34cf4136ed3b41e0ff98d97019deda0d631 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/._CSST_GV1.conf differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d0169fb06fd440190703bef7cd630e1545c4256d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..32f4344de8accfa8a296d9c554ffd1d56c1cbd3c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d0940759eb9cb5d0514b65e6e4eb0539047dff44 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..12723dc73dd8b6b1109b7d758489f1cbe9213231 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a8c5cf9eed3e1a14b67722f6cf19d3df1e643b48 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI.sensitivity.2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI1.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI1.conf new file mode 100644 index 0000000000000000000000000000000000000000..38785ce8c200a164f32d42a69721531e3a215a24 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI1.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA -1186 -528 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 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 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 576 1270 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 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_A_1 -0.01025662163204071 2.563555771056362e-07 -3.8339712168522614e-07 -3.0921572651851273e-12 -2.782385864095027e-12 -1.2927405756300694e-11 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2308 -1172 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 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_A_1 0.0036275858789754415 -2.6482112732759975e-08 2.5593462628528386e-07 6.463563645069831e-12 4.03172098429654e-12 -3.917214235864082e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1272 2571 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 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_A_1 -0.013388600612320525 3.4987613986258344e-07 -8.934574682539956e-07 -2.1629798251888717e-11 1.1573035017917812e-11 1.4777345392719905e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..18ed7a9720625eba974ad8cd0f378ee6c4e5ce98 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..dbef65ad4f570f52dd5c35a01e062493032cfa7f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..9a732eae44ed55133b333738bf3492970c65cda4 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..58ed61d5f7b33aa4a8ff8ead9b97342ae448d148 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..f3c6cbc0ce3756e03b4845a3996bce91e0390d1d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI1_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI2.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI2.conf new file mode 100644 index 0000000000000000000000000000000000000000..28dec6622b6ee3d1a3ace6ed4353a30dc73df7a7 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI2.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA 505 1238 +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 +# +# X and Y Offsets +# +XOFF_A 0.0 +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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1251 -537 +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_A_1 -5.3689415286860876e-05 -1.912489940030657e-07 -1.070383333548475e-08 1.53386647062175e-10 -1.1208241918489809e-11 3.406912464353884e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1154 2507 +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_A_1 -0.011947813534498112 4.093696016714032e-08 -7.435107573317389e-07 2.5528541317977112e-12 3.192792142602198e-12 -2.453919520892182e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2429 -1162 +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_A_1 0.003983370254635055 -1.232787560255339e-08 2.1234388976109016e-07 1.6204618268328708e-11 3.983819645370279e-12 4.263520014579825e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..55a0beb10a858ef64949012d830dcf2f5438bb18 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..bccf2b1a2fc748ee7c8a71beee1916e30e97cd7f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d0940759eb9cb5d0514b65e6e4eb0539047dff44 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..606dfb46a2747f84a69c6aaf85745f916606165b Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d43100f8867e8d937b4fc13fe0c0d97573a76ccf Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI2_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI3.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI3.conf new file mode 100644 index 0000000000000000000000000000000000000000..320d089f23a3df8d4dc3212092c94029269a9e76 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI3.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA -1165 -529 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 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 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 574 1242 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 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_A_1 -0.009955230104200801 5.494138645881217e-07 -5.71634189603669e-07 -2.919798057644714e-11 1.4502406606426133e-11 -2.075548579200935e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2272 -1175 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 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_A_1 0.004037692561048198 9.260581777483333e-08 2.0948104952770805e-07 -1.3666211810764903e-12 9.22151128823822e-12 3.56053004729388e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1266 2504 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 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_A_1 -0.012614129322424207 3.0685483155242454e-07 -8.080248472425367e-07 -1.675839114053055e-11 6.28724942761309e-12 1.830554524540624e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..af99423dcf803f8d5dcd5472b85e877cd5af878e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..eb12731a66df5036175339bd2c7bad412f751e6d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c1f81ef6e76762b58aa635964304f99795da8aeb Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5a91dac8e9f9b969a56f0c8266e5b6e5dc0c1862 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5b94b2ee44579a0f085083d3f36f424178bfc8ff Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI3_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI4.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI4.conf new file mode 100644 index 0000000000000000000000000000000000000000..f4a775bab53fdcdc178765940598206903f189ec --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI4.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA 496 1205 +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 +# +# X and Y Offsets +# +XOFF_A 0.0 +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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1226 -531 +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_A_1 0.0006570356116067526 1.2290395976811375e-06 1.6637183470133416e-07 -3.0304924532261765e-10 2.4734040679617618e-11 -2.3590221649145147e-11 +# +# X and Y Offsets +# +XOFF_C 0.0 +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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1133 2430 +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_A_1 -0.011168343549873953 2.6666977679877337e-08 -7.470831119863737e-07 -6.286511915787003e-12 1.6439841503101933e-11 2.596573361763681e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2388 -1152 +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_A_1 0.004683960947904331 -1.888624610879838e-08 3.2884821904527606e-07 1.018984346983241e-11 5.168946855257885e-12 -2.043053548121042e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..bf39e2679b8b786f66abd9b66a7c3aeea8cf041e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..151aa24d9c7dea82045f5323caac373745a2c796 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d0940759eb9cb5d0514b65e6e4eb0539047dff44 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..85b91a31dfc13dac1ff97c353f4eeec4535760ea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ebf6339051777c071774150b9431209a74a17056 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI4_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI5.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI5.conf new file mode 100644 index 0000000000000000000000000000000000000000..8b3268a2651fe73cd51a4ccd3b71a1fc930aaa89 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI5.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA -1142 -529 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 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 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 569 1191 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 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_A_1 0.008680162051601499 3.330054831581405e-07 -6.469221396130517e-07 -3.9523801242915675e-11 2.810706046076844e-11 9.755545191838492e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2253 -1182 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 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_A_1 -0.009040738692611343 -2.842628508976022e-07 2.8610552097167497e-07 2.0072941233633973e-12 2.6743473726716594e-11 -1.990153449263359e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1248 2361 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 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_A_1 0.015397941297630027 2.693607213384038e-08 -6.075147917008666e-07 -1.6037105086389434e-11 4.296881158063552e-12 -1.2228485054031964e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..976e42da9f9d096199c1c0382067be2eefe0545d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..1a2b49fef4ad4b91eb3d59ebe13018181ac21296 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c1f81ef6e76762b58aa635964304f99795da8aeb Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..fba09c3cbaa57312ef827e8012e4742091b542c7 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..62a77800bce7a1094698fc93fc6bbbc33423363b Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI5_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI6.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI6.conf new file mode 100644 index 0000000000000000000000000000000000000000..804ef5e4c42ef2fee51b2e83485c923282b86953 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI6.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA 514 1178 +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 +# +# X and Y Offsets +# +XOFF_A 0.0 +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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1219 -556 +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_A_1 -0.005127657192091357 3.406797050005203e-07 1.6449903475316612e-07 -9.485982506821913e-11 -4.3771960897499225e-12 8.550685815444732e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1163 2352 +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_A_1 0.014593603600807335 -2.5136860755841604e-07 -5.949998376910171e-07 3.678337259167903e-11 -3.0972180049312983e-12 1.6165162111383372e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2396 -1210 +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_A_1 -0.011203612261385857 -1.0569751604742679e-07 4.877450459862202e-07 4.101880695762023e-12 -2.7701720429242062e-12 -1.1821036616778763e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b5606c3a02b489d14701c301c457a378a3f034a8 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..79c0683bf340e799075d680b19bef5bbc9e70790 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d0940759eb9cb5d0514b65e6e4eb0539047dff44 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c492566695ef8625a97d7bd5d849e03724f8d547 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..fb7917b48dbef19f01dfb9b8f91e7fc267c1ffd9 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI6_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI7.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI7.conf new file mode 100644 index 0000000000000000000000000000000000000000..1763c6422c50cbf48d65753a482e5e091785c6ba --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI7.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA -1160 -522 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 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 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 559 1204 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 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_A_1 0.009108519277662467 -3.0705408681783576e-07 -3.132719515155802e-07 6.422536264194293e-12 1.5326983931450917e-11 -5.645216688436237e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2296 -1168 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 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_A_1 -0.01112945128342416 -1.1311863974473163e-07 4.218220828671425e-07 -1.2516252053776076e-12 9.161770824233885e-12 -1.4981685450709086e-14 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1226 2383 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 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_A_1 0.015623821782753402 -3.872409697306194e-07 -5.946762100158761e-07 1.4986070563264542e-11 8.421611722722356e-12 -3.1933488456130784e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..aaaa5e214834693f6de4e28e5505b868a8d45b3d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..8fcb9eb5d5e3be0bf6579c8c8c5424d5a13aeab9 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c1f81ef6e76762b58aa635964304f99795da8aeb Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..0bd1f2f16a5283930eb1af1c03d719e954bc78ca Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d62ee9d1d4f5509d1626dc7afe65e844b1397bb5 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI7_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI8.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GI8.conf new file mode 100644 index 0000000000000000000000000000000000000000..13861aaf7421e6445f482f75a843f1777f780042 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GI8.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# 1 order (BEAM A) ******************* +BEAMA 512 1161 +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 +# +# X and Y Offsets +# +XOFF_A 0.0 +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 +# +SENSITIVITY_A GI.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -120 80 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GI.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1209 -557 +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_A_1 -0.005803626340330835 -4.170068439771959e-08 1.290433938281288e-07 -2.8134994496798826e-11 3.815680617576105e-12 7.512242155559056e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +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 +# +SENSITIVITY_C GI.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1156 2308 +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_A_1 0.013421122504499828 -8.139117646528983e-08 -5.636862104195129e-07 -7.650480709282686e-12 8.277703707581925e-12 9.22249281275454e-13 +# +# X and Y Offsets +# +XOFF_D 0.0 +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 +# +SENSITIVITY_D GI.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2385 -1216 +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_A_1 -0.012336624365849553 -8.074439040178428e-08 5.451023075403868e-07 -5.4380660096969335e-12 -1.2614361480717028e-13 -4.742212399798437e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +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 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..8b8533294ad2a6366c86c183bc582635e1b050b9 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..f95a8a4f5d7c33386df9d6c18e5da5fee1c15725 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d0940759eb9cb5d0514b65e6e4eb0539047dff44 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b367d0e571c00c071d52c806e6e05ad42e61f5c4 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..da06d1051a2721f2a6617a2b49019f04138b066a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GI8_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU1.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU1.conf new file mode 100644 index 0000000000000000000000000000000000000000..4928392262e8cac43ad60a36d53cc3ee50387120 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU1.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA -1116 -450 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 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 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 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 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 117 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 492 1193 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 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_A_1 0.0027492227533061912 3.5138528790228245e-09 -5.955850399858713e-07 3.427213002653244e-18 -7.613092613195848e-13 4.139822785657121e-18 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 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 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2165 -1013 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 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_A_1 -0.0008727377151777036 -3.574005433242036e-08 1.8906445736936065e-07 -5.341623280966443e-16 7.744222476838046e-12 -2.0367190878495254e-16 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 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 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1092 2385 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 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_A_1 0.003698183554891061 -1.9034332412054844e-08 -8.011647070145565e-07 2.414951487944578e-18 4.123548306803602e-12 -2.1651713505639886e-16 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 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 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5fa3e4532aede1eaff3e443ae835f3a6f4897f23 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..8a6f6e1f23681b35331841f237cacffa221dffdd Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a6b24e6c742e79f903ef0c1d0b4e032d5de30ff6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..65e4b425cf57fd0a2df1c08176686aed406c1ecf Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..91d4326ce4baadb288367b969e36771d4bea22a8 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU1_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU2.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU2.conf new file mode 100644 index 0000000000000000000000000000000000000000..c5e664ed939b880f05f1355629e8203ab121d145 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU2.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA 428 1138 +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 +# +# X and Y Offsets +# +XOFF_A 0.0 +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 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +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 +# +# X and Y Offsets +# +XOFF_B 0.0 +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 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1154 -462 +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_A_1 -0.0004831850282262942 4.4703024254268985e-09 1.0467587318097426e-07 -6.245290748577401e-16 -9.67808789638995e-13 1.8675680517829847e-20 +# +# X and Y Offsets +# +XOFF_C 0.0 +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 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 994 2285 +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_A_1 0.0035512682123718664 -1.335162450569774e-08 -7.693387103306084e-07 4.782557131456633e-17 2.8923723305608908e-12 -3.557167801553638e-18 +# +# X and Y Offsets +# +XOFF_D 0.0 +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 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2224 -1008 +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_A_1 -0.0011960850677701557 -2.5552822787103083e-08 2.5911619508272597e-07 2.7377051875450244e-17 5.5356793066910265e-12 1.4408483631640674e-16 +# +# X and Y Offsets +# +XOFF_E 0.0 +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 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..0034ab7c5e1cc4a67306b4b78d89edbd6f1329ed Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..e5c68637856d9455596f14af645750d353a79933 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3fd95fd27a732747213fd9cf108a83abb210cd3c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..44b9cdd47f775b3e1c2318ba371f533f4df5ae0b Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..57b1ff37aeac884a16c13a06843ee9b99749f20e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU2_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU3.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU3.conf new file mode 100644 index 0000000000000000000000000000000000000000..33800198b33e9178e5cbf879889e6edb0e5de3d2 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU3.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA -1116 -449 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 1.4375350157460531 -0.00025371448171269425 0.00023287016569169998 2.2648983359863494e-08 -2.3434365985736932e-08 -2.6703763898731943e-09 +DYDX_A_1 -9.695519227196352e-05 6.289810475798267e-08 6.391441704606007e-08 1.0143630116545653e-12 -9.10247077064982e-12 -5.4477002059742005e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 52.14141418294123 -0.001454079384899927 0.0010447426150687665 3.9541189123366547e-07 -1.2338454834443615e-07 -2.4277406113182822e-08 +DLDP_A_1 -3.774938213221757 -6.117192071533689e-05 1.5367683918841584e-07 -9.987179209172313e-10 -2.4247811127651323e-11 1.5168148346209018e-11 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 117 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.6888816462283875 -0.00026350923296204927 -1.0539176653004611e-05 1.965468685307844e-08 -1.4718586765182112e-08 7.91487171985336e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 16009.67785191637 -14.121548071363451 4.1977551239036055 0.0012274182151807169 -0.000608634922571501 -7.411154043302623e-12 +DLDP_B_1 -900.6452969971608 0.9414365297109575 -0.27985033629659684 -8.182788040425198e-05 4.057566130548316e-05 3.005890371399687e-14 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 492 1194 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.06577626420976657 0.00023843802359241968 0.00020214103397281637 -1.7123645168761916e-08 -5.1151994757772025e-09 -2.8149430186232906e-09 +DYDX_A_1 -0.0023512307660126697 -3.3161090069914584e-07 -6.540476932452965e-07 2.7684183450126828e-11 2.2119467452457955e-13 5.7966394781263606e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 61.81158625131534 0.0002738779300155312 -0.0005396171688216322 -2.414522521897997e-07 3.897810742534922e-08 2.714548333209988e-08 +DLDP_C_1 3.4933277671526026 5.766480595574185e-05 -5.046678479679724e-07 1.5414803609755891e-09 7.949850458659472e-11 -3.4065754907394526e-12 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2165 -1013 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 2.948513782669366 -0.00023026015901126757 0.0004966141941227662 1.7402268960629477e-08 -1.4703354511641052e-08 -9.053112415355464e-10 +DYDX_A_1 0.001324315465861688 -5.3280510137879357e-08 2.1294144146014126e-07 7.149648535223347e-12 5.9124013181393895e-12 -1.569213924160992e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 73.48468602032113 0.0035959632323805616 0.0009662014564447971 4.165475026833314e-08 -9.693362300285435e-08 -3.8389066163892824e-08 +DLDP_D_1 -1.8582802840811854 -2.5968509876348803e-05 3.6073596263306846e-07 -6.479075240162011e-10 -3.2654072697203044e-11 -1.1315917302915902e-11 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1092 2386 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 4.507912700810403 -0.0006565069814848197 0.0004717757492079797 4.615661132301661e-08 -9.929671168647712e-09 1.9253230332400385e-09 +DYDX_A_1 -0.005418404321822283 3.4159713936048874e-07 -7.978348106960707e-07 -2.2179498116536742e-11 3.668089343194087e-12 -8.716971808473679e-13 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 270.9151522315044 -0.003261085668408344 -0.00037857262236120053 -5.379247793725931e-08 5.3824666471841186e-08 7.2324662405072815e-09 +DLDP_E_1 1.584931295231861 2.8909905935352693e-05 -5.077699466754963e-08 6.807901141961617e-10 -3.97275225647664e-12 5.944925060039688e-13 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..95e7a19762676cc038079ae53169e11b143b1406 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..cece53f84fe57c3f4679a13f8ab5cf5cd726c11a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a6b24e6c742e79f903ef0c1d0b4e032d5de30ff6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ba7b69936de052a7c157df31cbbe03b30bd439d3 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..32edc1f32001efca272e260b7274792b0143e8d8 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU3_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU4.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU4.conf new file mode 100644 index 0000000000000000000000000000000000000000..dc93b0214ca40bfc5bbeb5f7471bb8e807cfb6a8 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU4.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA 428 1136 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.5393622499846114 0.0003131905104735294 0.0002819842287043406 -6.596139584016934e-08 -1.5515043953368061e-09 -1.865215106753987e-08 +DYDX_A_1 -0.0031717217065868318 -1.343994265992981e-07 -7.327463319619874e-07 2.5749872872119066e-11 1.4329737386352059e-12 1.3787262953168574e-11 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 166.8066758131913 0.0011734295716311557 -0.00011146522928700761 1.1742601941089248e-07 -3.063130672170099e-08 7.271676613696152e-09 +DLDP_A_1 3.8903111217602664 9.965331864547397e-05 5.264553564252033e-07 2.8039755351960022e-09 6.51527722204766e-11 -5.996471092482534e-11 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -0.32077992832744506 0.00021650032040999726 1.4065772804951036e-05 -4.502527892249662e-08 2.685942746807181e-10 -8.469874926335054e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -31500.081849240745 -1.6742579149461921e-07 -2.4974573081033746e-08 3.361118909343285e-11 6.69193397658896e-12 -2.5264209353748003e-13 +DLDP_B_1 -1700.0039928649942 -5.97393686387054e-10 -3.5705465324890356e-09 -1.0484720527220194e-13 5.910749779719082e-14 3.959684176659261e-13 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1153 -462 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 1.143028004919987 -0.00043165022047830434 6.196137733147702e-05 8.16457174098753e-08 5.016787588312008e-08 -1.1076947674988989e-08 +DYDX_A_1 0.0009685847548946574 -6.769648548844193e-07 -1.3599935590555458e-07 1.3832682960654626e-10 8.096919396546198e-11 -7.115087004534495e-13 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -51.81871621303702 -0.001682722896000455 -0.00013203658639217536 1.2602731733689013e-07 4.99052648055376e-08 7.995237627431238e-09 +DLDP_C_1 -4.035934963120328 -9.797246690136702e-05 1.8738529199029484e-07 -2.7892282227083186e-09 7.861912417757426e-11 -4.128582484312071e-11 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 994 2283 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 2.1537852011622283 7.465469287286658e-05 0.0004351844939178058 -2.2198461139576395e-08 -1.3877608195218995e-08 -1.7628688846255955e-09 +DYDX_A_1 -0.004230879607296237 8.498485744953868e-08 -7.501665624166511e-07 -1.6084245955031634e-11 4.759329258447093e-12 -4.056797888343e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 267.3783220352334 -0.0005518882258367559 0.0003157408529093162 -7.363354666772132e-08 1.5112433985808674e-08 -3.15294152168378e-08 +DLDP_D_1 1.805799604687685 4.715823675245445e-05 -1.4701211751379763e-07 1.469827796918545e-09 8.143880359529091e-13 9.037186588535223e-12 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2220 -1008 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 2.351548209319865 -3.689671315203568e-05 0.0005163556990925829 2.1158061718584205e-09 -3.490722309938645e-09 -1.528540044064975e-08 +DYDX_A_1 0.001430019761307312 -7.985386958466852e-08 2.6731184353623225e-07 2.5955313438507735e-11 9.598310234511398e-12 -4.21444171834932e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 76.47945110852464 0.0018354024784885982 -0.00022453416941912616 -7.55040388963657e-08 -1.4919919379897534e-08 3.7321241614703564e-08 +DLDP_E_1 -1.9470046897146425 -4.523147766095585e-05 -8.600819467696154e-08 -1.4371947807322489e-09 -8.320768961584928e-12 1.4952257342383453e-11 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..93d1a287257b33d91805e49d16e94a0a4eb12d59 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a860b819083104f05904631cb9bc90de32d68d95 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3fd95fd27a732747213fd9cf108a83abb210cd3c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..cae4d74b672b8bb82e36005f148bc283051e7137 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..299dd500cad8045b43856d241107e0b90fc522d3 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU4_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU5.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU5.conf new file mode 100644 index 0000000000000000000000000000000000000000..f23aa6568f034a3c7521664118896ca1220b0521 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU5.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA -1079 -453 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -1.92965371692521 -0.00014210305610185418 0.0002793831881261664 7.297873089403136e-09 1.5594886191413381e-09 -1.0034451568844385e-08 +DYDX_A_1 -0.004128564707327051 1.3112855729371645e-09 2.9857740533775283e-07 -1.0633208432943827e-11 1.2571557443148134e-11 -6.047189646816668e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 108.37296206647136 -0.003058754198396685 -0.000903055915044194 2.9810529336266413e-07 -8.932479411361967e-09 9.889950193647952e-08 +DLDP_A_1 -4.470739824905015 3.021295891394025e-05 -1.5666894728459118e-06 1.234812844316597e-10 -1.2409677548340217e-11 1.3696240783241655e-10 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.09447092519299671 -1.9602476615012397e-05 5.751452508739299e-05 4.0111749793837556e-10 -4.1768952416968095e-10 -3.6985366991384088e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -23000.061614147515 -9.646045283975953e-08 -2.52624295390115e-08 6.333928323209001e-12 -5.6294089195393394e-14 3.3967782507454333e-12 +DLDP_B_1 1700.0040048940568 -6.511233807942798e-10 1.033509767020798e-09 -7.893517766318493e-14 -1.9111403091503932e-13 4.654473466209288e-14 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 489 1119 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -1.3745251280636102 -0.0004166620793305387 0.00030781991744431526 3.5625065790500023e-08 -1.015616705292654e-08 -6.809703219697665e-09 +DYDX_A_1 0.005259942743965531 2.2710135102429772e-07 -4.832866701253246e-07 -2.9893769156851795e-11 1.539093571694599e-11 2.3835803634126165e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 19.622863325050346 -0.0013950075981674912 8.290816665678019e-05 1.0549537131994977e-08 -6.884616011479114e-08 3.0531479700463135e-08 +DLDP_C_1 4.327391204728536 -2.3365189342607888e-05 -1.2311387785374968e-07 7.0815635974162715e-12 1.1892033820082453e-10 -4.250902118154727e-11 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2123 -1030 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -3.7902089554161935 -0.0005938780884699344 0.0004094352465421359 3.528558369624729e-08 8.932646120211718e-09 -4.700678524711011e-09 +DYDX_A_1 -0.005334782127730197 -3.4904378900281923e-07 3.8534743707073547e-07 1.4929393517554934e-11 1.3055894861406129e-11 -2.410976643143283e-13 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 152.5816234883091 0.0024008885842128317 -6.933000876497405e-05 2.14925824016012e-08 -6.282588631094311e-09 5.991593668383653e-09 +DLDP_D_1 -2.15372444886087 1.8139334009557958e-05 -2.4736490012643057e-07 -7.297348281711162e-11 -5.403947413929594e-12 1.3050911678919327e-11 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1079 2193 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -5.5518511762976965 -0.0002398046719970402 0.00045376018467024545 1.2301023991565204e-08 7.2902255958184095e-09 -4.102819822051389e-09 +DYDX_A_1 0.008329905249142448 -1.8413918879925165e-08 -5.436656649381185e-07 -2.6646238487129985e-12 -3.709762742803416e-14 -7.605203781010001e-13 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 202.1473421947678 -0.004975140846853297 0.00016529623413855262 1.4193654115130447e-07 -4.0450109813491415e-08 8.055194714392919e-09 +DLDP_E_1 2.0094320893783557 -7.885520550681949e-06 2.2521694507180684e-08 -6.827627649913586e-11 2.20617900878291e-11 -6.569233565412959e-12 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..7731d24937c51ecd0bffc672ced597c0c31bc64f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c155f207d140ab717cc55537f6515848e76cf068 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a6b24e6c742e79f903ef0c1d0b4e032d5de30ff6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..fd31ab65c5550efba5ac6e051e0895317eda3613 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..e4f40df162b293ee251e25712c4cc690de6198b6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU5_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU6.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU6.conf new file mode 100644 index 0000000000000000000000000000000000000000..31b951abb44696ea69b8a00ba4a0e2164dda8812 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU6.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA 444 1079 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -2.5048100828123445 0.00023612435987292464 0.00018989689053838452 -2.447883367567533e-08 -1.0329834713730529e-08 -1.9915839082523346e-10 +DYDX_A_1 0.005500967274056328 -9.590488237751877e-09 -3.4338516868546925e-07 -3.327441338764652e-11 1.616810586310412e-11 -5.859695116458736e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 130.85997666931036 -0.0013764257194539154 0.0004382831806671087 1.0943523686672698e-07 4.087218324726035e-08 -6.823990706721234e-08 +DLDP_A_1 4.158673283698789 4.115940180931528e-05 -2.5260765332239826e-07 4.176360254821971e-10 -1.3019450531445018e-10 8.177590584686814e-11 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.04186781969124902 0.00031293423013799466 5.8364245473059616e-05 -6.16716019276145e-08 -1.2234622945985817e-09 -6.731515811594556e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -31500.08209642778 3.780570659920912e-09 4.71880372614613e-08 1.4127944353186602e-11 -6.684269919327525e-12 -3.743002054767128e-12 +DLDP_B_1 -1700.0039974007996 -3.7521527551653833e-10 -2.629285224233543e-09 1.0077179677218718e-13 2.920638480588806e-13 1.740157791475301e-13 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1125 -488 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -2.7354339264200784 0.0003884059225995992 0.0002934336920997177 -6.577376769890092e-08 -6.359223200064821e-09 -1.1097280973256058e-08 +DYDX_A_1 -0.004641001345987969 3.511388837177305e-08 3.9607543558818476e-07 -1.6972226774094907e-11 1.3488867882599842e-12 -8.489876295667006e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -19.08595420305659 0.0007054153832855485 0.0004197930205905909 -5.508571870773604e-08 2.9241919873704938e-08 -3.6788440254627606e-08 +DLDP_C_1 -4.117000035022661 -3.351935637480361e-05 4.3812639351695084e-07 -3.2452097095489116e-10 -6.41646920736545e-11 -3.316166858586632e-11 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 5318 8292 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -10147.787891979067 0.0019216086870033513 0.003215323811924493 -4.8063860993686784e-08 -2.6100492634991815e-07 2.073557935126183e-08 +DYDX_A_1 0.0025980099855243783 -3.6564971863746175e-08 -5.62827615916848e-07 -3.892025626012531e-16 7.92187197670973e-12 -1.1568305471507826e-17 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -11996.91929816716 0.8938177273884578 0.0018575148899358108 -3.4953177526266424e-06 -5.9129718964815734e-08 3.685431529529667e-08 +DLDP_D_1 1.974540769953426 -9.498695490730475e-06 6.816557677892771e-08 -6.958184582905838e-11 -2.076619907009873e-17 -7.383608844115268e-12 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2195 -1070 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -6.942966088608769 0.0004659127224428531 0.0005755856461390132 -7.371873652226161e-08 -1.3592620859759395e-08 -9.169555746309921e-09 +DYDX_A_1 -0.007339582235743328 1.8302351373519434e-08 5.31222949045451e-07 -1.2044608477578304e-11 -8.652820126572178e-13 -2.3783727378966497e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 149.8726116031146 0.0016726272885700397 -6.2690881750286295e-06 -3.709686637529774e-10 5.9035164156812544e-08 -1.899768711428298e-08 +DLDP_E_1 -1.9374212007264295 -1.4853293835913517e-05 -1.1809361868674337e-07 -1.170492932511523e-10 2.0590883007303077e-11 -4.510494742170919e-12 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..251127b3761475d70465981086abbe20b2694ff0 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..38dee82c53f6302a817838606839d2272955ea51 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3fd95fd27a732747213fd9cf108a83abb210cd3c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..307af0c59aecb4be16ed3b40014af798809c3895 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..118ad62ad2b3c3c9a9d01a76c132f4e2cbc9d8fb Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU6_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU7.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU7.conf new file mode 100644 index 0000000000000000000000000000000000000000..ebe3122ef33e33cf014f05efac2f6bb01cb992cb --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU7.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA -1080 -453 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -0.6467997360508009 9.91330421890469e-07 0.00014012122079670497 -3.024654929750457e-15 -2.1475043388199332e-10 1.5205350652416125e-16 +DYDX_A_1 -0.001174480476877404 -3.2385634730581023e-08 2.544313005200632e-07 -7.048852014635354e-16 7.018058793151053e-12 -1.6654162030273695e-16 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 84.37404992779967 0.0041847255499151996 0.00035650800891404784 -2.3283611678891974e-07 -3.9187829776935235e-14 -3.861650441774174e-08 +DLDP_A_1 -4.510889377408866 3.808310622900039e-05 2.069401979882675e-07 -2.6954146352292374e-10 -1.3345121567603589e-17 -2.241550379997669e-11 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.04450191051294716 1.1568325340935068e-05 -9.640797044726842e-06 -2.355574916009131e-15 -2.506131299159131e-09 -7.602627415906983e-16 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -23000.06140791236 -1.6613125573997147e-07 -2.4841181158701e-08 1.156044577244986e-11 -2.6039359809549613e-15 2.691920318909563e-12 +DLDP_B_1 1700.0040215875783 -7.509880877290361e-09 5.933388098689389e-09 5.211872910976744e-13 8.040480018390112e-14 -6.76655737237726e-13 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 489 1119 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -0.660561864219491 1.7975658190803878e-06 0.00014310252481469177 -1.6838553609922143e-14 -3.8937350475368885e-10 -2.092347916604453e-16 +DYDX_A_1 0.0018156042779764636 -2.405125902795414e-08 -3.933204816715972e-07 8.304749335471718e-16 5.207929697641641e-12 -9.215817453687276e-18 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 44.2722700466491 -0.009682817198038663 0.000271223472682009 6.129382030145323e-07 -8.705556448744612e-13 -2.9378169604829323e-08 +DLDP_C_1 4.326063838803456 -2.0067878210427776e-05 -3.405193044691915e-07 -3.378110694600163e-10 1.0413309607402431e-15 3.6884126912007555e-11 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -8341 -5275 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -21.306282887055705 0.0009345004798466212 0.004615745791378748 3.776387339841339e-15 -2.0244815073058e-07 -1.1205003946659094e-15 +DYDX_A_1 -0.002125782114937821 -2.2648812102012664e-08 4.6052486156376173e-07 2.5760037571228856e-18 4.906580024429756e-12 -1.5421464562464074e-17 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -14960.371566098376 0.6794636498315246 -0.00044595798214094873 5.499018190392371e-06 6.1674194770037615e-12 4.829979329356893e-08 +DLDP_D_1 -1.8673702479178367 -1.2723752077773324e-05 -7.106941309207006e-08 -2.3449020250351754e-10 6.316066871365098e-17 7.698115344285025e-12 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2123 -1028 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -1.8243360584079054 -2.55338657820757e-07 0.00039521986495046844 -2.509400952464602e-14 5.5394767704665723e-11 -3.778914674397709e-16 +DYDX_A_1 -0.002028014821461637 -2.614550428036927e-08 4.393255236030942e-07 -2.12381839054504e-15 5.670450567456104e-12 -1.651899111106741e-16 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 144.23494912818316 0.0045523077386030565 0.0002824470341864665 -1.1759343509598837e-07 1.184227048617728e-13 -3.0594475461558224e-08 +DLDP_E_1 -2.167675356086254 2.0235118246449004e-05 8.752561336854178e-08 -1.332461897751586e-10 6.48890276596224e-17 -9.480735648289554e-12 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..e3ce25f4b967314048f65c99561e15c70b7109e0 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..def071d1fb87fdf13c11458f70a6fb5acf66af6d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a6b24e6c742e79f903ef0c1d0b4e032d5de30ff6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..89b029a28158450247d27dd6cf97e0ab925279c3 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a5c9c73bd687df449f08c646bd79fa99af7dd28d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU7_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU8.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GU8.conf new file mode 100644 index 0000000000000000000000000000000000000000..ffb7836a6a8f59b3465dd3ff1e851d9bf63cf5be --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GU8.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# 1 order (BEAM A) ******************* +BEAMA 445 1081 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -0.5786573491858799 -9.957226675134192e-06 0.00012535904512768074 -1.6578446083969693e-15 2.157112581381144e-09 -5.243566062656117e-17 +DYDX_A_1 0.0016148150866573787 -8.843569190131462e-09 -3.49826266089358e-07 6.4156116078378725e-18 1.9158449336450682e-12 -5.15512803175824e-16 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 128.61618987927963 -0.0015171937592533737 4.989577505968342e-06 2.2237532344584096e-07 -1.2262302949179739e-13 -5.404472602041907e-10 +DLDP_A_1 4.149964470051626 4.346569885834892e-05 7.580166654640269e-08 3.560162834322897e-11 1.1718623494469917e-16 -8.210766583181851e-12 +# +SENSITIVITY_A GU.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.1333186870798111 -6.059537291870442e-06 -2.8881865172608018e-05 1.4491761757214104e-15 1.3127234945252156e-09 2.1334184928088948e-17 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -31500.081942224686 2.806682474889258e-09 2.0766799943702656e-08 -1.8647609621184042e-11 4.455067455336562e-12 -3.488691593363223e-12 +DLDP_B_1 -1700.0039956658572 -2.7282815836709523e-09 1.786103137384121e-09 2.2847371501424885e-13 3.9473372837255203e-13 -1.737854990171043e-13 +# +SENSITIVITY_B GU.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1129 -489 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -0.6549059679729141 -1.087432865806185e-05 0.00014187738075369598 9.006694292848272e-16 2.355789006134874e-09 -6.418634604457e-16 +DYDX_A_1 -0.0013847672635787789 -3.1208791539442284e-08 2.999933122723109e-07 -8.38378090330709e-17 6.760898889120387e-12 -1.1985048019421645e-17 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -19.450693609368294 0.00013326463568527803 -0.00010647266158275988 1.8985636832939453e-07 -7.418690365845675e-14 1.1532891264896091e-08 +DLDP_C_1 -4.102340312306644 -3.61236371147859e-05 -2.0537022812929256e-07 -1.1693984808112525e-10 -1.111598748175944e-16 2.2245347221776996e-11 +# +SENSITIVITY_C GU.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1019 2136 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -1.8185027410431647 4.9172358266974785e-06 0.0003939564011141817 -4.125430559163523e-16 -1.0652581154016806e-09 -2.0702001391597333e-16 +DYDX_A_1 0.002458277318568735 -1.4589965639095597e-08 -5.32555761694879e-07 -7.198120326510901e-19 3.1607382176854417e-12 2.153670591180276e-18 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 194.54548088711152 -0.0009264549097994686 -1.0007531779931966e-06 -1.97333570631487e-07 -2.0375404418322446e-13 1.0844981845914201e-10 +DLDP_D_1 1.971115340816697 2.0673808410017384e-05 5.5266891824724346e-08 2.9103424079926853e-10 1.6161683876621107e-16 -5.986473916076114e-12 +# +SENSITIVITY_D GU.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2203 -1072 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -1.9258212241120765 2.9079999681503346e-06 0.0004172056367242826 2.2159038416881068e-15 -6.299857041595175e-10 3.2382182400967454e-16 +DYDX_A_1 -0.002229464924970507 -2.2650327360801763e-08 4.82986141335254e-07 2.6794158344602436e-16 4.906677541226849e-12 2.7402195214791107e-17 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 149.8231040768641 0.0024247777325200606 -4.6624057609302284e-05 -6.675733912368852e-08 -5.089560048259032e-13 5.05039797850133e-09 +DLDP_E_1 -1.930534053552338 -1.4870742296045228e-05 -7.10685638649747e-08 -2.344903787404551e-10 -3.0581195094499046e-16 7.698146271172435e-12 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5c9ae8f8d8e5d4e6e97af6cdd57d58924e822f72 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..20b6936012ebd3a04b4fd6900c5462d0a9a05f8a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3fd95fd27a732747213fd9cf108a83abb210cd3c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..76ec95195c0c4006c029da744d7bb40f722717ab Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..8d03023ee7cb00d8eaa904f5d61e142907240683 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GU8_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV1.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV1.conf new file mode 100644 index 0000000000000000000000000000000000000000..b4ade3087f518ec32e88dd2fbc526487c7aaf0e4 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV1.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA -1207 -529 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -0.5562226928455731 -0.0007372754423304092 -0.0002845124588546293 2.957593747255811e-08 6.06443631152333e-08 9.248389666933043e-09 +DYDX_A_1 0.004071762445587339 -1.0388034639376296e-06 -5.184545591110931e-07 2.950842590760288e-11 8.629549146428017e-11 8.590146608513484e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 57.88308161606133 0.002284024955915738 -0.0005605547383010775 1.329642630657357e-07 6.868849861331077e-08 1.908300284082296e-08 +DLDP_A_1 -5.430309277437073 -7.598494308557103e-05 -9.060463402675994e-07 -1.0509281972132e-09 1.1212618949833984e-10 8.189063349796313e-12 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -1.2784334287167787 0.0002834889208630938 0.0002626458400627703 -1.203349782197172e-08 -2.4464503361172954e-08 -7.76672373364528e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -33499.31798973234 -5.558346643246982e-08 -6.668290408092265e-09 8.594660692407747e-12 4.5648291770250205e-12 -2.861242051024139e-12 +DLDP_B_1 2499.955930159056 1.8247684810528128e-08 -5.124026939305696e-09 -1.1265288928891346e-12 -6.632078654515229e-13 1.2436492739712935e-12 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 575 1294 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -1.3955165518752604 -0.0006936103622856809 0.00013143561405441588 5.440093188297929e-08 -5.703267920577962e-09 7.639038677829811e-09 +DYDX_A_1 0.011823009287106606 7.239281314389117e-07 -4.267531944794361e-07 -5.989416888583329e-11 -4.923499993494732e-12 -1.3507913669602405e-11 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 122.63867551436933 -0.004242706195778248 0.0010695845046687358 2.088449921873838e-08 -7.91218474064999e-08 -6.169628974408875e-08 +DLDP_C_1 4.981943367084479 7.490902070225359e-05 -4.5271762816763536e-07 1.5241046779495554e-09 1.1117840385377018e-10 2.1588228340622938e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2354 -1173 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -13.179254929989185 0.0002880079108077928 0.0007565996855341591 -4.9519503432750185e-09 -2.6273715426914455e-08 -1.0949114569811886e-08 +DYDX_A_1 -0.005373828929151644 -1.9438906118260222e-07 2.887594941778604e-07 3.2158759381759983e-12 3.0644817147680893e-12 -4.2443585882402175e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 133.76193868886426 0.0048731918200323136 -0.0003157464009472576 1.0041507100881037e-07 -8.097236957836977e-08 7.73230662416335e-08 +DLDP_D_1 -2.651750495512287 -3.3364190855669655e-05 -2.501271705759661e-07 -5.219103014354877e-10 -4.72398593590915e-11 3.8488146667381025e-11 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1271 2625 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -11.920808389183309 -0.00011415094843923731 0.0002994272413704122 1.386381190886479e-08 1.6080286767997555e-08 3.4355464695406285e-09 +DYDX_A_1 0.019676662264214686 4.055388183541108e-08 -6.255250461130325e-07 -6.832430046123599e-12 -1.5766051514820343e-11 -4.21114365134965e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 503.91146683133474 -0.006657422933214257 7.521323150390262e-05 8.439348434351675e-09 -2.3826759579370058e-08 -9.501388807577034e-10 +DLDP_E_1 2.211752554474765 3.667853808420372e-05 2.425657484935027e-07 7.131853414255109e-10 1.745070418040113e-11 -1.1484086595626682e-11 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..e495adc26c5183e66c182e9e56fbd8a869321fd4 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..66dd770ad14cf3dab226803f0ee6ac9db9ee8453 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..41ba5851d441fe1f66728ab1760912ec88e1603f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..75a0dc5950a0945e85807452009edd3309935b76 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..4066fa1ccec03c05c62a856093895d0d03d74a5b Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV1_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV2.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV2.conf new file mode 100644 index 0000000000000000000000000000000000000000..3c57944d7cbca2964e9f2206d1b8bbc8f9632cab --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV2.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA 499 1240 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -3.5156568005665196 -0.00010536147185187255 8.250492849632949e-05 5.9443315282146664e-08 -8.656303179034777e-09 1.2267644855668332e-08 +DYDX_A_1 0.01406609027531948 -1.467090405612457e-07 -5.220002679185167e-07 1.0172019009887917e-12 1.4600391667454285e-11 -9.58446360217842e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 251.04996408897003 0.0006251211965776392 -0.0006324631068386968 1.2185879024827236e-07 8.921007613794044e-08 -4.632713866758137e-09 +DLDP_A_1 5.480443523760489 0.00014693917289427383 8.297272207577246e-07 4.741869764342942e-09 -7.849215783793148e-11 -1.856646682560054e-11 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.005559817988059934 -0.00018255575968447664 3.054043747611831e-05 5.1142306445063675e-08 1.0441702641921801e-08 -3.3287717516645856e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -45999.09788745533 -3.7652977065053966e-08 -5.9267338979842816e-08 -1.8496924664351843e-12 5.236982821281505e-12 4.631152625048623e-12 +DLDP_B_1 -2499.9560158774807 2.2696896917473453e-08 4.1619126756042846e-09 -4.8502746517211075e-12 -3.0247432027596596e-13 -2.8011239042933763e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1252 -531 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -3.065699632725347 -0.0010505304630852078 -1.422294253523046e-05 1.2735824982275005e-07 8.612128349469759e-08 8.22283322122372e-09 +DYDX_A_1 6.245897978058403e-05 -1.0838696712565785e-06 -2.2779339115085474e-07 5.4397005664319636e-11 1.039332145162313e-10 1.680439064521252e-11 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -78.71108474933025 -0.0017274934999427206 0.0005931121395088539 2.7473972432468318e-08 1.001006675316661e-07 -7.781075244619163e-08 +DLDP_C_1 -5.70368926173174 -0.00014606045952232118 6.167396836629453e-07 -4.363884591124964e-09 1.735250786291784e-10 -9.641815649787737e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1142 2514 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -12.031633401255306 0.0003553244575854852 0.0004677778813348234 1.0452745034386852e-08 -1.1047577397195447e-08 4.04031560804154e-09 +DYDX_A_1 0.019620680354212938 -2.5593852970988456e-07 -8.023105844432155e-07 2.6145399598441025e-11 5.936698173396823e-12 3.022246845222462e-13 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 455.19360770807396 -0.003149742088711492 0.00033128658486222617 1.852998296745122e-07 -7.434079289263483e-09 -2.8505924579082505e-08 +DLDP_D_1 2.5097404746176712 6.961287941690251e-05 -7.762513205932898e-08 2.18106039607285e-09 9.03801425113295e-12 5.3935127818309355e-12 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2436 -1151 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -12.77676356211733 0.0004712329022060798 0.00042941541659301713 -4.4367526698396516e-09 -3.033954288502886e-08 1.7422302470716193e-08 +DYDX_A_1 -0.006800399044463548 1.2791229240166598e-07 2.5353271321217663e-07 -3.676486538941091e-11 -9.088909795835033e-12 5.7010500159057145e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 160.2673202389571 0.004794575297720743 -1.5083186430309495e-05 -5.007510483613392e-07 -6.061307052929112e-08 2.389992360729603e-08 +DLDP_E_1 -2.7175624857664755 -6.555822742378678e-05 -2.486177649796168e-09 -2.417331524948964e-09 -1.1270321829231401e-11 4.696490067915023e-12 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a303902327459cc2a0857a52f6a596384f841e24 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..49d308c53acc6245028b9561b11e3f392f489e19 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..88eeb8b99eeba6b1d19b48df694fb0ae316d253c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5aa260c72bc842f90603f788e904950f1834f7ea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d44bf3f21095b557131da7791169d15159e61643 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV2_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV3.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV3.conf new file mode 100644 index 0000000000000000000000000000000000000000..143d08ebba493cf5bc77425b20f3e2fe88d175b6 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV3.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA -1207 -527 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -4.416269512821448 0.0005589358785668658 0.00019986581020869592 -2.149650375571385e-08 -2.348887943224577e-08 6.7149730790090576e-09 +DYDX_A_1 -0.001977904430383177 5.286754105602383e-07 -6.155229631985216e-08 -3.296713162249492e-11 -7.35171367181885e-12 1.1196151830932216e-11 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 64.8644294799899 0.00013490021627723608 0.00029873539589690804 2.608210671608631e-07 7.647212438988083e-08 -6.872357656316183e-08 +DLDP_A_1 -5.433876932468281 -7.441293981111274e-05 -9.271605243625446e-08 -1.2834101627083892e-09 7.664031070010298e-11 -5.3921792811956076e-11 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -0.11466450186141054 3.641585458754188e-05 -6.425333432943943e-07 -2.8078128372197333e-09 1.4917317759469914e-09 -3.328778649227241e-10 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -33499.31695325807 -3.1246903607723727e-07 5.50302708603514e-08 2.0469908559939824e-11 -8.992819194652991e-12 1.0155805944746677e-12 +DLDP_B_1 2499.9559317479057 1.4432025435828777e-08 -2.8488400874437936e-09 -3.242963352283884e-13 3.4652305447619596e-13 2.787451509269777e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 575 1293 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -2.0958032078114424 -5.357129488188543e-05 0.00016315083877567382 7.758130821717458e-09 -2.034434038598195e-09 -1.1714843138737006e-09 +DYDX_A_1 0.007686734726700757 2.3399828264483445e-07 -5.815682582766848e-07 -2.2794799454628796e-11 1.9196027300424663e-12 1.99173639251427e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 117.88163245889703 -0.0014934370633562966 -0.0011207684496041836 -2.4860165490754785e-07 9.182061051605321e-08 4.844022032085457e-08 +DLDP_C_1 4.975597036007504 7.637408957280234e-05 1.4152074189614061e-06 1.5862120298771037e-09 -1.3180166988248973e-10 -4.844665903667791e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2354 -1171 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -9.1433462062202 0.0006770366877080856 0.0004857478576560696 -4.388101267303894e-08 -6.449827065459868e-09 1.3719641794887276e-09 +DYDX_A_1 -0.0037864418874534013 1.374172132900991e-07 1.946788516323271e-07 -1.885538345955294e-11 8.660990826780435e-12 2.299477057026973e-13 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 126.67421491092757 0.007005088786127847 0.000340860049565041 -5.5430961269665055e-08 -4.9013896977823256e-08 -4.944963615831829e-09 +DLDP_D_1 -2.657247702404092 -3.153320698177072e-05 8.770279313903432e-09 -6.98017682057362e-10 -3.458783341971529e-11 8.831464114534086e-12 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1270 2623 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -10.10884013322683 0.000611038857669508 0.0007226379597082433 -2.7519232895567092e-08 -2.3485421258830485e-08 -6.660066030481946e-09 +DYDX_A_1 0.012952062008757996 -2.3957858483332904e-07 -9.123833729163628e-07 7.607918912917218e-12 1.2237900789421799e-11 3.44292856430362e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 498.2485287338301 -0.005113706187000698 0.00011638529540133559 -1.1970899344891683e-07 -1.6446193661950153e-08 -1.1461813252254765e-08 +DLDP_E_1 2.2128180830677713 3.6875047423569935e-05 5.618847674930407e-08 7.495015278890869e-10 2.1309008203706867e-12 4.733593264453177e-12 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..67971fdcdee7406e94cdd96e17112114c7caf318 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..770e7955bf95c23b6b08769f79e793a6fc9853ea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..41ba5851d441fe1f66728ab1760912ec88e1603f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..13762e6203aab00b636cc36e34d0c7a6e473d3b1 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..143b1ba97c59c9ec2bd7ce07238e84b99ae89666 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV3_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV4.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV4.conf new file mode 100644 index 0000000000000000000000000000000000000000..fadea121036d76eaa879718183b75bbe9ce91b01 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV4.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA 499 1238 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 -1.7962327374764941 -0.00012836624837061654 6.569343477309109e-05 4.3251169244164724e-08 -6.158537087011114e-09 7.526759328299726e-09 +DYDX_A_1 0.008138873900897188 1.6677576241613545e-07 -4.846523181942543e-07 -5.164464302663787e-11 5.998033688074168e-12 -9.235457394000094e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 249.6792476351581 0.000898248607996836 0.00015127446467874065 1.3703602642526808e-07 -5.16042406247177e-08 -3.3239571403174267e-09 +DLDP_A_1 5.488991226493129 0.00014611369000253594 -1.0396728073220243e-07 4.390242428327255e-09 8.446958640245895e-11 4.447751037283099e-12 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -0.042061498321305235 0.00019103315647588575 5.38974977529515e-05 -3.148762316167697e-08 -5.489484998176452e-09 -5.2890479487895e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -45999.09865502062 5.611525600857092e-07 -2.5208970244605666e-08 -8.295737285047428e-11 -1.2227549173377851e-11 9.845943125478401e-12 +DLDP_B_1 -2499.9559691392506 -1.6618380116462106e-08 -2.5922214513807162e-09 2.4955142593758965e-12 4.30993745060464e-13 -1.754923077245795e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1250 -531 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -3.52260826413025 0.000621691157926119 0.0005461133728903791 -2.5715539474356078e-08 -6.853854930059187e-08 -2.4587010697270882e-08 +DYDX_A_1 -0.001926071902005976 7.215248630067406e-07 3.8265262634887847e-07 -6.408375786664045e-11 -6.463537282846684e-11 -1.9231070121751895e-11 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -80.85823249320151 -0.0018680373540092409 0.0002781938139295231 2.361630385927036e-07 -6.874166178958459e-08 -2.573247199502863e-08 +DLDP_C_1 -5.718480288853962 -0.00014317230848633045 4.030708670799158e-07 -4.250804191049821e-09 -5.2056058018804134e-11 -2.349900819439698e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1143 2511 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 -6.741689813249012 1.3968596153070466e-05 0.000472047339681096 2.146567681454157e-08 -2.63026587783844e-09 -1.071252023670432e-09 +DYDX_A_1 0.011487453749642197 3.3596910941031744e-08 -7.915718118053484e-07 -1.2070078903418932e-11 -1.6456480771969691e-12 7.398331423755234e-13 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 458.78237835215725 -0.003155101274008445 -0.0005023187153918718 2.2962656215840894e-08 1.0246268392016349e-07 2.2767525949889147e-08 +DLDP_D_1 2.5113146751937716 6.910908516302976e-05 3.121704686214696e-07 2.159583296373238e-09 -5.200722000435234e-11 -1.2213990176947708e-11 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2430 -1150 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 -6.810232709375092 0.0002826767808708764 0.00036227802890744057 -3.925641130983531e-08 -3.625432727683849e-09 7.979656051813183e-09 +DYDX_A_1 -0.0036909159226217996 -1.4589342536628683e-08 1.9829007213120112e-07 -1.946470341773156e-11 8.961994398263779e-12 4.235607879814966e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 161.83113362016448 0.001570186565389905 -0.00035444254729893095 1.7066679656098976e-08 2.335084212747341e-08 1.890182797537708e-08 +DLDP_E_1 -2.7225919416294255 -6.632689713033233e-05 -1.9691425406473604e-07 -2.118851209401349e-09 2.0100371007060615e-11 1.2134487885318113e-11 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..cde6136b010e0be95e620144213bf0f59d5bda55 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..00df35d2c76033e6c48ec0ba011025287c25e76e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..88eeb8b99eeba6b1d19b48df694fb0ae316d253c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b0fc740d9ea4dc8d3d1e2620f67a532d10a0bce5 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..0ba7f6c647b8eb28648b0c407820ad07560411c2 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV4_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV5.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV5.conf new file mode 100644 index 0000000000000000000000000000000000000000..c1f7bcac3e1b288adb01a9711e1651830e77cbca --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV5.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA -1178 -522 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 1.2378361587421858 -0.00012278540012796238 1.68264264389694e-05 4.231623880862368e-09 2.45739785211005e-08 -1.6002403916774893e-09 +DYDX_A_1 0.0010994698746714722 9.023428506394359e-08 2.1302875516193444e-07 -6.786854339742088e-12 1.0506538696398139e-11 1.895718366287578e-13 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 138.78263112560526 0.00014129772142017468 0.000277302850782034 9.085985009662725e-08 -2.4511424393899387e-08 -2.4775599498925737e-08 +DLDP_A_1 -6.521128121587419 7.358532289592492e-05 5.469004628388042e-07 -6.375133612997159e-10 -4.875054934044846e-11 1.6570469272321706e-11 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -0.7334583230239231 0.0002489831230916885 -7.56563131643595e-05 -2.1158873821042708e-08 1.864724189409209e-08 -7.655769099594715e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -33499.317928596494 -3.4226924081445416e-08 6.145955040504383e-08 2.2077396497542565e-12 -5.857000849547127e-12 -1.6790861356276626e-12 +DLDP_B_1 2499.9559407488496 1.4220077817816035e-08 -4.06898006057692e-09 -7.896455470082166e-13 -3.8940841880640015e-13 8.661180294954932e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 560 1222 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 -1.4652154659747656 0.0006976036489758739 6.607180998372233e-05 -5.197455331007714e-08 1.5415416723208883e-08 -4.1563948605717374e-10 +DYDX_A_1 0.0009332071852556498 -8.492920912530439e-07 -4.0813942518753524e-07 6.207979700546238e-11 1.2931257106705084e-11 -1.8685139127323678e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 44.85896919280477 -0.0034385432790900268 0.00013406672923980603 9.917283933605504e-08 1.3133484674542105e-07 -8.686709553751514e-08 +DLDP_C_1 6.250658275244865 -5.332258771955326e-05 -9.266030505993722e-08 2.2065602369582777e-10 -1.802276843252207e-10 8.660605389730437e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2334 -1171 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 3.817411039254372 -0.0004445338556836772 0.00037809236485076723 3.1973270310266115e-08 1.806342775064555e-08 -5.730526405230165e-09 +DYDX_A_1 0.0030975437366593007 -1.727336499550711e-07 4.909094025741718e-07 1.5610304522290074e-11 2.061491829189092e-12 -2.0924329033675745e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 254.61570109652428 0.005967327784794602 -0.00021925951188990142 -1.2472221537283427e-07 4.487583788712074e-08 -3.45858052395107e-08 +DLDP_D_1 -3.109596507100082 3.92149478958276e-05 8.049680216686064e-08 -4.0737062340574115e-10 9.985435947796407e-12 -8.352539051863216e-12 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1230 2424 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 2.5833458881080276 1.5703939041612964e-05 0.0002474402657367446 -3.6756656296319143e-09 3.555227790186067e-08 2.7840196161560417e-09 +DYDX_A_1 -0.003004292396300973 -6.266443570245549e-08 -5.432324865606894e-07 7.407250939686573e-12 -6.78737510264306e-13 -3.0255766556129982e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 366.29618986284856 -0.004018511549053385 0.0006780396471202923 -4.4440330024799774e-08 -1.2018348046052552e-07 1.1173148347624305e-08 +DLDP_E_1 2.8600693249371028 -2.2637346352907753e-05 -4.4067561660105615e-07 1.5849333308956114e-10 6.025869855381693e-11 -9.596099302773672e-12 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d80dde36bfb004c47de8d5d2d2acc36ca8fc82cf Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..99e7ae8a89359e4b5ea893210879a307c4bd78b1 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..41ba5851d441fe1f66728ab1760912ec88e1603f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..4ad6810d21cef0eae401a1519b8ce4b25c851b60 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ce6fd4355fec6d1539d985e8a8af13c91bc9f3d7 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV5_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV6.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV6.conf new file mode 100644 index 0000000000000000000000000000000000000000..2ffb8297a3df31f5736ce43c6f5890b61cbdd548 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV6.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA 515 1177 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.5683725695015461 0.0002625991176114534 7.006920002719378e-05 -5.3902702638251205e-08 2.3077039979626143e-09 2.807448790238151e-09 +DYDX_A_1 -0.0016501446166726679 -1.6314360677144785e-07 -2.94319119237387e-07 3.599554493527195e-11 7.82841509626936e-12 -5.649214159083351e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 185.3546461019509 -0.000553739486924042 5.3805915890072636e-05 -5.202187060025013e-08 3.482547058657821e-08 -1.0439402910731553e-08 +DLDP_A_1 5.8616055291181715 7.051466695382349e-05 4.4323240699707057e-07 8.826984506498909e-10 -5.919091363569429e-11 -6.797891528404601e-11 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -0.17005580833505646 0.00026880499899771494 -2.3798013059529185e-05 -5.7760719086943495e-08 1.3962410140423873e-08 -6.620206122560595e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -45999.09774226991 3.1551430357268373e-09 -1.3794788501096134e-07 -1.3021428541250755e-11 1.2976075821878232e-11 1.1869104334095063e-11 +DLDP_B_1 -2499.9560089978613 4.271751500393071e-09 1.5076141040608468e-09 1.786162770424024e-14 -6.91349749868267e-13 1.0905053935734857e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1228 -560 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.8380063286543387 -0.00013037357340758146 0.00010789381564376383 2.3645120613756304e-08 7.177443570652976e-09 8.640448820419748e-11 +DYDX_A_1 0.001567576922469369 -2.3588103401500962e-07 2.587174804138313e-07 5.237611819433522e-11 8.373180929474428e-12 2.440567273421944e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -10.423786119846984 -0.0003049133625030083 -0.00011551611951060784 1.8026603612641115e-09 8.070120986099926e-08 8.941181458147948e-10 +DLDP_C_1 -5.776562119997951 -6.22509833925811e-05 7.038107392176707e-07 -6.686229687154615e-10 9.821045078860279e-11 -7.806501207353245e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1163 2343 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 2.6368053211882767 -0.0001487917249764907 0.0003703622623883897 1.9895309598789077e-08 1.0363018736288482e-08 3.5771486782834076e-09 +DYDX_A_1 -0.0031312799709676325 1.4021043782864998e-07 -5.24123009262728e-07 -2.1478574034804025e-11 -1.7503729317616454e-12 -3.106713845835354e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 329.969638325766 -0.0035813360418773046 0.00011198209649146591 1.2411351214666428e-07 2.7517115122967678e-08 -2.606855182813427e-08 +DLDP_D_1 2.7565938481842873 3.540538606208951e-05 -1.2220260192351779e-08 3.8190045996197453e-10 -2.1688775421445923e-11 -2.713028670441413e-12 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2425 -1222 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 2.6839658293922617 0.00010658062025562498 0.000433052445346869 -3.167531570342423e-08 2.9387770353177513e-09 3.446598864135609e-09 +DYDX_A_1 0.002792405633393311 4.4178354232831405e-08 4.966573928541092e-07 -6.792686687285308e-12 5.012957092122308e-12 2.5444220795607283e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 296.38553192902395 0.003649536801750414 -0.0002230800602578193 -4.240677855053282e-08 -6.824297028707603e-08 4.512670565455297e-08 +DLDP_E_1 -2.6758122645776115 -2.580594312218447e-05 7.102911247400672e-08 -3.395864979066543e-10 -3.812552080906051e-11 1.3970093723919844e-11 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..8ce5a325b41d32184ad5c2e1f2b2aa0a798b9303 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3233b9ab0c7dda30cc4e434998f7c206e693e493 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..88eeb8b99eeba6b1d19b48df694fb0ae316d253c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3a6be9bb8566f50a19d426e6b3ed3f34b412341e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..207ed7f0d0555e2184dfb09b251e541faf94624f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV6_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV7.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV7.conf new file mode 100644 index 0000000000000000000000000000000000000000..62f3cdc27198769ec2c89b46f10f4d3ea5f11c29 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV7.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA -1175 -526 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 3.7811150005170577 -0.00040847550433675925 -6.842033189326553e-05 1.8619757183688087e-08 3.603661860143062e-08 -5.031497217905239e-09 +DYDX_A_1 0.0030770173661212987 3.073171639924094e-07 8.019425706472434e-08 -2.7948612467844153e-11 3.942101563769058e-11 -5.762799940597462e-12 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 109.94382316464947 0.007868235003365306 0.0015065145750852876 -3.573800000969111e-07 -1.0268039017966188e-07 -7.850460755067828e-08 +DLDP_A_1 -6.453515314520644 6.38479632564617e-05 1.9395165901074966e-06 -4.986927243402116e-10 -6.686889606632738e-11 -8.802275576082156e-11 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -85 116 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 0.25307088901743824 -6.180557626035028e-05 -5.6000734874910896e-05 3.008373713368942e-09 9.845541416832335e-09 -2.9588298008839754e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -33499.316209131066 -4.889569549249018e-07 -2.3427126649711028e-07 2.7368330807197878e-11 4.086639320943341e-11 -7.796329733737077e-12 +DLDP_B_1 2499.95591720129 1.8425804014217365e-08 8.78838126445331e-09 -9.553854423962737e-13 -7.620927232901717e-13 -3.8256078405696343e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC 563 1219 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 2.6566029956834267 -0.0001993727960878793 0.00013478205560089592 2.20019072660902e-08 5.981916411639331e-10 -3.5067244442090692e-09 +DYDX_A_1 -0.004039532789408107 -2.9480238320497073e-07 -4.7165423474910564e-07 1.966361166515235e-11 1.4477239941208906e-11 4.155902211482753e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 50.87585537884792 -0.004696494578207091 -0.002854838162495125 1.6453343331142687e-07 1.959221511431642e-07 1.4710843212204927e-07 +DLDP_C_1 6.20951358391743 -4.939795157297414e-05 2.15357966477588e-06 4.915431616360036e-10 -1.367003148795361e-10 -1.8571831166566514e-10 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD -2331 -1177 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 9.833666012049616 -0.0007501727177554814 0.0002824071585063054 5.6696442845204616e-08 6.754806246856363e-09 6.284682472856921e-09 +DYDX_A_1 0.007654095586821002 -1.0181243560613835e-08 4.214752513804997e-07 6.842069982346843e-12 3.773424291124153e-12 3.3798332367439925e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 250.93629876949882 0.007519589214984534 -8.221434996810977e-05 -1.646466862447826e-07 -6.239869545694855e-08 5.310920729533761e-08 +DLDP_D_1 -3.068132894666639 3.2728867382170696e-05 2.432956605833829e-07 -2.1317184155101302e-10 -3.349165144997328e-11 3.527019538067007e-11 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME 1234 2416 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 9.093523836228135 -0.0005185506682510039 0.0002952504909479164 3.860624463995974e-08 2.2011624918106087e-08 -9.895919094066933e-10 +DYDX_A_1 -0.009402968049811306 9.375727884809776e-08 -5.679892663020363e-07 8.422649782599757e-13 4.763112243232167e-13 -2.1843736228447546e-14 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 377.8326848831898 -0.008207663120495638 -0.0006468560814309217 1.9910216431424405e-07 7.172846988543768e-09 8.376365525625963e-08 +DLDP_E_1 2.832921872688475 -1.7507038752476333e-05 8.357142715248528e-09 8.295967711310619e-11 7.648472344635591e-12 -5.2668572819119176e-11 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..41885f3d1b4937dfd18a8749c4983c1f5acdc1dd Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c354377b7580cb9ea73449e137023916154c39a4 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..41ba5851d441fe1f66728ab1760912ec88e1603f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..02ef462d473811c90f7cd9251741c55d032bd195 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..61901317390c0a506f4c019c4ec3a3e08ee74379 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV7_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV8.conf b/ObservationSim/Instrument/data/sls_conf/CSST_GV8.conf new file mode 100644 index 0000000000000000000000000000000000000000..51d8fe1fd7052fc32e30012e0f9aedccae7fa076 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/CSST_GV8.conf @@ -0,0 +1,132 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# 1 order (BEAM A) ******************* +BEAMA 517 1176 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 1.85705160718601 0.0004347912168139198 6.925226274438001e-05 -7.674936379751928e-08 2.5360665429182694e-09 1.8413314253112366e-10 +DYDX_A_1 -0.005186075377319128 -2.0657847771207873e-07 -1.6583805404903412e-07 4.736933399389434e-11 4.4009367853254e-13 -1.276594051207188e-11 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 188.5534512025415 -0.0014704692416785 0.000612543977346908 2.007850076738281e-08 1.4194592531170268e-07 -7.759229950390409e-08 +DLDP_A_1 5.8710248614458616 6.45250072921093e-05 -1.4118759316469087e-06 6.713375536655811e-10 -6.079099534683966e-11 8.444062529419406e-11 +# +SENSITIVITY_A GV.Throughput.1st.fits +# + + +# 0 order (BEAM B) ******************* +BEAMB -121 80 +MMAG_EXTRACT_B 30 +MMAG_MARK_B 30 +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_0 -0.6502362516331273 0.0004126085974983609 5.9238627024131765e-05 -6.016741597313287e-08 -4.177679752221959e-09 -9.246098631665313e-09 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 -45999.098088249615 -2.020488673633556e-08 5.832142102590865e-09 1.4235279966501311e-12 -3.2422967887568725e-12 1.847739810041484e-12 +DLDP_B_1 -2499.955996231492 3.442384528615149e-09 -3.91231110580748e-09 -8.790575563626698e-13 -1.8010738964679679e-13 3.4116166635686207e-13 +# +SENSITIVITY_B GV.Throughput.0st.fits +# + + +# -1 order (BEAM C) ******************* +BEAMC -1224 -562 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 1.9189304176461794 0.00016437384653731756 0.00024569314445877714 -1.7652527457023917e-08 4.451536629733484e-09 -1.8335218213849877e-08 +DYDX_A_1 0.00413376823690816 4.0839136662136974e-08 3.196775619036203e-07 2.0152360067018585e-11 5.862317721933411e-12 -9.936558869234138e-12 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -20.912091752582096 0.002162826416752504 0.001190637315609984 -5.0299184321331906e-08 -2.0693196648130572e-07 -3.3965803556694406e-08 +DLDP_C_1 -5.8016139605407915 -5.3551336327594006e-05 8.780780945442022e-07 -6.738910157909035e-10 -1.3621195992295904e-10 1.3440892596250982e-11 +# +SENSITIVITY_C GV.Throughput.-1st.fits +# + + +# 2 order (BEAM D) ******************* +BEAMD 1168 2342 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 7.018126896585679 0.00038481511440685416 0.0004494806932104142 -1.0419441298036432e-07 -1.112372803767778e-09 -5.1808602094761285e-09 +DYDX_A_1 -0.008748895260191009 -5.149010051129555e-08 -5.215894051986582e-07 3.429591843624662e-11 2.372308962315323e-12 -2.0762709560078255e-12 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 336.1795490128755 -0.0032204504514754106 -0.00016762481213696898 -2.39993516082151e-08 5.3491579150662175e-08 1.965582670807892e-09 +DLDP_D_1 2.757082551671474 3.218019411536404e-05 -2.1509338462577187e-07 3.661907345086239e-10 -1.1815103338002076e-11 9.492832346507823e-13 +# +SENSITIVITY_D GV.Throughput.2st.fits +# + + +# -2 order (BEAM E) ******************* +BEAME -2418 -1225 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 7.051618660592987 0.00044993052313633966 0.000568576071753248 -9.125941476168853e-08 -1.0197118771739255e-08 -7.464099958501876e-09 +DYDX_A_1 0.007720397670144312 2.6306139125746e-07 5.241981337161832e-07 -3.5736030680706604e-11 -2.277967960677812e-12 1.0174827866049466e-12 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 289.31403069472975 0.004047957141301616 -3.82568269975507e-05 -6.349616609463875e-08 -8.610204084767976e-08 3.4060345226442515e-08 +DLDP_E_1 -2.6880282068614423 -2.2955090390629592e-05 5.096417600598682e-09 -2.9431409350852013e-10 -2.022240038595323e-11 2.7697301839390107e-11 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# + diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_-1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..40d2f1e7c2ee227fd1f648233eda32ffbf98cbd5 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_-2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..cf8683329d8846a83ab58b6c7b2af8569f508008 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..88eeb8b99eeba6b1d19b48df694fb0ae316d253c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..6966a1ff47ad0f2e88f0c9f8f29671468a1b0c6c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_2st.fits b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..99a92031e190e8d47d535cf1ed8c84d8f5a9c66e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/CSST_GV8_sensitivity_2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GI.Throughput.-1st.fits b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..f3a1a4d1cee280f88d9a690d495c4f102c027d26 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GI.Throughput.-2st.fits b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5d3c9a8dcf7aa02a85719d00757f531bbeed64c4 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GI.Throughput.0st.fits b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..81dd788e682de2c99b992e43fa1cfa7e9803bd23 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GI.Throughput.1st.fits b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..950e70b927d9d99e8fc8e420f3d89919476f6099 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GI.Throughput.2st.fits b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..38bc47031a761ebca8fca409f33941ba8dc5ac22 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GI.Throughput.2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GU.Throughput.-1st.fits b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..92d35b743958c1a94d4fde1d2ad19c430a73335f Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GU.Throughput.-2st.fits b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d7b9674659ee1fb4a92e01607c65479a9438a3ed Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GU.Throughput.0st.fits b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..491bb6906e5b5cbd61c21352ba81c1a3985510fa Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GU.Throughput.1st.fits b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..30428b50a785c9d1473b492ef0b8b7a265722dfd Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GU.Throughput.2st.fits b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..572f0f546faa1eb24824ed768937cfae85d30e79 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GU.Throughput.2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GV.Throughput.-1st.fits b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.-1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..fb9a2820172f32c28ef9115035d5f577900e06b2 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.-1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GV.Throughput.-2st.fits b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.-2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..6451143acf27bef3e15a21588cb30929b71d05fb Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.-2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GV.Throughput.0st.fits b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..156d4bfce04501b8a7263ad61eeef6fdea687b9c Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GV.Throughput.1st.fits b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..16835f3a70bbe907a989713416077df6e0664974 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/GV.Throughput.2st.fits b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.2st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b84053452edcc818ca48d9fe0697a3e1885d903d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/GV.Throughput.2st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/__init__.py b/ObservationSim/Instrument/data/sls_conf/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ObservationSim/Instrument/data/sls_conf/__pycache__/__init__.cpython-38.pyc b/ObservationSim/Instrument/data/sls_conf/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83d2c9cf63ee7d8a46c0327fbaf080677f5725aa Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/__pycache__/__init__.cpython-38.pyc differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GI1.conf b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GI1.conf new file mode 100755 index 0000000000000000000000000000000000000000..bcea6c7ce05fb1f973c69bdbb85b8eadefe35aff --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GI1.conf @@ -0,0 +1,65 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 450 950 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +# /Volumes/Comice2/Users/npirzkal/WFC3/IR/trace/G141 Global fit A 40.nb +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.017455 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -32.228916 0.0 0.0 0.0 0.0 0.0 +DLDP_A_1 11.445783 0.0 0.0 0.0 0.0 0.0 + +#DPDL_A_0 -198.97909709239238 0.00022085642768667504 0.015657459895358234 -4.20679688923729e-6 1.2280573229146504e-6 -5.155391423878844e-6 +#DPDL_A_1 11.445783 -2.2310680636779698e-7 -1.7250484537749406e-6 4.1766971161196834e-10 -1.0112004248938472e-10 4.956649137022331e-10 + +# +SENSITIVITY_A GI.Throughput.1st.fits + + +# zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description ~/WFC3/IR/trace/G102 Trace fit B 40.nb +# +DYDX_ORDER_B 0 +DYDX_B_0 0.5 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +# N.P. 05/2015 solution +XOFF_B 0.0 +YOFF_B 0.0 + +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 6200.00 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 3800.00 0.0 0.0 0.0 0.0 0.0 + +#DPDL_B_0 -198.54772435079127 0.0018167722687743144 0.012732046102747235 -3.1545156431674204e-6 -7.78838498521172e-8 -1.5746821630565375e-6 +#DPDL_B_1 0.00033333333333336466 -7.051596740287148e-20 -4.8635321687450096e-20 4.7199609155642836e-23 5.44539123505613e-23 3.3757517911810997e-23 + +# +# +SENSITIVITY_B GI.Throughput.0st.fits diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GI2.conf b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GI2.conf new file mode 100755 index 0000000000000000000000000000000000000000..c615dc168cb1b3bd81816a14bfa526a2f81580f5 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GI2.conf @@ -0,0 +1,65 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -950 -450 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +# /Volumes/Comice2/Users/npirzkal/WFC3/IR/trace/G141 Global fit A 40.nb +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.017455 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -32.228916 0.0 0.0 0.0 0.0 0.0 +DLDP_A_1 -11.445783 0.0 0.0 0.0 0.0 0.0 + +#DPDL_A_0 -198.97909709239238 0.00022085642768667504 0.015657459895358234 -4.20679688923729e-6 1.2280573229146504e-6 -5.155391423878844e-6 +#DPDL_A_1 11.445783 -2.2310680636779698e-7 -1.7250484537749406e-6 4.1766971161196834e-10 -1.0112004248938472e-10 4.956649137022331e-10 + +# +SENSITIVITY_A GI.Throughput.1st.fits + + +# zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description ~/WFC3/IR/trace/G102 Trace fit B 40.nb +# +DYDX_ORDER_B 0 +DYDX_B_0 0.5 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +# N.P. 05/2015 solution +XOFF_B 0.0 +YOFF_B 0.0 + +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 6200.00 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -3800.00 0.0 0.0 0.0 0.0 0.0 + +#DPDL_B_0 -198.54772435079127 0.0018167722687743144 0.012732046102747235 -3.1545156431674204e-6 -7.78838498521172e-8 -1.5746821630565375e-6 +#DPDL_B_1 0.00033333333333336466 -7.051596740287148e-20 -4.8635321687450096e-20 4.7199609155642836e-23 5.44539123505613e-23 3.3757517911810997e-23 + +# +# +SENSITIVITY_B GI.Throughput.0st.fits diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GU1.conf b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GU1.conf new file mode 100755 index 0000000000000000000000000000000000000000..6c490fd108c49f9be2f94ae63fdfae1c6a7cbf24 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GU1.conf @@ -0,0 +1,65 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 350 800 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +# /Volumes/Comice2/Users/npirzkal/WFC3/IR/trace/G141 Global fit A 40.nb +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.017455 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 484.148265 0.0 0.0 0.0 0.0 0.0 +DLDP_A_1 4.889590 0.0 0.0 0.0 0.0 0.0 + +#DPDL_A_0 -198.97909709239238 0.00022085642768667504 0.015657459895358234 -4.20679688923729e-6 1.2280573229146504e-6 -5.155391423878844e-6 +#DPDL_A_1 11.445783 -2.2310680636779698e-7 -1.7250484537749406e-6 4.1766971161196834e-10 -1.0112004248938472e-10 4.956649137022331e-10 + +# +SENSITIVITY_A GU.Throughput.1st.fits + + +# zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description ~/WFC3/IR/trace/G102 Trace fit B 40.nb +# +DYDX_ORDER_B 0 +DYDX_B_0 0.5 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +# N.P. 05/2015 solution +XOFF_B 0.0 +YOFF_B 0.0 + +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 2550.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 1550.0 0.0 0.0 0.0 0.0 0.0 + +#DPDL_B_0 -198.54772435079127 0.0018167722687743144 0.012732046102747235 -3.1545156431674204e-6 -7.78838498521172e-8 -1.5746821630565375e-6 +#DPDL_B_1 0.00033333333333336466 -7.051596740287148e-20 -4.8635321687450096e-20 4.7199609155642836e-23 5.44539123505613e-23 3.3757517911810997e-23 + +# +# +SENSITIVITY_B GU.Throughput.0st.fits diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GU2.conf b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GU2.conf new file mode 100755 index 0000000000000000000000000000000000000000..8c60d9486712e8e552835a0e8ab664fb8fdbd734 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GU2.conf @@ -0,0 +1,65 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -800 -350 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +# /Volumes/Comice2/Users/npirzkal/WFC3/IR/trace/G141 Global fit A 40.nb +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.017455 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 484.148265 0.0 0.0 0.0 0.0 0.0 +DLDP_A_1 -4.889590 0.0 0.0 0.0 0.0 0.0 + +#DPDL_A_0 -198.97909709239238 0.00022085642768667504 0.015657459895358234 -4.20679688923729e-6 1.2280573229146504e-6 -5.155391423878844e-6 +#DPDL_A_1 11.445783 -2.2310680636779698e-7 -1.7250484537749406e-6 4.1766971161196834e-10 -1.0112004248938472e-10 4.956649137022331e-10 + +# +SENSITIVITY_A GU.Throughput.1st.fits + + +# zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description ~/WFC3/IR/trace/G102 Trace fit B 40.nb +# +DYDX_ORDER_B 0 +DYDX_B_0 0.5 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +# N.P. 05/2015 solution +XOFF_B 0.0 +YOFF_B 0.0 + +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 2550.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -1550.0 0.0 0.0 0.0 0.0 0.0 + +#DPDL_B_0 -198.54772435079127 0.0018167722687743144 0.012732046102747235 -3.1545156431674204e-6 -7.78838498521172e-8 -1.5746821630565375e-6 +#DPDL_B_1 0.00033333333333336466 -7.051596740287148e-20 -4.8635321687450096e-20 4.7199609155642836e-23 5.44539123505613e-23 3.3757517911810997e-23 + +# +# +SENSITIVITY_B GU.Throughput.0st.fits diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GV1.conf b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GV1.conf new file mode 100755 index 0000000000000000000000000000000000000000..f3a7ac76e34d1cabecafbe291345bc68208eb3d7 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GV1.conf @@ -0,0 +1,65 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 450 1000 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +# /Volumes/Comice2/Users/npirzkal/WFC3/IR/trace/G141 Global fit A 40.nb +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.017455 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 66.666666 0.0 0.0 0.0 0.0 0.0 +DLDP_A_1 7.017544 0.0 0.0 0.0 0.0 0.0 + +DPDL_A_0 -9.500000000000114 0.00022085642768667504 0.015657459895358234 -4.20679688923729e-6 1.2280573229146504e-6 -5.155391423878844e-6 +DPDL_A_1 0.14250000000000004 -2.2310680636779698e-7 -1.7250484537749406e-6 4.1766971161196834e-10 -1.0112004248938472e-10 4.956649137022331e-10 + +# +SENSITIVITY_A GV.Throughput.1st.fits + + +# zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description ~/WFC3/IR/trace/G102 Trace fit B 40.nb +# +DYDX_ORDER_B 0 +DYDX_B_0 0.5 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +# N.P. 05/2015 solution +XOFF_B 0.0 +YOFF_B 0.0 + +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 4000.00 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 2400.00 0.0 0.0 0.0 0.0 0.0 + +#DPDL_B_0 -198.54772435079127 0.0018167722687743144 0.012732046102747235 -3.1545156431674204e-6 -7.78838498521172e-8 -1.5746821630565375e-6 +#DPDL_B_1 0.00033333333333336466 -7.051596740287148e-20 -4.8635321687450096e-20 4.7199609155642836e-23 5.44539123505613e-23 3.3757517911810997e-23 + +# +# +SENSITIVITY_B GV.Throughput.0st.fits diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GV2.conf b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GV2.conf new file mode 100755 index 0000000000000000000000000000000000000000..1619df76db9c1478d2767eb50bea3adf12966ca2 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle1/CSST_GV2.conf @@ -0,0 +1,65 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -1000 -450 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +# /Volumes/Comice2/Users/npirzkal/WFC3/IR/trace/G141 Global fit A 40.nb +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.017455 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 66.666667 0.0 0.0 0.0 0.0 0.0 +DLDP_A_1 -7.017544 0.0 0.0 0.0 0.0 0.0 + +#DPDL_A_0 -198.97909709239238 0.00022085642768667504 0.015657459895358234 -4.20679688923729e-6 1.2280573229146504e-6 -5.155391423878844e-6 +#DPDL_A_1 11.445783 -2.2310680636779698e-7 -1.7250484537749406e-6 4.1766971161196834e-10 -1.0112004248938472e-10 4.956649137022331e-10 + +# +SENSITIVITY_A GV.Throughput.1st.fits + + +# zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description ~/WFC3/IR/trace/G102 Trace fit B 40.nb +# +DYDX_ORDER_B 0 +DYDX_B_0 0.5 0.0 0.0 0.0 0.0 0.0 + +# +# X and Y Offsets +# +# N.P. 05/2015 solution +XOFF_B 0.0 +YOFF_B 0.0 + +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 4000.00 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -2400.00 0.0 0.0 0.0 0.0 0.0 + +#DPDL_B_0 -198.54772435079127 0.0018167722687743144 0.012732046102747235 -3.1545156431674204e-6 -7.78838498521172e-8 -1.5746821630565375e-6 +#DPDL_B_1 0.00033333333333336466 -7.051596740287148e-20 -4.8635321687450096e-20 4.7199609155642836e-23 5.44539123505613e-23 3.3757517911810997e-23 + +# +# +SENSITIVITY_B GV.Throughput.0st.fits diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/GI.Throughput.0st.fits b/ObservationSim/Instrument/data/sls_conf/cycle1/GI.Throughput.0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..54bb98be6b366dc0867cc978874deda608cd7c88 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/cycle1/GI.Throughput.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/GI.Throughput.1st.fits b/ObservationSim/Instrument/data/sls_conf/cycle1/GI.Throughput.1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..85dd5e104c45f60e52dc154bc84bfcd95521f8a4 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/cycle1/GI.Throughput.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/GU.Throughput.0st.fits b/ObservationSim/Instrument/data/sls_conf/cycle1/GU.Throughput.0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..7db74e84c1f5a4b5c03a386fa5606e20f445330a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/cycle1/GU.Throughput.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/GU.Throughput.1st.fits b/ObservationSim/Instrument/data/sls_conf/cycle1/GU.Throughput.1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..16c735bdbfc34483e77092315b29d1b4d325525e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/cycle1/GU.Throughput.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/GV.Throughput.0st.fits b/ObservationSim/Instrument/data/sls_conf/cycle1/GV.Throughput.0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..1b7ac9fe8b1ce101f4cd888af886c3f830405749 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/cycle1/GV.Throughput.0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle1/GV.Throughput.1st.fits b/ObservationSim/Instrument/data/sls_conf/cycle1/GV.Throughput.1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..a394ae5f72cf8f065dac4144fe95e34a50464e84 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/cycle1/GV.Throughput.1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI1.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI1.conf new file mode 100755 index 0000000000000000000000000000000000000000..bf3792721e868f7cdd71f08c4a2b002fba98b974 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI1.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -1124 -577 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -33.01210344165788 0.007569610429352271 -0.0022577397703360323 -8.214442647976815e-07 -4.592086832501138e-09 2.5239465714847694e-07 +DLDP_A_1 -9.200968629784002 -0.0002566886334429964 9.500220330081724e-05 2.7855490962881916e-08 2.858304867205082e-11 -1.0450952273741693e-08 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2148 -1254 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -33.01210344165788 0.007569610429352271 -0.0022577397703360323 -8.214442647976815e-07 -4.592086832501138e-09 2.5239465714847694e-07 +DLDP_C_1 -4.600484314892002 -0.00012834431672149928 4.750110165041072e-05 1.3927745481441094e-08 1.4291524335939302e-11 -5.225476136871006e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 535 1191 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -33.01210344165788 0.007569610429352271 -0.0022577397703360323 -8.214442647976815e-07 -4.592086832501138e-09 2.5239465714847694e-07 +DLDP_D_1 9.200968629784002 0.0002566886334429964 -9.500220330081724e-05 -2.7855490962881916e-08 -2.858304867205082e-11 1.0450952273741693e-08 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1170 2281 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 -33.01210344165788 0.007569610429352271 -0.0022577397703360323 -8.214442647976815e-07 -4.592086832501138e-09 2.5239465714847694e-07 +DLDP_E_1 4.600484314892002 0.00012834431672149928 -4.750110165041072e-05 -1.3927745481441094e-08 -1.4291524335939302e-11 5.225476136871006e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI2.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI2.conf new file mode 100755 index 0000000000000000000000000000000000000000..2f7ccee8c2542e997885b1ddcc159ecfef5e4aa4 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI2.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 516 1230 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 175.81371583954845 0.00046898716015618923 0.0011751407556484514 6.967374268344785e-07 -1.0886921620684591e-08 -1.1934641681891917e-07 +DLDP_A_1 9.7236437973885 -4.0899320307831585e-05 -0.00010248139112795352 -6.50820335441285e-08 -2.968125617588231e-10 1.16888694637088e-08 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1132 2359 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 175.81371583954845 0.00046898716015618923 0.0011751407556484514 6.967374268344785e-07 -1.0886921620684591e-08 -1.1934641681891917e-07 +DLDP_C_1 4.86182189869425 -2.0449659998483498e-05 -5.1240695626007864e-05 -3.2541016814255404e-08 -1.4840628087939621e-10 5.8444347385742755e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1106 -591 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 175.81371583954845 0.00046898716015618923 0.0011751407556484514 6.967374268344785e-07 -1.0886921620684591e-08 -1.1934641681891917e-07 +DLDP_D_1 -9.7236437973885 4.0899320307831585e-05 0.00010248139112795352 6.50820335441285e-08 2.968125617588231e-10 -1.16888694637088e-08 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2111 -1283 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 175.81371583954845 0.00046898716015618923 0.0011751407556484514 6.967374268344785e-07 -1.0886921620684591e-08 -1.1934641681891917e-07 +DLDP_E_1 -4.86182189869425 2.0449659998483498e-05 5.1240695626007864e-05 3.2541016814255404e-08 1.4840628087939621e-10 -5.8444347385742755e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI3.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI3.conf new file mode 100755 index 0000000000000000000000000000000000000000..2549505a7636999b85b16cf276305e5d5bcb823c --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI3.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -1137 -568 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -16.989717613870372 0.008054614198318148 -0.0033292386522296535 -8.740766073919907e-07 2.793396214526056e-08 3.476634036739941e-07 +DLDP_A_1 -9.300049011819876 -0.0001547305892073407 5.548797548044877e-05 1.6791163175555817e-08 5.137995046677338e-11 -6.089045041614476e-09 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2174 -1236 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -16.989717613870372 0.008054614198318148 -0.0033292386522296535 -8.740766073919907e-07 2.793396214526056e-08 3.476634036739941e-07 +DLDP_C_1 -4.650024505909938 -7.736529460367059e-05 2.774398774022455e-05 8.395581587777945e-09 2.5689975233331148e-11 -3.0445225208072205e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 542 1178 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -16.989717613870372 0.008054614198318148 -0.0033292386522296535 -8.740766073919907e-07 2.793396214526056e-08 3.476634036739941e-07 +DLDP_D_1 9.300049011819876 0.0001547305892073407 -5.548797548044877e-05 -1.6791163175555817e-08 -5.137995046677338e-11 6.089045041614476e-09 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1185 2255 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 -16.989717613870372 0.008054614198318148 -0.0033292386522296535 -8.740766073919907e-07 2.793396214526056e-08 3.476634036739941e-07 +DLDP_E_1 4.650024505909938 7.736529460367059e-05 -2.774398774022455e-05 -8.395581587777945e-09 -2.5689975233331148e-11 3.0445225208072205e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI4.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI4.conf new file mode 100755 index 0000000000000000000000000000000000000000..e018c2e0601a534d314bcce892a25da3f3a30875 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI4.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 518 1217 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 157.3674775815224 0.00043951741104387054 0.0011012984157182009 6.6862585744081e-07 -9.412211630603658e-09 -1.2874646229460662e-07 +DLDP_A_1 9.731113984804733 -3.645546142629501e-05 -9.134641848455723e-05 -5.853311326986999e-08 -2.413370638682148e-10 1.0424452726244884e-08 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1136 2334 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 157.3674775815224 0.00043951741104387054 0.0011012984157182009 6.6862585744081e-07 -9.412211630603658e-09 -1.2874646229460662e-07 +DLDP_C_1 4.865556992402366 -1.8227730752649496e-05 -4.5673209226515414e-05 -2.9266556624212408e-08 -1.2066853193410089e-10 5.212226361414811e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1107 -585 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 157.3674775815224 0.00043951741104387054 0.0011012984157182009 6.6862585744081e-07 -9.412211630603658e-09 -1.2874646229460662e-07 +DLDP_D_1 -9.731113984804733 3.645546142629501e-05 9.134641848455723e-05 5.853311326986999e-08 2.413370638682148e-10 -1.0424452726244884e-08 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2114 -1270 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 157.3674775815224 0.00043951741104387054 0.0011012984157182009 6.6862585744081e-07 -9.412211630603658e-09 -1.2874646229460662e-07 +DLDP_E_1 -4.865556992402366 1.8227730752649496e-05 4.5673209226515414e-05 2.9266556624212408e-08 1.2066853193410089e-10 -5.212226361414811e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI5.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI5.conf new file mode 100755 index 0000000000000000000000000000000000000000..889bf8d8a0d33d69a0b508abdb893817a935502a --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI5.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -1144 -552 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 45.92574314023306 0.007436192003336179 -0.002306178893819399 -8.069660966129259e-07 -1.933817237209215e-09 2.546820204888057e-07 +DLDP_A_1 -9.533366758934106 5.971927361831953e-05 -2.175387261659205e-05 -6.4806396070844905e-09 -3.0577620251127656e-12 2.3034298884815974e-09 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2188 -1205 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 45.92574314023306 0.007436192003336179 -0.002306178893819399 -8.069660966129259e-07 -1.933817237209215e-09 2.546820204888057e-07 +DLDP_C_1 -4.766683379467052 2.9859636809158594e-05 -1.0876936308294547e-05 -3.240319803542135e-09 -1.528881012568568e-12 1.151714944240652e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 545 1158 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 45.92574314023306 0.007436192003336179 -0.002306178893819399 -8.069660966129259e-07 -1.933817237209215e-09 2.546820204888057e-07 +DLDP_D_1 9.533366758934106 -5.971927361831953e-05 2.175387261659205e-05 6.4806396070844905e-09 3.0577620251127656e-12 -2.3034298884815974e-09 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1190 2215 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 45.92574314023306 0.007436192003336179 -0.002306178893819399 -8.069660966129259e-07 -1.933817237209215e-09 2.546820204888057e-07 +DLDP_E_1 4.766683379467052 -2.9859636809158594e-05 1.0876936308294547e-05 3.240319803542135e-09 1.528881012568568e-12 -1.151714944240652e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI6.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI6.conf new file mode 100755 index 0000000000000000000000000000000000000000..d1f0941247d1a628addd8a71fc9a1d3e9be7afa2 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI6.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 537 1198 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 102.08176604614243 0.0003289416579037295 0.0008242286486199878 7.728289030607122e-07 -3.572714481963234e-08 -9.328967528648979e-08 +DLDP_A_1 9.530975697380583 -1.9150612268965906e-05 -4.7985670618157884e-05 -3.3103761031569345e-08 -2.6689445285107075e-11 5.535980768674592e-09 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1175 2295 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 102.08176604614243 0.0003289416579037295 0.0008242286486199878 7.728289030607122e-07 -3.572714481963234e-08 -9.328967528648979e-08 +DLDP_C_1 4.765487848690292 -9.575306125645326e-06 -2.3992835312605797e-05 -1.655188051818353e-08 -1.3344722642600921e-11 2.7679903847193596e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1136 -575 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 102.08176604614243 0.0003289416579037295 0.0008242286486199878 7.728289030607122e-07 -3.572714481963234e-08 -9.328967528648979e-08 +DLDP_D_1 -9.530975697380583 1.9150612268965906e-05 4.7985670618157884e-05 3.3103761031569345e-08 2.6689445285107075e-11 -5.535980768674592e-09 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2171 -1250 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 102.08176604614243 0.0003289416579037295 0.0008242286486199878 7.728289030607122e-07 -3.572714481963234e-08 -9.328967528648979e-08 +DLDP_E_1 -4.765487848690292 9.575306125645326e-06 2.3992835312605797e-05 1.655188051818353e-08 1.3344722642600921e-11 -2.7679903847193596e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI7.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI7.conf new file mode 100755 index 0000000000000000000000000000000000000000..dd7572b73aec318716dd60bb684647c1d7557e32 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI7.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA -1129 -561 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 59.13043792147559 0.00759005276524257 -0.0026188243901572616 -8.236627224723942e-07 -1.332197064909726e-09 2.9087782232667775e-07 +DLDP_A_1 -9.661835673821292 0.0001810326146314076 -6.353732341901767e-05 -1.9645446694353536e-08 4.344954450396003e-12 6.9075865609688495e-09 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2158 -1222 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 59.13043792147559 0.00759005276524257 -0.0026188243901572616 -8.236627224723942e-07 -1.332197064909726e-09 2.9087782232667775e-07 +DLDP_C_1 -4.830917836910646 9.051630731570178e-05 -3.176866170950516e-05 -9.822723347176546e-09 2.172477225147168e-12 3.4537932804840872e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 535 1172 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 59.13043792147559 0.00759005276524257 -0.0026188243901572616 -8.236627224723942e-07 -1.332197064909726e-09 2.9087782232667775e-07 +DLDP_D_1 9.661835673821292 -0.0001810326146314076 6.353732341901767e-05 1.9645446694353536e-08 -4.344954450396003e-12 -6.9075865609688495e-09 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1171 2244 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 59.13043792147559 0.00759005276524257 -0.0026188243901572616 -8.236627224723942e-07 -1.332197064909726e-09 2.9087782232667775e-07 +DLDP_E_1 4.830917836910646 -9.051630731570178e-05 3.176866170950516e-05 9.822723347176546e-09 -2.172477225147168e-12 -3.4537932804840872e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI8.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI8.conf new file mode 100755 index 0000000000000000000000000000000000000000..5f9ff44df3c8ff3566b4667614364f3d5a3cda87 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GI8.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GI +WAVELENGTH 6200 10000 + +# First order (BEAM A) ******************* +BEAMA 538 1187 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 80.3569630078979 0.0004638252751088263 0.0011622065933932582 7.322612597291985e-07 -3.483094884606291e-08 -1.2145569385676932e-07 +DLDP_A_1 9.552538972454153 -1.5926076384120915e-05 -3.990595413409409e-05 -2.7601003775144405e-08 1.844711105097713e-12 4.6055571555003196e-09 +# +SENSITIVITY_A GI.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 8100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 3800.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GI.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1177 2273 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 80.3569630078979 0.0004638252751088263 0.0011622065933932582 7.322612597291985e-07 -3.483094884606291e-08 -1.2145569385676932e-07 +DLDP_C_1 4.7762694862270765 -7.963038196675664e-06 -1.9952977065205437e-05 -1.3800501886319459e-08 9.22355552555796e-13 2.3027785775506604e-09 +# +SENSITIVITY_C GI.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1136 -569 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 80.3569630078979 0.0004638252751088263 0.0011622065933932582 7.322612597291985e-07 -3.483094884606291e-08 -1.2145569385676932e-07 +DLDP_D_1 -9.552538972454153 1.5926076384120915e-05 3.990595413409409e-05 2.7601003775144405e-08 -1.844711105097713e-12 -4.6055571555003196e-09 +# +SENSITIVITY_D GI.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2172 -1239 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 80.3569630078979 0.0004638252751088263 0.0011622065933932582 7.322612597291985e-07 -3.483094884606291e-08 -1.2145569385676932e-07 +DLDP_E_1 -4.7762694862270765 7.963038196675664e-06 1.9952977065205437e-05 1.3800501886319459e-08 -9.22355552555796e-13 -2.3027785775506604e-09 +# +SENSITIVITY_E GI.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU1.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU1.conf new file mode 100755 index 0000000000000000000000000000000000000000..92a72b9493cac607c012d49e76fd8bf5d7ede7a0 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU1.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA -996 -518 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -11.62524834586504 0.0038604430267642725 -0.0011909278365323677 -4.189303701617673e-07 -8.826612121851253e-10 1.3395463102540304e-07 +DLDP_A_1 -4.141673867406187 -0.0001440088845912332 5.345668981461149e-05 1.562762451919501e-08 2.6856625895207017e-11 -5.9150577267877095e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -1891 -1137 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -11.62524834586504 0.0038604430267642725 -0.0011909278365323677 -4.189303701617673e-07 -8.826612121851253e-10 1.3395463102540304e-07 +DLDP_C_1 -2.0708369337030934 -7.200444229561625e-05 2.672834490730501e-05 7.813812259597468e-09 1.3428312947638334e-11 -2.9575288633938e-09 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 471 1069 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -11.62524834586504 0.0038604430267642725 -0.0011909278365323677 -4.189303701617673e-07 -8.826612121851253e-10 1.3395463102540304e-07 +DLDP_D_1 4.141673867406187 0.0001440088845912332 -5.345668981461149e-05 -1.562762451919501e-08 -2.6856625895207017e-11 5.9150577267877095e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1042 2038 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 -11.62524834586504 0.0038604430267642725 -0.0011909278365323677 -4.189303701617673e-07 -8.826612121851253e-10 1.3395463102540304e-07 +DLDP_E_1 2.0708369337030934 7.200444229561625e-05 -2.672834490730501e-05 -7.813812259597468e-09 -1.3428312947638334e-11 2.9575288633938e-09 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU2.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU2.conf new file mode 100755 index 0000000000000000000000000000000000000000..4ac60753845af1c490caae337f6df6b61333405e --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU2.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA 464 1100 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 76.75789478436644 0.00020250315871864642 0.0005074120425962796 2.4599867842503227e-07 7.707425602502826e-10 -5.595020985865337e-08 +DLDP_A_1 4.360902256533096 -1.7327490752542074e-05 -4.341747875186322e-05 -2.7628408480918188e-08 -1.1874871104937324e-10 4.95090092497618e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1028 2099 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 76.75789478436644 0.00020250315871864642 0.0005074120425962796 2.4599867842503227e-07 7.707425602502826e-10 -5.595020985865337e-08 +DLDP_C_1 2.1804511282665486 -8.663745482531491e-06 -2.170873933352407e-05 -1.3814204211615342e-08 -5.937435552468217e-11 2.475450457894048e-09 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -996 -529 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 76.75789478436644 0.00020250315871864642 0.0005074120425962796 2.4599867842503227e-07 7.707425602502826e-10 -5.595020985865337e-08 +DLDP_D_1 -4.360902256533096 1.73274907614207e-05 4.341747874831963e-05 2.7628408478508157e-08 1.187487110493822e-10 -4.950900924592301e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -1891 -1159 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 76.75789478436644 0.00020250315871864642 0.0005074120425962796 2.4599867842503227e-07 7.707425602502826e-10 -5.595020985865337e-08 +DLDP_E_1 -2.180451128266548 8.663745469211973e-06 2.170873933883979e-05 1.3814204215230802e-08 5.937435552469192e-11 -2.4754504584699104e-09 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU3.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU3.conf new file mode 100755 index 0000000000000000000000000000000000000000..344040f2f4aedf968a5be409a1e49353398604db --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU3.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA -994 -517 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -11.154835285364095 0.003804308031029279 -0.001359325829560789 -4.1283865001543607e-07 1.3380159812088771e-08 1.407399864046806e-07 +DLDP_A_1 -4.149971439666883 -0.000144622481387231 5.3492028519955077e-05 1.5694246254958552e-08 4.95294607019566e-11 -5.9280417449456885e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -1888 -1134 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -11.154835285364095 0.003804308031029279 -0.001359325829560789 -4.1283865001543607e-07 1.3380159812088771e-08 1.407399864046806e-07 +DLDP_C_1 -2.0749857198334416 -7.231124069361914e-05 2.6746014259983752e-05 7.847123127479681e-09 2.476473035075377e-11 -2.9640208724733327e-09 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 469 1067 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -11.154835285364095 0.003804308031029279 -0.001359325829560789 -4.1283865001543607e-07 1.3380159812088771e-08 1.407399864046806e-07 +DLDP_D_1 4.149971439666883 0.000144622481387231 -5.3492028519955077e-05 -1.5694246254958552e-08 -4.95294607019566e-11 5.9280417449456885e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1039 2034 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 -11.154835285364095 0.003804308031029279 -0.001359325829560789 -4.1283865001543607e-07 1.3380159812088771e-08 1.407399864046806e-07 +DLDP_E_1 2.0749857198334416 7.231124069361914e-05 -2.6746014259983752e-05 -7.847123127479681e-09 -2.476473035075377e-11 2.9640208724733327e-09 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU4.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU4.conf new file mode 100755 index 0000000000000000000000000000000000000000..ed27bb45b14e39a9719a0ebf6b56d9e0f86302a0 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU4.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA 461 1094 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 77.89903237920423 8.314063470803756e-05 0.0002083253609363961 2.099270203898568e-07 1.943949787032641e-08 -2.40068467218245e-08 +DLDP_A_1 4.383313183697084 -1.713206373782498e-05 -4.2927797718528025e-05 -2.7602741260622144e-08 -1.5095912784952786e-10 4.90040959434525e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1022 2087 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 77.89903237920423 8.314063470803756e-05 0.0002083253609363961 2.099270203898568e-07 1.943949787032641e-08 -2.40068467218245e-08 +DLDP_C_1 2.191656591848542 -8.566032017943808e-06 -2.1463898799787073e-05 -1.3801370589857397e-08 -7.547956392476959e-11 2.450204790729454e-09 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -991 -525 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 77.89903237920423 8.314063470803756e-05 0.0002083253609363961 2.099270203898568e-07 1.943949787032641e-08 -2.40068467218245e-08 +DLDP_D_1 -4.383313183697084 1.713206393490034e-05 4.292779763987762e-05 2.760274120712716e-08 1.5095912784954397e-10 -4.900409585825004e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -1881 -1151 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 77.89903237920423 8.314063470803756e-05 0.0002083253609363961 2.099270203898568e-07 1.943949787032641e-08 -2.40068467218245e-08 +DLDP_E_1 -2.191656591848542 8.566031929679973e-06 2.146389883501236e-05 1.3801370613816063e-08 7.547956392477789e-11 -2.4502047945454308e-09 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU5.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU5.conf new file mode 100755 index 0000000000000000000000000000000000000000..23f9ead5b58fbcb4ea6a338855cd659a39881a09 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU5.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA -1009 -493 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 27.41103876733554 0.0033550805349472418 -0.0010078586905033612 -3.64089007199366e-07 4.4922097208580034e-10 1.1580782057189409e-07 +DLDP_A_1 -4.3727382134967625 6.124800406444196e-05 -2.1297437516995357e-05 -6.646548024682736e-09 2.9735950497286065e-12 2.3351031260746128e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -1917 -1087 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 27.41103876733554 0.0033550805349472418 -0.0010078586905033612 -3.64089007199366e-07 4.4922097208580034e-10 1.1580782057189409e-07 +DLDP_C_1 -2.1863691067483813 3.0624002032220946e-05 -1.0648718758497846e-05 -3.32327401234136e-09 1.486797524859628e-12 1.1675515630373312e-09 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 476 1037 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 27.41103876733554 0.0033550805349472418 -0.0010078586905033612 -3.64089007199366e-07 4.4922097208580034e-10 1.1580782057189409e-07 +DLDP_D_1 4.3727382134967625 -6.124800406444196e-05 2.1297437516995357e-05 6.646548024682736e-09 -2.9735950497286065e-12 -2.3351031260746128e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1053 1973 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 27.41103876733554 0.0033550805349472418 -0.0010078586905033612 -3.64089007199366e-07 4.4922097208580034e-10 1.1580782057189409e-07 +DLDP_E_1 2.1863691067483813 -3.0624002032220946e-05 1.0648718758497846e-05 3.32327401234136e-09 -1.486797524859628e-12 -1.1675515630373312e-09 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU6.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU6.conf new file mode 100755 index 0000000000000000000000000000000000000000..dd9a05a945a92b56b4d642a847fe12d8a3cdd983 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU6.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA 476 1047 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 35.7235062615534 0.0001604222201500643 0.0004019697546693404 3.435351993365034e-07 1.9125219082340636e-09 -4.7323085453007934e-08 +DLDP_A_1 4.353047127264064 -6.091494449366529e-06 -1.526345148304547e-05 -1.0750326042982813e-08 -2.0466707170687004e-11 1.7610796421295923e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1052 1993 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 35.7235062615534 0.0001604222201500643 0.0004019697546693404 3.435351993365034e-07 1.9125219082340636e-09 -4.7323085453007934e-08 +DLDP_C_1 2.176523563632032 -3.045747273461916e-06 -7.631725722055577e-06 -5.375163008250743e-09 -1.023335358534129e-11 8.805398189559056e-10 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1009 -499 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 35.7235062615534 0.0001604222201500643 0.0004019697546693404 3.435351993365034e-07 1.9125219082340636e-09 -4.7323085453007934e-08 +DLDP_D_1 -4.353047127264064 6.091494449366529e-06 1.526345148304547e-05 1.0750326042982813e-08 2.0466707170687004e-11 -1.7610796421295923e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -1918 -1099 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 35.7235062615534 0.0001604222201500643 0.0004019697546693404 3.435351993365034e-07 1.9125219082340636e-09 -4.7323085453007934e-08 +DLDP_E_1 -2.176523563632032 3.045747273461916e-06 7.631725722055577e-06 5.375163008250743e-09 1.023335358534129e-11 -8.805398189559056e-10 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU7.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU7.conf new file mode 100755 index 0000000000000000000000000000000000000000..14d8fa3ad457cecac3ed0aad113f1ff834cb81e6 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU7.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA -1009 -494 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 27.612369306628885 0.0031373380938189243 -0.0009292405210674266 -3.4045967503365157e-07 -1.4248368740883365e-08 1.1498407094768752e-07 +DLDP_A_1 -4.3740572887324864 6.4091818310688e-05 -2.2073908072413298e-05 -6.955181218665909e-09 -1.875933951716638e-11 2.456484988833469e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -1917 -1089 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 27.612369306628885 0.0031373380938189243 -0.0009292405210674266 -3.4045967503365157e-07 -1.4248368740883365e-08 1.1498407094768752e-07 +DLDP_C_1 -2.1870286443662432 3.2045909155344144e-05 -1.1036954036206839e-05 -3.4775906093329696e-09 -9.379669758561236e-12 1.2282424944167383e-09 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 476 1038 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 27.612369306628885 0.0031373380938189243 -0.0009292405210674266 -3.4045967503365157e-07 -1.4248368740883365e-08 1.1498407094768752e-07 +DLDP_D_1 4.3740572887324864 -6.4091818310688e-05 2.2073908072413298e-05 6.955181218665909e-09 1.875933951716638e-11 -2.456484988833469e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1053 1976 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 27.612369306628885 0.0031373380938189243 -0.0009292405210674266 -3.4045967503365157e-07 -1.4248368740883365e-08 1.1498407094768752e-07 +DLDP_E_1 2.1870286443662432 -3.2045909155344144e-05 1.1036954036206839e-05 3.4775906093329696e-09 9.379669758561236e-12 -1.2282424944167383e-09 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU8.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU8.conf new file mode 100755 index 0000000000000000000000000000000000000000..e829c6828fda231996449bbaedca9102adc9debc --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GU8.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GU +WAVELENGTH 2550 4000 + +# First order (BEAM A) ******************* +BEAMA 474 1045 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 34.81777128107047 0.00015090856930460525 0.0003781314177715555 3.145658149325979e-07 4.5768501117362215e-10 -4.3056392783297964e-08 +DLDP_A_1 4.367469874098979 -6.42580134071564e-06 -1.610112412253171e-05 -1.1187432792869134e-08 -1.8327904103106682e-11 1.8370413114831546e-09 +# +SENSITIVITY_A GU.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 3275.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 1450.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GU.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1049 1990 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 34.81777128107047 0.00015090856930460525 0.0003781314177715555 3.145658149325979e-07 4.5768501117362215e-10 -4.3056392783297964e-08 +DLDP_C_1 2.1837349370494894 -3.2129006403675983e-06 -8.050562073234863e-06 -5.593716404575216e-09 -9.163952051553976e-12 9.185206570381916e-10 +# +SENSITIVITY_C GU.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1007 -498 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 34.81777128107047 0.00015090856930460525 0.0003781314177715555 3.145658149325979e-07 4.5768501117362215e-10 -4.3056392783297964e-08 +DLDP_D_1 -4.367469874098979 6.42580134071564e-06 1.610112412253171e-05 1.1187432792869134e-08 1.8327904103106682e-11 -1.8370413114831546e-09 +# +SENSITIVITY_D GU.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -1913 -1097 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 34.81777128107047 0.00015090856930460525 0.0003781314177715555 3.145658149325979e-07 4.5768501117362215e-10 -4.3056392783297964e-08 +DLDP_E_1 -2.1837349370494894 3.2129006403675983e-06 8.050562073234863e-06 5.593716404575216e-09 9.163952051553976e-12 -9.185206570381916e-10 +# +SENSITIVITY_E GU.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV1.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV1.conf new file mode 100755 index 0000000000000000000000000000000000000000..ad52e3a9617976a9a4a8edfc8c66ce5741617e5c --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV1.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA -1101 -590 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -20.571275340713846 0.005068144136056606 -0.0017813019315299282 -5.49988717789522e-07 -1.9733336367089177e-08 2.0755091849346572e-07 +DLDP_A_1 -5.8185665872758365 -0.00016964792713098322 6.18488638961459e-05 1.8410014059934812e-08 1.0198678942035985e-12 -6.864200273563621e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2101 -1281 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -20.571275340713846 0.005068144136056606 -0.0017813019315299282 -5.49988717789522e-07 -1.9733336367089177e-08 2.0755091849346572e-07 +DLDP_C_1 -2.9092832936379183 -8.482396356549616e-05 3.0924431948080444e-05 9.205007029967904e-09 5.099339468205187e-13 -3.4321001367823894e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 545 1170 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -20.571275340713846 0.005068144136056606 -0.0017813019315299282 -5.49988717789522e-07 -1.9733336367089177e-08 2.0755091849346572e-07 +DLDP_D_1 5.8185665872758365 0.00016964792713098322 -6.18488638961459e-05 -1.8410014059934812e-08 -1.0198678942035985e-12 6.864200273563621e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1191 2239 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 -20.571275340713846 0.005068144136056606 -0.0017813019315299282 -5.49988717789522e-07 -1.9733336367089177e-08 2.0755091849346572e-07 +DLDP_E_1 2.909283293637918 8.482396356565717e-05 -3.0924431948348675e-05 -9.205007029985788e-09 -5.099339368675867e-13 3.4321001368029407e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV2.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV2.conf new file mode 100755 index 0000000000000000000000000000000000000000..6f1ffc89ab7a1e3016fef93d5c96407a6f47aef9 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV2.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA 536 1218 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 116.651034606049 0.0003264372929684804 0.0008179537058413887 4.270101102460506e-07 1.2191363870560531e-08 -9.485715290936337e-08 +DLDP_A_1 6.068965533926387 -2.4968336730393445e-05 -6.256313999554335e-05 -3.9653296615955146e-08 -1.7570962170254625e-10 7.132925231362788e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1173 2335 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 116.651034606049 0.0003264372929684804 0.0008179537058413887 4.270101102460506e-07 1.2191363870560531e-08 -9.485715290936337e-08 +DLDP_C_1 3.034482766963193 -1.248416847741291e-05 -3.128156995298706e-05 -1.9826648277517117e-08 -8.785481085129167e-11 3.5664626108298586e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1098 -612 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 116.651034606049 0.0003264372929684804 0.0008179537058413887 4.270101102460506e-07 1.2191363870560531e-08 -9.485715290936337e-08 +DLDP_D_1 -6.068965533926387 2.4968336730393445e-05 6.256313999554335e-05 3.9653296615955146e-08 1.7570962170254625e-10 -7.132925231362788e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2095 -1325 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 116.651034606049 0.0003264372929684804 0.0008179537058413887 4.270101102460506e-07 1.2191363870560531e-08 -9.485715290936337e-08 +DLDP_E_1 -3.034482766963193 1.248416847741291e-05 3.128156995298706e-05 1.9826648277517117e-08 8.785481085129167e-11 -3.5664626108298586e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV3.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV3.conf new file mode 100755 index 0000000000000000000000000000000000000000..f3b0db5d26b851bb8710a17cad45c738c6f673bc --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV3.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA -1098 -589 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 -20.59914938029541 0.0054608881322660615 -0.0019358896812375407 -5.926086994756189e-07 2.3066416867795485e-08 1.97025385432051e-07 +DLDP_A_1 -5.8324497003483495 -0.00017206559294606795 6.2919483616359e-05 1.867236336272985e-08 6.257038127410252e-11 -7.005913515656638e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2095 -1278 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 -20.59914938029541 0.0054608881322660615 -0.0019358896812375407 -5.926086994756189e-07 2.3066416867795485e-08 1.97025385432051e-07 +DLDP_C_1 -2.9162248501741748 -8.603279647303778e-05 3.145974180818574e-05 9.336181681365353e-09 3.1285190636810376e-11 -3.502956757828796e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 543 1167 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 -20.59914938029541 0.0054608881322660615 -0.0019358896812375407 -5.926086994756189e-07 2.3066416867795485e-08 1.97025385432051e-07 +DLDP_D_1 5.8324497003483495 0.00017206559294606795 -6.2919483616359e-05 -1.867236336272985e-08 -6.257038127410252e-11 7.005913515656638e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1187 2234 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 -20.59914938029541 0.0054608881322660615 -0.0019358896812375407 -5.926086994756189e-07 2.3066416867795485e-08 1.97025385432051e-07 +DLDP_E_1 2.9162248501741734 8.603279647319728e-05 -3.145974180845114e-05 -9.336181681383053e-09 -3.128519062697531e-11 3.5029567578491494e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV4.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV4.conf new file mode 100755 index 0000000000000000000000000000000000000000..8d56320cc282b94d0c70475eff25c1b3190621d1 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV4.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA 533 1210 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 117.86962521910637 0.00020707191814151263 0.0005188598896948946 3.787649410769235e-07 7.2399186188938635e-09 -6.24192000276809e-08 +DLDP_A_1 6.102635235614389 -2.4695913898783876e-05 -6.188052984717924e-05 -3.951520062941432e-08 -1.7598231362764827e-10 7.062942301849089e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1166 2320 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 117.86962521910637 0.00020707191814151263 0.0005188598896948946 3.787649410769235e-07 7.2399186188938635e-09 -6.24192000276809e-08 +DLDP_C_1 3.0513176178071943 -1.2347956970764433e-05 -3.094026491505999e-05 -1.9757600308905923e-08 -8.79911568136704e-11 3.5314711500004913e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1092 -607 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 117.86962521910637 0.00020707191814151263 0.0005188598896948946 3.787649410769235e-07 7.2399186188938635e-09 -6.24192000276809e-08 +DLDP_D_1 -6.102635235614389 2.4695913898783876e-05 6.188052984717924e-05 3.951520062941432e-08 1.7598231362764827e-10 -7.062942301849089e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2084 -1315 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 117.86962521910637 0.00020707191814151263 0.0005188598896948946 3.787649410769235e-07 7.2399186188938635e-09 -6.24192000276809e-08 +DLDP_E_1 -3.0513176178071943 1.2347956873912327e-05 3.094026495371254e-05 1.9757600335195847e-08 8.799115681382194e-11 -3.531471154187778e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV5.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV5.conf new file mode 100755 index 0000000000000000000000000000000000000000..dd4f77ba2ac6dd144d78071fed4d20a9794e04e1 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV5.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA -1100 -571 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 38.9523830580062 0.00503092295636527 -0.001992947901953255 -5.459494341594372e-07 3.4516964285604816e-09 2.2258091223639774e-07 +DLDP_A_1 -6.162464935674948 0.00012166751511837321 -4.201832809920126e-05 -1.3203173319468996e-08 1.9433154285216812e-11 4.673892845341282e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2100 -1242 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 38.9523830580062 0.00503092295636527 -0.001992947901953255 -5.459494341594372e-07 3.4516964285604816e-09 2.2258091223639774e-07 +DLDP_C_1 -3.081232467837474 6.08337575591857e-05 -2.1009164049599126e-05 -6.6015866597344e-09 9.716577142560937e-12 2.3369464226705266e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 542 1146 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 38.9523830580062 0.00503092295636527 -0.001992947901953255 -5.459494341594372e-07 3.4516964285604816e-09 2.2258091223639774e-07 +DLDP_D_1 6.162464935674948 -0.00012166751511837321 4.201832809920126e-05 1.3203173319468996e-08 -1.9433154285216812e-11 -4.673892845341282e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1185 2191 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 38.9523830580062 0.00503092295636527 -0.001992947901953255 -5.459494341594372e-07 3.4516964285604816e-09 2.2258091223639774e-07 +DLDP_E_1 3.081232467837474 -6.08337575591857e-05 2.1009164049599126e-05 6.6015866597344e-09 -9.716577142560937e-12 -2.3369464226705266e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV6.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV6.conf new file mode 100755 index 0000000000000000000000000000000000000000..b3cd09f501735c94d7511f0a6e5fd076b4ae337b --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV6.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA 540 1148 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 50.1595296297017 0.00021715375452011415 0.0005441218724578967 4.846155772757006e-07 -3.296866086422337e-08 -5.3677869022110075e-08 +DLDP_A_1 6.1572908128978145 -1.0855533807090502e-05 -2.720070069899071e-05 -1.858230643298204e-08 1.7898262799616298e-11 3.068214561553019e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1180 2195 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 50.1595296297017 0.00021715375452011415 0.0005441218724578967 4.846155772757006e-07 -3.296866086422337e-08 -5.3677869022110075e-08 +DLDP_C_1 3.0786454064489073 -5.427766911033299e-06 -1.3600350346507153e-05 -9.291153214458437e-09 8.949131399804645e-12 1.5341072804528018e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1098 -572 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 50.1595296297017 0.00021715375452011415 0.0005441218724578967 4.846155772757006e-07 -3.296866086422337e-08 -5.3677869022110075e-08 +DLDP_D_1 -6.1572908128978145 1.0855533807090502e-05 2.720070069899071e-05 1.858230643298204e-08 -1.7898262799616298e-11 -3.068214561553019e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2095 -1244 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 50.1595296297017 0.00021715375452011415 0.0005441218724578967 4.846155772757006e-07 -3.296866086422337e-08 -5.3677869022110075e-08 +DLDP_E_1 -3.0786454064489073 5.427766903652999e-06 1.3600350349452452e-05 9.2911532164618e-09 -8.949131399810663e-12 -1.534107280771864e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV7.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV7.conf new file mode 100755 index 0000000000000000000000000000000000000000..d11105a8afa8e3f48b1c0d4ab2a9aad074e92fe4 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV7.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA -1105 -570 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 41.53288952253389 0.005174558310473548 -0.0015818117086179155 -5.615365078892616e-07 3.3304376747294143e-09 1.7660973329971578e-07 +DLDP_A_1 -6.131549566228968 0.0001055590823295062 -3.5678386901773457e-05 -1.1455145177796203e-08 2.0135952949520057e-11 4.005071773251754e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 -2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC -2109 -1241 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 41.53288952253389 0.005174558310473548 -0.0015818117086179155 -5.615365078892616e-07 3.3304376747294143e-09 1.7660973329971578e-07 +DLDP_C_1 -3.065774783114484 5.277954116475411e-05 -1.783919345088847e-05 -5.727572588898214e-09 1.0067976474827857e-11 2.0025358866260098e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD 545 1145 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 41.53288952253389 0.005174558310473548 -0.0015818117086179155 -5.615365078892616e-07 3.3304376747294143e-09 1.7660973329971578e-07 +DLDP_D_1 6.131549566228968 -0.0001055590823295062 3.5678386901773457e-05 1.1455145177796203e-08 -2.0135952949520057e-11 -4.005071773251754e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME 1191 2189 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 41.53288952253389 0.005174558310473548 -0.0015818117086179155 -5.615365078892616e-07 3.3304376747294143e-09 1.7660973329971578e-07 +DLDP_E_1 3.0657747831144846 -5.2779541164777945e-05 1.7839193450927877e-05 5.727572588900855e-09 -1.0067976476287946e-11 -2.002535886629032e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV8.conf b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV8.conf new file mode 100755 index 0000000000000000000000000000000000000000..1aab6c64f24882fdab7111c72f552d3136109118 --- /dev/null +++ b/ObservationSim/Instrument/data/sls_conf/cycle3/CSST_GV8.conf @@ -0,0 +1,126 @@ +INSTRUMETN CSSTSLS +GRATING GV +WAVELENGTH 4000 6200 + +# First order (BEAM A) ******************* +BEAMA 541 1144 +MMAG_EXTRACT_A 30 +MMAG_MARK_A 30 +# +# Trace description +# +DYDX_ORDER_A 1 +DYDX_A_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_A_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_A 0.0 +YOFF_A 0.0 +# +# Dispersion solution +# +DISP_ORDER_A 1 +DLDP_A_0 52.30081067983491 0.0003895864313279319 0.0009761864951416604 4.5759862682901736e-07 -3.497268748892231e-08 -9.908597118990715e-08 +DLDP_A_1 6.150405346886834 -1.0181237226808733e-05 -2.5511116668179173e-05 -1.6871051790687544e-08 2.921181116189656e-11 2.844439524075009e-09 +# +SENSITIVITY_A GV.Throughput.1st.fits +# +#zero order (BEAM B) ******************* +BEAMB -10 10 +MMAG_EXTRACT_B 30. +MMAG_MARK_B 30. +# +# Trace description +# +DYDX_ORDER_B 0 +DYDX_B_00.0 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_B 0.0 +YOFF_B 0.0 +# +# Dispersion solution +# +DISP_ORDER_B 1 +DLDP_B_0 5100.0 0.0 0.0 0.0 0.0 0.0 +DLDP_B_1 2200.0 0.0 0.0 0.0 0.0 0.0 +# +# +SENSITIVITY_B GV.Throughput.0st.fits + +# Sencond order (BEAM C) ******************* +BEAMC 1182 2188 +MMAG_EXTRACT_C 30 +MMAG_MARK_C 30 +# +# Trace description +# +DYDX_ORDER_C 1 +DYDX_C_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_C_1 0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_C 0.0 +YOFF_C 0.0 +# +# Dispersion solution +# +DISP_ORDER_C 1 +DLDP_C_0 52.30081067983491 0.0003895864313279319 0.0009761864951416604 4.5759862682901736e-07 -3.497268748892231e-08 -9.908597118990715e-08 +DLDP_C_1 3.075202673443417 -5.090618625989444e-06 -1.2755558329067066e-05 -8.435525891927632e-09 1.4605905580950393e-11 1.4222197614934138e-09 +# +SENSITIVITY_C GV.Throughput.2st.fits +# + +# -1st order (BEAM D) ******************* +BEAMD -1099 -569 +MMAG_EXTRACT_D 30 +MMAG_MARK_D 30 +# +# Trace description +# +DYDX_ORDER_D 1 +DYDX_D_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_D_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_D 0.0 +YOFF_D 0.0 +# +# Dispersion solution +# +DISP_ORDER_D 1 +DLDP_D_0 52.30081067983491 0.0003895864313279319 0.0009761864951416604 4.5759862682901736e-07 -3.497268748892231e-08 -9.908597118990715e-08 +DLDP_D_1 -6.150405346886834 1.0181237226808733e-05 2.5511116668179173e-05 1.6871051790687544e-08 -2.921181116189656e-11 -2.844439524075009e-09 +# +SENSITIVITY_D GV.Throughput.-1st.fits +# + +# -2st order (BEAM E) ******************* +BEAME -2097 -1239 +MMAG_EXTRACT_E 30 +MMAG_MARK_E 30 +# +# Trace description +# +DYDX_ORDER_E 1 +DYDX_E_0 0.0 0.0 0.0 0.0 0.0 0.0 +DYDX_E_1 -0.0008726648475212713 0.0 0.0 0.0 0.0 0.0 +# +# X and Y Offsets +# +XOFF_E 0.0 +YOFF_E 0.0 +# +# Dispersion solution +# +DISP_ORDER_E 1 +DLDP_E_0 52.30081067983491 0.0003895864313279319 0.0009761864951416604 4.5759862682901736e-07 -3.497268748892231e-08 -9.908597118990715e-08 +DLDP_E_1 -3.075202673443417 5.090618540034198e-06 1.275555836337102e-05 8.435525915259682e-09 -1.4605905580951365e-11 -1.4222197652095819e-09 +# +SENSITIVITY_E GV.Throughput.-2st.fits +# diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI1_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI1_sensitivity_0st.fits new file mode 100755 index 0000000000000000000000000000000000000000..6e4d640c247c1b091640145b1105ecb6af50634a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI1_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI1_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI1_sensitivity_1st.fits new file mode 100755 index 0000000000000000000000000000000000000000..7e6ef46fdf2f92ffb9a75e68b15380f154aec285 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI1_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI3_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI3_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..6e4d640c247c1b091640145b1105ecb6af50634a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI3_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI3_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI3_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..7aeb1aab0820ecf1824b8c766681dfa6bb8ea708 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI3_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI5_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI5_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..6e4d640c247c1b091640145b1105ecb6af50634a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI5_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI5_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI5_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..75ec17e993a37507d48d2473c57c02e36cb0567e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI5_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI7_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI7_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..6e4d640c247c1b091640145b1105ecb6af50634a Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI7_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI7_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI7_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..5f4064f956ef308c6cc13bea6db0e150dbc0a4be Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GI7_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU1_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU1_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ee8b022b2b9803878f8bf604d86729e84c8969a6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU1_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU1_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU1_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..c8a9bfe80566ae7a1d2c6842412119a105b91178 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU1_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU3_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU3_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ee8b022b2b9803878f8bf604d86729e84c8969a6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU3_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU3_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU3_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..d1c015d1c93d339753db327bf206e1c7a6cc7d0d Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU3_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU5_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU5_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ee8b022b2b9803878f8bf604d86729e84c8969a6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU5_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU5_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU5_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..06b08f7ba12511d1f37f560d3c660508abae8260 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU5_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU7_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU7_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..ee8b022b2b9803878f8bf604d86729e84c8969a6 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU7_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU7_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU7_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..6aeda3867e7c34bf45dd7c3785bd943907455cdf Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GU7_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV1_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV1_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b9785bce8e5a5d4715b10dbc3dee70078146bbea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV1_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV1_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV1_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..78b128b56cf3ca0cc20265eec6275ff025a92854 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV1_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV3_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV3_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b9785bce8e5a5d4715b10dbc3dee70078146bbea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV3_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV3_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV3_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..a5e88a98024e98cee7a5699dbde10ab814a2050e Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV3_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV5_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV5_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b9785bce8e5a5d4715b10dbc3dee70078146bbea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV5_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV5_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV5_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..3b87c12460f67f1d4afc7831f453de4024b6c480 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV5_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV7_sensitivity_0st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV7_sensitivity_0st.fits new file mode 100644 index 0000000000000000000000000000000000000000..b9785bce8e5a5d4715b10dbc3dee70078146bbea Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV7_sensitivity_0st.fits differ diff --git a/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV7_sensitivity_1st.fits b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV7_sensitivity_1st.fits new file mode 100644 index 0000000000000000000000000000000000000000..2740295e38390bdcadb5ca5f602c18640131e581 Binary files /dev/null and b/ObservationSim/Instrument/data/sls_conf/sensfile/CSST_GV7_sensitivity_1st.fits differ diff --git a/ObservationSim/Instrument/Chip/wfc-cr-attachpixel.dat b/ObservationSim/Instrument/data/wfc-cr-attachpixel.dat similarity index 100% rename from ObservationSim/Instrument/Chip/wfc-cr-attachpixel.dat rename to ObservationSim/Instrument/data/wfc-cr-attachpixel.dat diff --git a/ObservationSim/MockObject/SkybackgroundMap.py b/ObservationSim/MockObject/SkybackgroundMap.py index 880e6924e94a2d51edc8dc6af3db67e458038095..5a4a21ea0894fc57a23174ff864524050bb56fb2 100644 --- a/ObservationSim/MockObject/SkybackgroundMap.py +++ b/ObservationSim/MockObject/SkybackgroundMap.py @@ -10,10 +10,16 @@ import galsim import os +try: + import importlib.resources as pkg_resources +except ImportError: + # Try backported to PY<37 'importlib_resources' + import importlib_resources as pkg_resources + ###calculate sky map by sky SED -def calculateSkyMap_split_g(skyMap=None, blueLimit=4200, redLimit=6500, skyfn='param/skybackground/sky_emiss_hubble_50_50_A.dat', conf=[''], pixelSize=0.074, isAlongY=0, +def calculateSkyMap_split_g(skyMap=None, blueLimit=4200, redLimit=6500, skyfn='sky_emiss_hubble_50_50_A.dat', conf=[''], pixelSize=0.074, isAlongY=0, split_pos=3685): # skyMap = np.ones([yLen, xLen], dtype='float32') # @@ -36,7 +42,9 @@ def calculateSkyMap_split_g(skyMap=None, blueLimit=4200, redLimit=6500, skyfn='p fImg = galsim.Image(fimg) # skyfn = os.path.join(SLSSIM_PATH, skyfn) - skySpec = np.loadtxt(skyfn) + with pkg_resources.path('ObservationSim.MockObject.data', skyfn) as data_path: + skySpec = np.loadtxt(data_path) + # skySpec = np.loadtxt(skyfn) spec = Table(np.array([skySpec[:, 0], skySpec[:, 1]]).T, names=('WAVELENGTH', 'FLUX')) if isAlongY == 0: @@ -133,7 +141,7 @@ def calculateSkyMap_split_g(skyMap=None, blueLimit=4200, redLimit=6500, skyfn='p return fimg def calculateSkyMap(xLen=9232, yLen=9126, blueLimit=4200, redLimit=6500, - skyfn='param/skybackground/sky_emiss_hubble_50_50_A.dat', conf='', pixelSize=0.074, isAlongY=0): + skyfn='sky_emiss_hubble_50_50_A.dat', conf='', pixelSize=0.074, isAlongY=0): skyMap = np.ones([yLen, xLen], dtype='float32') if isAlongY == 1: @@ -146,7 +154,10 @@ def calculateSkyMap(xLen=9232, yLen=9126, blueLimit=4200, redLimit=6500, fimg = np.zeros_like(skyMap) fImg = galsim.Image(fimg) - skySpec = np.loadtxt(skyfn) + with pkg_resources.path('ObservationSim.MockObject.data', skyfn) as data_path: + skySpec = np.loadtxt(data_path) + # skySpec = np.loadtxt(skyfn) + spec = Table(np.array([skySpec[:, 0], skySpec[:, 1]]).T, names=('WAVELENGTH', 'FLUX')) sdp = SpecDisperser(orig_img=skyImg, xcenter=skyImg.center.x, ycenter=skyImg.center.y, origin=[1, 1], diff --git a/ObservationSim/MockObject/SpecDisperser/disperse_c/disperse.cpython-38-x86_64-linux-gnu.so b/ObservationSim/MockObject/SpecDisperser/disperse_c/disperse.cpython-38-x86_64-linux-gnu.so index 50afd1375174e73c314fef989506ab712e04a836..a10f2fd8635af2b90c6733bd1506de12245cfe57 100755 Binary files a/ObservationSim/MockObject/SpecDisperser/disperse_c/disperse.cpython-38-x86_64-linux-gnu.so and b/ObservationSim/MockObject/SpecDisperser/disperse_c/disperse.cpython-38-x86_64-linux-gnu.so differ diff --git a/ObservationSim/MockObject/SpecDisperser/disperse_c/interp.cpython-38-x86_64-linux-gnu.so b/ObservationSim/MockObject/SpecDisperser/disperse_c/interp.cpython-38-x86_64-linux-gnu.so index 7771eb8910e54aebdbd3225b2527278fa86e69a2..cc9664fb229f7f00696a47cd47612798244c2a62 100755 Binary files a/ObservationSim/MockObject/SpecDisperser/disperse_c/interp.cpython-38-x86_64-linux-gnu.so and b/ObservationSim/MockObject/SpecDisperser/disperse_c/interp.cpython-38-x86_64-linux-gnu.so differ diff --git a/ObservationSim/MockObject/data/__init__.py b/ObservationSim/MockObject/data/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ObservationSim/MockObject/data/__pycache__/__init__.cpython-38.pyc b/ObservationSim/MockObject/data/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7cd9c540a1b211ad4a9f36a7c3e5d1d03394e389 Binary files /dev/null and b/ObservationSim/MockObject/data/__pycache__/__init__.cpython-38.pyc differ diff --git a/ObservationSim/MockObject/data/sky_emiss_hubble_50_50_A.dat b/ObservationSim/MockObject/data/sky_emiss_hubble_50_50_A.dat new file mode 100644 index 0000000000000000000000000000000000000000..023df7c7b120ec312ff79508a45b6fd280325e7c --- /dev/null +++ b/ObservationSim/MockObject/data/sky_emiss_hubble_50_50_A.dat @@ -0,0 +1,2003 @@ +# huble skybackground mean level, earthshine + zodical light +#wavelength(A) flux(photon/s/A/arcsec^2/m^2) +1000.0 6.062014541418706e-09 +1005.0 1.1324002246856417e-08 +1010.0 1.6638046446152143e-08 +1015.0 2.2004147139305884e-08 +1020.0 2.7422304326317643e-08 +1025.0 3.289251800718741e-08 +1030.0 3.8414788181915204e-08 +1035.0 4.398911485050101e-08 +1040.0 4.961549801294483e-08 +1045.0 5.5293937669246676e-08 +1050.0 6.102443381940653e-08 +1055.0 6.68069864634244e-08 +1060.0 7.26415956013003e-08 +1065.0 7.852826123303418e-08 +1070.0 8.446698335862612e-08 +1075.0 9.045776197807603e-08 +1080.0 9.650059709138398e-08 +1085.0 1.0259548869854993e-07 +1090.0 1.0874243679957394e-07 +1095.0 1.1494144139445595e-07 +1100.0 1.2119250248319594e-07 +1105.0 1.1621516866148182e-07 +1110.0 1.1118780580055496e-07 +1115.0 1.0611041390041543e-07 +1120.0 1.009829929610632e-07 +1125.0 9.580554298249834e-08 +1130.0 9.057806396472076e-08 +1135.0 8.530055590773051e-08 +1140.0 7.997301881152757e-08 +1145.0 7.459545267611195e-08 +1150.0 6.916785750148364e-08 +1155.0 6.369023328764268e-08 +1160.0 5.8162580034589e-08 +1165.0 5.2584897742322656e-08 +1170.0 4.695718641084362e-08 +1175.0 4.127944604015191e-08 +1180.0 3.5551676630247506e-08 +1185.0 2.977387818113043e-08 +1190.0 2.394605069280067e-08 +1195.0 1.8068194165258228e-08 +1200.0 1.2140308598503108e-08 +1205.0 1.1911173524700924e-08 +1210.0 1.1679717125645938e-08 +1215.0 1.144593940133815e-08 +1220.0 1.1209840351777559e-08 +1225.0 1.0971419976964167e-08 +1230.0 1.0730678276897972e-08 +1235.0 1.0487615251578977e-08 +1240.0 1.0242230901007181e-08 +1245.0 9.994525225182583e-09 +1250.0 9.744498224105179e-09 +1255.0 9.49214989777498e-09 +1260.0 9.237480246191975e-09 +1265.0 8.980489269356168e-09 +1270.0 8.721176967267561e-09 +1275.0 8.45954333992615e-09 +1280.0 8.19558838733194e-09 +1285.0 7.929312109484926e-09 +1290.0 7.660714506385111e-09 +1295.0 7.389795578032495e-09 +1300.0 7.116555324427076e-09 +1305.0 6.840993745568856e-09 +1310.0 6.5631108414578336e-09 +1315.0 6.282906612094011e-09 +1320.0 6.000381057477383e-09 +1325.0 5.715534177607957e-09 +1330.0 5.428365972485726e-09 +1335.0 5.138876442110697e-09 +1340.0 4.847065586482863e-09 +1345.0 4.552933405602229e-09 +1350.0 4.256479899468791e-09 +1355.0 3.9577050680825545e-09 +1360.0 3.656608911443514e-09 +1365.0 3.3531914295516723e-09 +1370.0 3.0474526224070294e-09 +1375.0 2.7393924900095834e-09 +1380.0 2.4290110323593374e-09 +1385.0 2.1163082494562875e-09 +1390.0 1.801284141300438e-09 +1395.0 1.483938707891785e-09 +1400.0 1.1642719492303297e-09 +1405.0 1.302827183295651e-09 +1410.0 1.442338980492367e-09 +1415.0 1.5828073408204775e-09 +1420.0 1.7242322642799823e-09 +1425.0 1.866613750870882e-09 +1430.0 2.009951800593176e-09 +1435.0 2.154246413446864e-09 +1440.0 2.2994975894319473e-09 +1445.0 2.445705328548425e-09 +1450.0 2.5928696307962963e-09 +1455.0 2.7409904961755633e-09 +1460.0 2.890067924686224e-09 +1465.0 3.040101916328279e-09 +1470.0 3.1910924711017297e-09 +1475.0 3.343039589006575e-09 +1480.0 3.495943270042813e-09 +1485.0 3.649803514210447e-09 +1490.0 3.804620321509474e-09 +1495.0 3.960393691939896e-09 +1500.0 4.117123625501715e-09 +1505.0 8.93940767390179e-09 +1510.0 1.3793642289099087e-08 +1515.0 1.8679827471093606e-08 +1520.0 2.3597963219885345e-08 +1525.0 2.8548049535474305e-08 +1530.0 3.353008641786049e-08 +1535.0 3.8544073867043887e-08 +1540.0 4.359001188302451e-08 +1545.0 4.866790046580235e-08 +1550.0 5.3777739615377417e-08 +1555.0 5.8919529331749705e-08 +1560.0 6.409326961491921e-08 +1565.0 6.929896046488596e-08 +1570.0 7.453660188164988e-08 +1575.0 7.980619386521105e-08 +1580.0 8.510773641556946e-08 +1585.0 9.044122953272506e-08 +1590.0 9.58066732166779e-08 +1595.0 1.0120406746742795e-07 +1600.0 1.0663341228497521e-07 +1605.0 2.656467766234215e-07 +1610.0 4.2564880223865926e-07 +1615.0 5.866394891306888e-07 +1620.0 7.486188372995099e-07 +1625.0 9.115868467451226e-07 +1630.0 1.075543517467527e-06 +1635.0 1.2404888494667231e-06 +1640.0 1.4064228427427105e-06 +1645.0 1.5733454972954894e-06 +1650.0 1.7412568131250607e-06 +1655.0 1.9101567902314226e-06 +1660.0 2.080045428614577e-06 +1665.0 2.250922728274523e-06 +1670.0 2.4227886892112605e-06 +1675.0 2.595643311424789e-06 +1680.0 2.76948659491511e-06 +1685.0 2.9443185396822223e-06 +1690.0 3.120139145726126e-06 +1695.0 3.2969484130468213e-06 +1700.0 3.474746341644308e-06 +1705.0 3.6828985428956737e-06 +1710.0 3.892211637748622e-06 +1715.0 4.102685626203155e-06 +1720.0 4.3143205082592715e-06 +1725.0 4.527116283916972e-06 +1730.0 4.741072953176257e-06 +1735.0 4.956190516037125e-06 +1740.0 5.172468972499578e-06 +1745.0 5.389908322563615e-06 +1750.0 5.608508566229232e-06 +1755.0 5.828269703496438e-06 +1760.0 6.0491917343652265e-06 +1765.0 6.271274658835598e-06 +1770.0 6.494518476907555e-06 +1775.0 6.7189231885810926e-06 +1780.0 6.944488793856216e-06 +1785.0 7.171215292732926e-06 +1790.0 7.399102685211216e-06 +1795.0 7.6281509712910916e-06 +1800.0 7.85836015097255e-06 +1805.0 8.07091933107771e-06 +1810.0 8.284535189309783e-06 +1815.0 8.49920772566877e-06 +1820.0 8.714936940154672e-06 +1825.0 8.931722832767487e-06 +1830.0 9.149565403507218e-06 +1835.0 9.368464652373863e-06 +1840.0 9.588420579367423e-06 +1845.0 9.809433184487896e-06 +1850.0 1.0031502467735282e-05 +1855.0 1.0254628429109583e-05 +1860.0 1.0478811068610799e-05 +1865.0 1.0704050386238928e-05 +1870.0 1.0930346381993973e-05 +1875.0 1.115769905587593e-05 +1880.0 1.1386108407884804e-05 +1885.0 1.1615574438020591e-05 +1890.0 1.184609714628329e-05 +1895.0 1.2077676532672904e-05 +1900.0 1.2310312597189432e-05 +1905.0 1.2712087023747278e-05 +1910.0 1.3115800446982773e-05 +1915.0 1.3521452866895907e-05 +1920.0 1.3929044283486693e-05 +1925.0 1.433857469675512e-05 +1930.0 1.4750044106701198e-05 +1935.0 1.5163452513324916e-05 +1940.0 1.5578799916626283e-05 +1945.0 1.59960863166053e-05 +1950.0 1.6415311713261957e-05 +1955.0 1.6836476106596262e-05 +1960.0 1.7259579496608216e-05 +1965.0 1.7684621883297813e-05 +1970.0 1.8111603266665053e-05 +1975.0 1.8540523646709943e-05 +1980.0 1.8971383023432478e-05 +1985.0 1.940418139683266e-05 +1990.0 1.9838918766910488e-05 +1995.0 2.027559513366596e-05 +2000.0 2.071421049709908e-05 +2005.0 2.327957785004678e-05 +2010.0 2.5857481770708722e-05 +2015.0 2.8447922259084894e-05 +2020.0 3.105089931517531e-05 +2025.0 3.3666412938979966e-05 +2030.0 3.6294463130498865e-05 +2035.0 3.893504988973199e-05 +2040.0 4.158817321667937e-05 +2045.0 4.425383311134099e-05 +2050.0 4.6932029573716845e-05 +2055.0 4.9622762603806926e-05 +2060.0 5.232603220161126e-05 +2065.0 5.504183836712983e-05 +2070.0 5.7770181100362636e-05 +2075.0 6.051106040130968e-05 +2080.0 6.326447626997097e-05 +2085.0 6.60304287063465e-05 +2090.0 6.880891771043627e-05 +2095.0 7.159994328224026e-05 +2100.0 7.440350542175852e-05 +2105.0 7.745262372366961e-05 +2110.0 8.051538557474235e-05 +2115.0 8.359179097497673e-05 +2120.0 8.668183992437276e-05 +2125.0 8.978553242293042e-05 +2130.0 9.290286847064974e-05 +2135.0 9.60338480675307e-05 +2140.0 9.917847121357329e-05 +2145.0 0.00010233673790877756 +2150.0 0.00010550864815314345 +2155.0 0.00010869420194667097 +2160.0 0.00011189339928936014 +2165.0 0.00011510624018121096 +2170.0 0.00011833272462222341 +2175.0 0.00012157285261239751 +2180.0 0.00012482662415173328 +2185.0 0.00012809403924023065 +2190.0 0.0001313750978778897 +2195.0 0.00013466980006471039 +2200.0 0.0001379781458006927 +2205.0 0.00013697162005895603 +2210.0 0.00013595910741274437 +2215.0 0.00013494060786205768 +2220.0 0.00013391612140689602 +2225.0 0.00013288564804725934 +2230.0 0.0001318491877831476 +2235.0 0.00013080674061456097 +2240.0 0.00012975830654149924 +2245.0 0.00012870388556396258 +2250.0 0.00012764347768195084 +2255.0 0.00012657708289546412 +2260.0 0.00012550470120450242 +2265.0 0.00012442633260906571 +2270.0 0.000123341977109154 +2275.0 0.0001222516347047673 +2280.0 0.00012115530539590555 +2285.0 0.00012005298918256885 +2290.0 0.00011894468606475708 +2295.0 0.00011783039604247039 +2300.0 0.00011671011911570866 +2305.0 0.00011709491260915991 +2310.0 0.00011748027476136693 +2315.0 0.00011786620557232971 +2320.0 0.00011825270504204823 +2325.0 0.00011863977317052247 +2330.0 0.00011902740995775252 +2335.0 0.00011941561540373824 +2340.0 0.00011980438950847977 +2345.0 0.00012019373227197702 +2350.0 0.00012058364369422999 +2355.0 0.00012097412377523875 +2360.0 0.00012136517251500323 +2365.0 0.0001217567899135235 +2370.0 0.00012214897597079947 +2375.0 0.0001225417306868312 +2380.0 0.00012293505406161867 +2385.0 0.00012332894609516193 +2390.0 0.0001237234067874609 +2395.0 0.00012411843613851565 +2400.0 0.0001245140341483261 +2405.0 0.00012714023131933059 +2410.0 0.0001297762696251924 +2415.0 0.00013242214906591162 +2420.0 0.00013507786964148816 +2425.0 0.00013774343135192208 +2430.0 0.00014041883419721335 +2435.0 0.000143104078177362 +2440.0 0.000145799163292368 +2445.0 0.00014850408954223136 +2450.0 0.00015121885692695206 +2455.0 0.00015394346544653017 +2460.0 0.00015667791510096563 +2465.0 0.00015942220589025842 +2470.0 0.0001621763378144086 +2475.0 0.00016494031087341615 +2480.0 0.000167714125067281 +2485.0 0.00017049778039600328 +2490.0 0.00017329127685958287 +2495.0 0.00017609461445801988 +2500.0 0.00017890779319131418 +2505.0 0.00018094365741134615 +2510.0 0.00018298622042831872 +2515.0 0.00018503548224223207 +2520.0 0.0001870914428530861 +2525.0 0.0001891541022608809 +2530.0 0.00019122346046561634 +2535.0 0.00019329951746729256 +2540.0 0.0001953822732659095 +2545.0 0.00019747172786146707 +2550.0 0.00019956788125396544 +2555.0 0.00020167073344340452 +2560.0 0.0002037802844297843 +2565.0 0.00020589653421310478 +2570.0 0.000208019482793366 +2575.0 0.00021014913017056787 +2580.0 0.00021228547634471055 +2585.0 0.00021442852131579388 +2590.0 0.00021657826508381795 +2595.0 0.00021873470764878275 +2600.0 0.00022089784901068826 +2605.0 0.0002479953230516333 +2610.0 0.00027519518738234857 +2615.0 0.0003024974420028341 +2620.0 0.00032990208691309003 +2625.0 0.00035740912211311616 +2630.0 0.00038501854760291255 +2635.0 0.0004127303633824792 +2640.0 0.00044054456945181607 +2645.0 0.0004684611658109233 +2650.0 0.0004964801524598007 +2655.0 0.0005246015293984484 +2660.0 0.0005528252966268666 +2665.0 0.0005811514541450546 +2670.0 0.0006095800019530132 +2675.0 0.000638110940050742 +2680.0 0.0006667442684382412 +2685.0 0.0006954799871155105 +2690.0 0.0007243180960825502 +2695.0 0.0007532585953393599 +2700.0 0.0007823014848859402 +2705.0 0.0007556728768021461 +2710.0 0.0007289404708827242 +2715.0 0.0007021042671276747 +2720.0 0.0006751642655369976 +2725.0 0.0006481204661106927 +2730.0 0.0006209728688487601 +2735.0 0.0005937214737511999 +2740.0 0.000566366280818012 +2745.0 0.0005389072900491964 +2750.0 0.0005113445014447532 +2755.0 0.00048367791500468233 +2760.0 0.0004559075307289837 +2765.0 0.0004280333486176574 +2770.0 0.00040005536867070347 +2775.0 0.0003719735908881218 +2780.0 0.00034378801526991243 +2785.0 0.00031549864181607554 +2790.0 0.0002871054705266108 +2795.0 0.0002586085014015184 +2800.0 0.00023000773444079842 +2805.0 0.0003032463272527141 +2810.0 0.0003767445559459658 +2815.0 0.00045050242052055314 +2820.0 0.0005245199209764765 +2825.0 0.0005987970573137354 +2830.0 0.0006733338295323304 +2835.0 0.0007481302376322609 +2840.0 0.0008231862816135275 +2845.0 0.00089850196147613 +2850.0 0.0009740772772200681 +2855.0 0.0010499122288453423 +2860.0 0.0011260068163519523 +2865.0 0.0012023610397398977 +2870.0 0.0012789748990091792 +2875.0 0.0013558483941597966 +2880.0 0.0014329815251917497 +2885.0 0.0015103742921050388 +2890.0 0.0015880266948996636 +2895.0 0.0016659387335756243 +2900.0 0.001744110408132921 +2905.0 0.0017136314040109434 +2910.0 0.001683037129351848 +2915.0 0.0016523275841556356 +2920.0 0.001621502768422306 +2925.0 0.0015905626821518595 +2930.0 0.0015595073253442955 +2935.0 0.0015283366979996146 +2940.0 0.0014970508001178162 +2945.0 0.0014656496316989007 +2950.0 0.0014341331927428679 +2955.0 0.001402501483249718 +2960.0 0.0013707545032194506 +2965.0 0.001338892252652066 +2970.0 0.0013069147315475647 +2975.0 0.0012748219399059458 +2980.0 0.0012426138777272093 +2985.0 0.001210290545011356 +2990.0 0.0011778519417583856 +2995.0 0.0011452980679682978 +3000.0 0.001112628923641093 +3005.0 0.0011300853582804423 +3010.0 0.0011475937132296088 +3015.0 0.001165153988488592 +3020.0 0.0011827661840573915 +3025.0 0.0012004302999360085 +3030.0 0.001218146336124442 +3035.0 0.0012359142926226924 +3040.0 0.0012537341694307594 +3045.0 0.001271605966548643 +3050.0 0.001289529683976344 +3055.0 0.0013075053217138615 +3060.0 0.0013255328797611957 +3065.0 0.001343612358118347 +3070.0 0.0013617437567853149 +3075.0 0.0013799270757620995 +3080.0 0.001398162315048701 +3085.0 0.001416449474645119 +3090.0 0.0014347885545513543 +3095.0 0.0014531795547674065 +3100.0 0.0014716224752932747 +3105.0 0.0015154755320681617 +3110.0 0.0015594621781252946 +3115.0 0.0016035824134646728 +3120.0 0.0016478362380862974 +3125.0 0.0016922236519901674 +3130.0 0.0017367446551762832 +3135.0 0.001781399247644645 +3140.0 0.0018261874293952524 +3145.0 0.0018711092004281052 +3150.0 0.0019161645607432046 +3155.0 0.001961353510340549 +3160.0 0.00200667604922014 +3165.0 0.002052132177381976 +3170.0 0.002097721894826058 +3175.0 0.0021434452015523862 +3180.0 0.00218930209756096 +3185.0 0.0022352925828517797 +3190.0 0.0022814166574248447 +3195.0 0.002327674321280156 +3200.0 0.002374065574417713 +3205.0 0.002396407454528067 +3210.0 0.0024188074700601065 +3215.0 0.0024412656210138317 +3220.0 0.002463781907389243 +3225.0 0.002486356329186341 +3230.0 0.002508988886405124 +3235.0 0.0025316795790455934 +3240.0 0.002554428407107748 +3245.0 0.002577235370591589 +3250.0 0.0026001004694971154 +3255.0 0.0026230237038243277 +3260.0 0.0026460050735732264 +3265.0 0.002669044578743811 +3270.0 0.002692142219336081 +3275.0 0.002715297995350038 +3280.0 0.0027385119067856794 +3285.0 0.0027617839536430077 +3290.0 0.002785114135922021 +3295.0 0.002808502453622721 +3300.0 0.0028319489067451064 +3305.0 0.002855453495289178 +3310.0 0.0028790162192549357 +3315.0 0.0029026370786423786 +3320.0 0.002926316073451508 +3325.0 0.0029500532036823225 +3330.0 0.0029738484693348235 +3335.0 0.0029977018704090107 +3340.0 0.0030216134069048833 +3345.0 0.0030455830788224418 +3350.0 0.003069610886161686 +3355.0 0.0030936968289226167 +3360.0 0.003117840907105233 +3365.0 0.0031420431207095354 +3370.0 0.0031663034697355236 +3375.0 0.0031906219541831967 +3380.0 0.003214998574052557 +3385.0 0.003239433329343603 +3390.0 0.0032639262200563346 +3395.0 0.003288477246190751 +3400.0 0.0033130864077468548 +3405.0 0.003321724067055163 +3410.0 0.003330372785022544 +3415.0 0.0033390325616489995 +3420.0 0.0033477033969345287 +3425.0 0.003356385290879132 +3430.0 0.003365078243482808 +3435.0 0.0033737822547455576 +3440.0 0.0033824973246673806 +3445.0 0.003391223453248277 +3450.0 0.003399960640488249 +3455.0 0.0034087088863872924 +3460.0 0.003417468190945411 +3465.0 0.003426238554162602 +3470.0 0.0034350199760388666 +3475.0 0.0034438124565742056 +3480.0 0.003452615995768618 +3485.0 0.0034614305936221034 +3490.0 0.003470256250134663 +3495.0 0.0034790929653062963 +3500.0 0.0034879407391370026 +3505.0 0.0035009664271809385 +3510.0 0.003514015062202219 +3515.0 0.003527086644200845 +3520.0 0.0035401811731768165 +3525.0 0.0035532986491301323 +3530.0 0.0035664390720607933 +3535.0 0.0035796024419687987 +3540.0 0.0035927887588541505 +3545.0 0.003605998022716847 +3550.0 0.003619230233556889 +3555.0 0.0036324853913742754 +3560.0 0.0036457634961690063 +3565.0 0.0036590645479410836 +3570.0 0.0036723885466905053 +3575.0 0.0036857354924172726 +3580.0 0.003699105385121384 +3585.0 0.003712498224802841 +3590.0 0.0037259140114616436 +3595.0 0.0037393527450977912 +3600.0 0.003752814425711283 +3605.0 0.0037950234170193533 +3610.0 0.0038373350345383807 +3615.0 0.003879749278268364 +3620.0 0.003922266148209306 +3625.0 0.0039648856443612055 +3630.0 0.004007607766724061 +3635.0 0.004050432515297875 +3640.0 0.004093359890082647 +3645.0 0.004136389891078376 +3650.0 0.004179522518285061 +3655.0 0.004222757771702705 +3660.0 0.004266095651331307 +3665.0 0.004309536157170864 +3670.0 0.00435307928922138 +3675.0 0.004396725047482853 +3680.0 0.0044404734319552835 +3685.0 0.004484324442638672 +3690.0 0.004528278079533017 +3695.0 0.004572334342638319 +3700.0 0.004616493231954578 +3705.0 0.0046124722536385445 +3710.0 0.004608423584411084 +3715.0 0.004604347224272196 +3720.0 0.004600243173221882 +3725.0 0.004596111431260142 +3730.0 0.004591951998386975 +3735.0 0.004587764874602381 +3740.0 0.004583550059906362 +3745.0 0.004579307554298915 +3750.0 0.004575037357780041 +3755.0 0.004570739470349742 +3760.0 0.004566413892008016 +3765.0 0.004562060622754863 +3770.0 0.004557679662590283 +3775.0 0.004553271011514277 +3780.0 0.0045488346695268436 +3785.0 0.0045443706366279845 +3790.0 0.004539878912817699 +3795.0 0.004535359498095987 +3800.0 0.004530812392462847 +3805.0 0.004562768196679388 +3810.0 0.004594792316819616 +3815.0 0.004626884752883532 +3820.0 0.004659045504871137 +3825.0 0.004691274572782429 +3830.0 0.004723571956617409 +3835.0 0.004755937656376078 +3840.0 0.0047883716720584345 +3845.0 0.004820874003664478 +3850.0 0.00485344465119421 +3855.0 0.00488608361464763 +3860.0 0.004918790894024738 +3865.0 0.004951566489325536 +3870.0 0.00498441040055002 +3875.0 0.005017322627698192 +3880.0 0.0050503031707700525 +3885.0 0.0050833520297656025 +3890.0 0.005116469204684839 +3895.0 0.005149654695527763 +3900.0 0.005182908502294377 +3905.0 0.005303572726882924 +3910.0 0.005424528934749572 +3915.0 0.005545777125894321 +3920.0 0.005667317300317171 +3925.0 0.005789149458018122 +3930.0 0.005911273598997175 +3935.0 0.006033689723254326 +3940.0 0.0061563978307895804 +3945.0 0.006279397921602936 +3950.0 0.006402689995694391 +3955.0 0.006526274053063948 +3960.0 0.006650150093711606 +3965.0 0.006774318117637365 +3970.0 0.0068987781248412245 +3975.0 0.007023530115323184 +3980.0 0.007148574089083247 +3985.0 0.007273910046121409 +3990.0 0.007399537986437672 +3995.0 0.007525457910032037 +4000.0 0.007651669816904504 +4005.0 0.007659843135265862 +4010.0 0.007668012979797236 +4015.0 0.00767617935049862 +4020.0 0.00768434224737002 +4025.0 0.007692501670411432 +4030.0 0.007700657619622858 +4035.0 0.007708810095004297 +4040.0 0.007716959096555747 +4045.0 0.00772510462427721 +4050.0 0.007733246678168689 +4055.0 0.007741385258230179 +4060.0 0.0077495203644616815 +4065.0 0.007757651996863199 +4070.0 0.007765780155434729 +4075.0 0.007773904840176271 +4080.0 0.007782026051087828 +4085.0 0.007790143788169395 +4090.0 0.007798258051420978 +4095.0 0.007806368840842572 +4100.0 0.00781447615643418 +4105.0 0.007822579998195802 +4110.0 0.007830680366127435 +4115.0 0.007838777260229083 +4120.0 0.007846870680500741 +4125.0 0.007854960626942414 +4130.0 0.007863047099554103 +4135.0 0.007871130098335802 +4140.0 0.007879209623287513 +4145.0 0.00788728567440924 +4150.0 0.007895358251700976 +4155.0 0.007903427355162728 +4160.0 0.007911492984794492 +4165.0 0.007919555140596272 +4170.0 0.007927613822568062 +4175.0 0.007935669030709865 +4180.0 0.007943720765021683 +4185.0 0.00795176902550351 +4190.0 0.007959813812155356 +4195.0 0.007967855124977212 +4200.0 0.00797589296396908 +4205.0 0.007983927329130964 +4210.0 0.007991958220462858 +4215.0 0.007999985637964764 +4220.0 0.008008009581636687 +4225.0 0.00801603005147862 +4230.0 0.00802404704749057 +4235.0 0.00803206056967253 +4240.0 0.008040070618024503 +4245.0 0.008048077192546488 +4250.0 0.008056080293238487 +4255.0 0.008096526315512843 +4260.0 0.008137045118705534 +4265.0 0.008177636702816567 +4270.0 0.008218301067845933 +4275.0 0.008259038213793642 +4280.0 0.008299848140659687 +4285.0 0.008340730848444073 +4290.0 0.008381686337146792 +4295.0 0.008422714606767853 +4300.0 0.008463815657307252 +4305.0 0.008504989488764988 +4310.0 0.008546236101141063 +4315.0 0.008587555494435475 +4320.0 0.008628947668648225 +4325.0 0.008670412623779312 +4330.0 0.008711950359828741 +4335.0 0.008753560876796507 +4340.0 0.00879524417468261 +4345.0 0.00883700025348705 +4350.0 0.008878829113209832 +4355.0 0.008920730753850949 +4360.0 0.008962705175410406 +4365.0 0.009004752377888201 +4370.0 0.009046872361284332 +4375.0 0.009089065125598803 +4380.0 0.00913133067083161 +4385.0 0.009173668996982761 +4390.0 0.009216080104052246 +4395.0 0.009258563992040067 +4400.0 0.009301120660946228 +4405.0 0.00934375011077073 +4410.0 0.009386452341513567 +4415.0 0.009429227353174743 +4420.0 0.009472075145754258 +4425.0 0.009514995719252111 +4430.0 0.009557989073668303 +4435.0 0.009601055209002831 +4440.0 0.0096441941252557 +4445.0 0.009687405822426904 +4450.0 0.009730690300516449 +4455.0 0.00977404755952433 +4460.0 0.009817477599450548 +4465.0 0.009860980420295106 +4470.0 0.009904556022058005 +4475.0 0.009948204404739239 +4480.0 0.00999192556833881 +4485.0 0.010035719512856723 +4490.0 0.01007958623829297 +4495.0 0.010123525744647557 +4500.0 0.010167538031920484 +4505.0 0.010171012488436406 +4510.0 0.01017446958022877 +4515.0 0.010177909307297572 +4520.0 0.010181331669642813 +4525.0 0.010184736667264497 +4530.0 0.010188124300162617 +4535.0 0.01019149456833718 +4540.0 0.010194847471788178 +4545.0 0.01019818301051562 +4550.0 0.010201501184519497 +4555.0 0.010204801993799816 +4560.0 0.010208085438356574 +4565.0 0.010211351518189773 +4570.0 0.010214600233299408 +4575.0 0.010217831583685489 +4580.0 0.010221045569348004 +4585.0 0.010224242190286961 +4590.0 0.010227421446502356 +4595.0 0.010230583337994191 +4600.0 0.010233727864762466 +4605.0 0.010236855026807181 +4610.0 0.010239964824128336 +4615.0 0.010243057256725929 +4620.0 0.01024613232459996 +4625.0 0.010249190027750434 +4630.0 0.010252230366177345 +4635.0 0.010255253339880695 +4640.0 0.01025825894886049 +4645.0 0.010261247193116716 +4650.0 0.010264218072649389 +4655.0 0.010267171587458497 +4660.0 0.010270107737544049 +4665.0 0.010273026522906036 +4670.0 0.010275927943544465 +4675.0 0.01027881199945933 +4680.0 0.01028167869065064 +4685.0 0.010284528017118388 +4690.0 0.010287359978862574 +4695.0 0.010290174575883198 +4700.0 0.010292971808180265 +4705.0 0.01029575167575377 +4710.0 0.010298514178603713 +4715.0 0.010301259316730097 +4720.0 0.01030398709013292 +4725.0 0.010306697498812186 +4730.0 0.010309390542767886 +4735.0 0.01031206622200003 +4740.0 0.010314724536508611 +4745.0 0.010317365486293632 +4750.0 0.010319989071355094 +4755.0 0.010322595291692995 +4760.0 0.010325184147307332 +4765.0 0.010327755638198115 +4770.0 0.010330309764365333 +4775.0 0.010332846525808992 +4780.0 0.01033536592252909 +4785.0 0.010337867954525628 +4790.0 0.010340352621798606 +4795.0 0.010342819924348021 +4800.0 0.010345269862173876 +4805.0 0.010347702435276173 +4810.0 0.01035011764365491 +4815.0 0.010352515487310084 +4820.0 0.010354895966241697 +4825.0 0.010357259080449752 +4830.0 0.010359604829934244 +4835.0 0.010361933214695179 +4840.0 0.010364244234732551 +4845.0 0.010366537890046362 +4850.0 0.010368814180636616 +4855.0 0.010371073106503306 +4860.0 0.010373314667646438 +4865.0 0.010375538864066006 +4870.0 0.010377745695762016 +4875.0 0.010379935162734466 +4880.0 0.010382107264983354 +4885.0 0.010384262002508684 +4890.0 0.010386399375310452 +4895.0 0.01038851938338866 +4900.0 0.010390622026743306 +4905.0 0.010392707305374392 +4910.0 0.010394775219281917 +4915.0 0.010396825768465883 +4920.0 0.010398858952926289 +4925.0 0.010400874772663134 +4930.0 0.010402873227676418 +4935.0 0.010404854317966143 +4940.0 0.010406818043532304 +4945.0 0.010408764404374908 +4950.0 0.010410693400493951 +4955.0 0.010412605031889432 +4960.0 0.010414499298561353 +4965.0 0.010416376200509716 +4970.0 0.010418235737734515 +4975.0 0.010420077910235758 +4980.0 0.010421902718013434 +4985.0 0.010423710161067556 +4990.0 0.010425500239398115 +4995.0 0.010427272953005112 +5000.0 0.01042902830188855 +5005.0 0.010450896385217042 +5010.0 0.010472787323800331 +5015.0 0.01049470111763842 +5020.0 0.010516637766731307 +5025.0 0.010538597271078993 +5030.0 0.010560579630681476 +5035.0 0.01058258484553876 +5040.0 0.010604612915650841 +5045.0 0.010626663841017719 +5050.0 0.010648737621639395 +5055.0 0.01067083425751587 +5060.0 0.010692953748647146 +5065.0 0.01071509609503322 +5070.0 0.01073726129667409 +5075.0 0.010759449353569758 +5080.0 0.010781660265720227 +5085.0 0.010803894033125492 +5090.0 0.010826150655785557 +5095.0 0.010848430133700421 +5100.0 0.010870732466870082 +5105.0 0.010893057655294542 +5110.0 0.010915405698973802 +5115.0 0.010937776597907858 +5120.0 0.010960170352096713 +5125.0 0.010982586961540365 +5130.0 0.011005026426238818 +5135.0 0.011027488746192067 +5140.0 0.011049973921400117 +5145.0 0.011072481951862964 +5150.0 0.011095012837580609 +5155.0 0.011117566578553052 +5160.0 0.011140143174780296 +5165.0 0.011162742626262337 +5170.0 0.011185364932999176 +5175.0 0.011208010094990815 +5180.0 0.011230678112237248 +5185.0 0.011253368984738485 +5190.0 0.011276082712494518 +5195.0 0.011298819295505347 +5200.0 0.011321578733770977 +5205.0 0.011344361027291406 +5210.0 0.011367166176066633 +5215.0 0.011389994180096657 +5220.0 0.01141284503938148 +5225.0 0.0114357187539211 +5230.0 0.011458615323715522 +5235.0 0.011481534748764741 +5240.0 0.011504477029068757 +5245.0 0.011527442164627573 +5250.0 0.011550430155441186 +5255.0 0.01155661730472812 +5260.0 0.01156279529462327 +5265.0 0.011568964125126627 +5270.0 0.011575123796238197 +5275.0 0.011581274307957978 +5280.0 0.011587415660285968 +5285.0 0.011593547853222173 +5290.0 0.011599670886766587 +5295.0 0.011605784760919214 +5300.0 0.011611889475680053 +5305.0 0.011617985031049102 +5310.0 0.011624071427026362 +5315.0 0.011630148663611834 +5320.0 0.011636216740805519 +5325.0 0.011642275658607414 +5330.0 0.011648325417017519 +5335.0 0.011654366016035837 +5340.0 0.011660397455662367 +5345.0 0.011666419735897108 +5350.0 0.011672432856740057 +5355.0 0.01167843681819122 +5360.0 0.011684431620250596 +5365.0 0.011690417262918182 +5370.0 0.011696393746193981 +5375.0 0.011702361070077988 +5380.0 0.011708319234570209 +5385.0 0.011714268239670641 +5390.0 0.011720208085379283 +5395.0 0.011726138771696138 +5400.0 0.011732060298621203 +5405.0 0.01173797266615448 +5410.0 0.011743875874295968 +5415.0 0.011749769923045668 +5420.0 0.011755654812403581 +5425.0 0.011761530542369702 +5430.0 0.011767397112944037 +5435.0 0.011773254524126583 +5440.0 0.01177910277591734 +5445.0 0.011784941868316308 +5450.0 0.011790771801323487 +5455.0 0.01179659257493888 +5460.0 0.011802404189162482 +5465.0 0.011808206643994294 +5470.0 0.011813999939434319 +5475.0 0.011819784075482556 +5480.0 0.011825559052139003 +5485.0 0.011831324869403664 +5490.0 0.011837081527276534 +5495.0 0.011842829025757616 +5500.0 0.01184856736484691 +5505.0 0.011862374443121321 +5510.0 0.011876187035752495 +5515.0 0.011890005142740426 +5520.0 0.011903828764085122 +5525.0 0.011917657899786577 +5530.0 0.011931492549844795 +5535.0 0.011945332714259776 +5540.0 0.01195917839303152 +5545.0 0.011973029586160021 +5550.0 0.011986886293645287 +5555.0 0.012000748515487313 +5560.0 0.0120146162516861 +5565.0 0.012028489502241651 +5570.0 0.012042368267153962 +5575.0 0.012056252546423035 +5580.0 0.01207014234004887 +5585.0 0.012084037648031466 +5590.0 0.012097938470370825 +5595.0 0.012111844807066943 +5600.0 0.012125756658119827 +5605.0 0.01213967402352947 +5610.0 0.012153596903295873 +5615.0 0.01216752529741904 +5620.0 0.012181459205898967 +5625.0 0.012195398628735655 +5630.0 0.012209343565929107 +5635.0 0.012223294017479317 +5640.0 0.012237249983386296 +5645.0 0.01225121146365003 +5650.0 0.012265178458270527 +5655.0 0.012279150967247788 +5660.0 0.012293128990581808 +5665.0 0.012307112528272589 +5670.0 0.012321101580320135 +5675.0 0.012335096146724438 +5680.0 0.012349096227485507 +5685.0 0.012363101822603337 +5690.0 0.012377112932077926 +5695.0 0.012391129555909278 +5700.0 0.012405151694097392 +5705.0 0.01241917934664227 +5710.0 0.012433212513543904 +5715.0 0.012447251194802306 +5720.0 0.012461295390417465 +5725.0 0.012475345100389387 +5730.0 0.01248940032471807 +5735.0 0.012503461063403516 +5740.0 0.01251752731644572 +5745.0 0.01253159908384469 +5750.0 0.01254567636560042 +5755.0 0.012545781096577774 +5760.0 0.012545867053353879 +5765.0 0.012545934235928733 +5770.0 0.012545982644302341 +5775.0 0.0125460122784747 +5780.0 0.012546023138445809 +5785.0 0.012546015224215668 +5790.0 0.012545988535784276 +5795.0 0.012545943073151638 +5800.0 0.012545878836317751 +5805.0 0.012545795825282615 +5810.0 0.01254569404004623 +5815.0 0.012545573480608594 +5820.0 0.012545434146969712 +5825.0 0.012545276039129574 +5830.0 0.012545099157088197 +5835.0 0.012544903500845564 +5840.0 0.012544689070401686 +5845.0 0.012544455865756556 +5850.0 0.012544203886910178 +5855.0 0.01254393313386255 +5860.0 0.012543643606613674 +5865.0 0.01254333530516355 +5870.0 0.012543008229512173 +5875.0 0.012542662379659553 +5880.0 0.01254229775560568 +5885.0 0.012541914357350558 +5890.0 0.012541512184894188 +5895.0 0.01254109123823657 +5900.0 0.012540651517377701 +5905.0 0.012540193022317583 +5910.0 0.012539715753056216 +5915.0 0.012539219709593602 +5920.0 0.012538704891929736 +5925.0 0.012538171300064623 +5930.0 0.012537618933998263 +5935.0 0.012537047793730651 +5940.0 0.01253645787926179 +5945.0 0.01253584919059168 +5950.0 0.012535221727720322 +5955.0 0.012534575490647713 +5960.0 0.012533910479373855 +5965.0 0.012533226693898749 +5970.0 0.012532524134222395 +5975.0 0.012531802800344794 +5980.0 0.012531062692265938 +5985.0 0.012530303809985838 +5990.0 0.012529526153504486 +5995.0 0.012528729722821885 +6000.0 0.012527914517938037 +6005.0 0.012527610530212086 +6010.0 0.012527288650868329 +6015.0 0.012526948879906772 +6020.0 0.012526591217327406 +6025.0 0.012526215663130242 +6030.0 0.012525822217315269 +6035.0 0.012525410879882501 +6040.0 0.012524981650831924 +6045.0 0.012524534530163545 +6050.0 0.012524069517877361 +6055.0 0.012523586613973375 +6060.0 0.012523085818451588 +6065.0 0.012522567131311993 +6070.0 0.0125220305525546 +6075.0 0.012521476082179397 +6080.0 0.012520903720186397 +6085.0 0.012520313466575594 +6090.0 0.01251970532134698 +6095.0 0.01251907928450057 +6100.0 0.012518435356036353 +6105.0 0.012517773535954336 +6110.0 0.01251709382425451 +6115.0 0.012516396220936888 +6120.0 0.012515680726001458 +6125.0 0.012514947339448223 +6130.0 0.012514196061277188 +6135.0 0.012513426891488353 +6140.0 0.012512639830081707 +6145.0 0.012511834877057263 +6150.0 0.012511012032415012 +6155.0 0.012510171296154959 +6160.0 0.012509312668277105 +6165.0 0.012508436148781443 +6170.0 0.012507541737667983 +6175.0 0.012506629434936717 +6180.0 0.012505699240587647 +6185.0 0.012504751154620774 +6190.0 0.012503785177036101 +6195.0 0.012502801307833622 +6200.0 0.012501799547013337 +6205.0 0.012500779894575254 +6210.0 0.012499742350519361 +6215.0 0.012498686914845672 +6220.0 0.012497613587554175 +6225.0 0.012496522368644878 +6230.0 0.012495413258117776 +6235.0 0.012494286255972866 +6240.0 0.012493141362210159 +6245.0 0.012491978576829649 +6250.0 0.01249079789983133 +6255.0 0.012495785632139699 +6260.0 0.012500765362999608 +6265.0 0.012505737092411057 +6270.0 0.012510700820374046 +6275.0 0.012515656546888576 +6280.0 0.01252060427195465 +6285.0 0.012525543995572258 +6290.0 0.01253047571774141 +6295.0 0.012535399438462103 +6300.0 0.012540315157734332 +6305.0 0.012545222875558103 +6310.0 0.01255012259193342 +6315.0 0.012555014306860271 +6320.0 0.012559898020338665 +6325.0 0.012564773732368598 +6330.0 0.012569641442950072 +6335.0 0.012574501152083088 +6340.0 0.012579352859767643 +6345.0 0.01258419656600374 +6350.0 0.012589032270791372 +6355.0 0.01259385997413055 +6360.0 0.012598679676021265 +6365.0 0.012603491376463525 +6370.0 0.012608295075457321 +6375.0 0.012613090773002659 +6380.0 0.012617878469099536 +6385.0 0.012622658163747951 +6390.0 0.012627429856947911 +6395.0 0.01263219354869941 +6400.0 0.012636949239002451 +6405.0 0.01264169692785703 +6410.0 0.012646436615263152 +6415.0 0.012651168301220811 +6420.0 0.012655891985730014 +6425.0 0.012660607668790754 +6430.0 0.012665315350403036 +6435.0 0.012670015030566856 +6440.0 0.012674706709282219 +6445.0 0.012679390386549121 +6450.0 0.012684066062367563 +6455.0 0.012688733736737548 +6460.0 0.012693393409659073 +6465.0 0.012698045081132137 +6470.0 0.012702688751156743 +6475.0 0.012707324419732888 +6480.0 0.012711952086860573 +6485.0 0.012716571752539799 +6490.0 0.012721183416770563 +6495.0 0.012725787079552872 +6500.0 0.012730382740886717 +6505.0 0.012729747080689507 +6510.0 0.012729095389343484 +6515.0 0.012728427666848641 +6520.0 0.012727743913204984 +6525.0 0.012727044128412504 +6530.0 0.01272632831247121 +6535.0 0.012725596465381097 +6540.0 0.01272484858714217 +6545.0 0.012724084677754424 +6550.0 0.012723304737217861 +6555.0 0.012722508765532478 +6560.0 0.012721696762698284 +6565.0 0.012720868728715268 +6570.0 0.012720024663583438 +6575.0 0.012719164567302788 +6580.0 0.012718288439873321 +6585.0 0.012717396281295038 +6590.0 0.012716488091567937 +6595.0 0.012715563870692023 +6600.0 0.012714623618667284 +6605.0 0.012713667335493733 +6610.0 0.012712695021171363 +6615.0 0.01271170667570018 +6620.0 0.012710702299080173 +6625.0 0.012709681891311353 +6630.0 0.012708645452393714 +6635.0 0.01270759298232726 +6640.0 0.012706524481111989 +6645.0 0.012705439948747899 +6650.0 0.012704339385234988 +6655.0 0.012703222790573265 +6660.0 0.012702090164762727 +6665.0 0.012700941507803367 +6670.0 0.012699776819695193 +6675.0 0.0126985961004382 +6680.0 0.01269739935003239 +6685.0 0.01269618656847776 +6690.0 0.012694957755774316 +6695.0 0.012693712911922056 +6700.0 0.012692452036920977 +6705.0 0.012691175130771082 +6710.0 0.012689882193472368 +6715.0 0.012688573225024837 +6720.0 0.012687248225428494 +6725.0 0.012685907194683326 +6730.0 0.012684550132789343 +6735.0 0.012683177039746547 +6740.0 0.012681787915554929 +6745.0 0.012680382760214498 +6750.0 0.012678961573725247 +6755.0 0.0126722541108143 +6760.0 0.01266552281476302 +6765.0 0.012658767685571396 +6770.0 0.012651988723239435 +6775.0 0.012645185927767134 +6780.0 0.012638359299154495 +6785.0 0.012631508837401514 +6790.0 0.012624634542508197 +6795.0 0.012617736414474546 +6800.0 0.012610814453300551 +6805.0 0.012603868658986217 +6810.0 0.012596899031531541 +6815.0 0.012589905570936533 +6820.0 0.012582888277201184 +6825.0 0.012575847150325494 +6830.0 0.012568782190309467 +6835.0 0.012561693397153097 +6840.0 0.012554580770856394 +6845.0 0.012547444311419353 +6850.0 0.012540284018841968 +6855.0 0.012533099893124247 +6860.0 0.012525891934266186 +6865.0 0.012518660142267787 +6870.0 0.012511404517129048 +6875.0 0.012504125058849968 +6880.0 0.012496821767430557 +6885.0 0.0124894946428708 +6890.0 0.012482143685170708 +6895.0 0.012474768894330274 +6900.0 0.012467370270349505 +6905.0 0.012459947813228393 +6910.0 0.012452501522966945 +6915.0 0.012445031399565156 +6920.0 0.01243753744302303 +6925.0 0.012430019653340564 +6930.0 0.01242247803051776 +6935.0 0.012414912574554616 +6940.0 0.012407323285451135 +6945.0 0.012399710163207314 +6950.0 0.012392073207823154 +6955.0 0.012384412419298656 +6960.0 0.012376727797633817 +6965.0 0.01236901934282864 +6970.0 0.012361287054883128 +6975.0 0.012353530933797272 +6980.0 0.01234575097957108 +6985.0 0.012337947192204546 +6990.0 0.012330119571697678 +6995.0 0.012322268118050468 +7000.0 0.012314392831262918 +7005.0 0.012317936211134214 +7010.0 0.012321472092625768 +7015.0 0.012325000475737586 +7020.0 0.012328521360469658 +7025.0 0.012332034746821992 +7030.0 0.012335540634794587 +7035.0 0.01233903902438744 +7040.0 0.012342529915600553 +7045.0 0.012346013308433925 +7050.0 0.012349489202887556 +7055.0 0.012352957598961448 +7060.0 0.012356418496655598 +7065.0 0.012359871895970008 +7070.0 0.012363317796904676 +7075.0 0.012366756199459606 +7080.0 0.012370187103634796 +7085.0 0.012373610509430243 +7090.0 0.012377026416845953 +7095.0 0.012380434825881921 +7100.0 0.012383835736538147 +7105.0 0.012387229148814634 +7110.0 0.012390615062711382 +7115.0 0.012393993478228388 +7120.0 0.012397364395365651 +7125.0 0.012400727814123175 +7130.0 0.012404083734500963 +7135.0 0.012407432156499006 +7140.0 0.012410773080117309 +7145.0 0.012414106505355875 +7150.0 0.012417432432214697 +7155.0 0.012420750860693778 +7160.0 0.012424061790793119 +7165.0 0.012427365222512721 +7170.0 0.012430661155852582 +7175.0 0.012433949590812702 +7180.0 0.012437230527393085 +7185.0 0.012440503965593723 +7190.0 0.012443769905414622 +7195.0 0.012447028346855779 +7200.0 0.0124502792899172 +7205.0 0.012453522734598875 +7210.0 0.012456758680900815 +7215.0 0.012459987128823012 +7220.0 0.012463208078365469 +7225.0 0.012466421529528185 +7230.0 0.012469627482311162 +7235.0 0.012472825936714395 +7240.0 0.012476016892737892 +7245.0 0.012479200350381647 +7250.0 0.01248237630964566 +7255.0 0.012478149182323806 +7260.0 0.012473904362841081 +7265.0 0.012469641851197498 +7270.0 0.012465361647393045 +7275.0 0.01246106375142773 +7280.0 0.012456748163301546 +7285.0 0.0124524148830145 +7290.0 0.012448063910566586 +7295.0 0.012443695245957809 +7300.0 0.012439308889188164 +7305.0 0.012434904840257655 +7310.0 0.01243048309916628 +7315.0 0.01242604366591404 +7320.0 0.012421586540500937 +7325.0 0.012417111722926965 +7330.0 0.01241261921319213 +7335.0 0.012408109011296428 +7340.0 0.012403581117239864 +7345.0 0.01239903553102243 +7350.0 0.012394472252644133 +7355.0 0.01238989128210497 +7360.0 0.012385292619404943 +7365.0 0.012380676264544048 +7370.0 0.012376042217522292 +7375.0 0.012371390478339666 +7380.0 0.012366721046996177 +7385.0 0.012362033923491823 +7390.0 0.012357329107826602 +7395.0 0.012352606600000518 +7400.0 0.012347866400013566 +7405.0 0.012343108507865751 +7410.0 0.012338332923557066 +7415.0 0.01233353964708752 +7420.0 0.01232872867845711 +7425.0 0.012323900017665833 +7430.0 0.01231905366471369 +7435.0 0.012314189619600678 +7440.0 0.012309307882326806 +7445.0 0.012304408452892065 +7450.0 0.012299491331296462 +7455.0 0.012294556517539993 +7460.0 0.012289604011622659 +7465.0 0.012284633813544455 +7470.0 0.012279645923305391 +7475.0 0.012274640340905462 +7480.0 0.012269617066344662 +7485.0 0.012264576099623 +7490.0 0.012259517440740475 +7495.0 0.012254441089697084 +7500.0 0.012249347046492822 +7505.0 0.0122455388658303 +7510.0 0.012241714729921905 +7515.0 0.012237874638767639 +7520.0 0.0122340185923675 +7525.0 0.01223014659072149 +7530.0 0.012226258633829609 +7535.0 0.012222354721691853 +7540.0 0.012218434854308229 +7545.0 0.01221449903167873 +7550.0 0.01221054725380336 +7555.0 0.012206579520682118 +7560.0 0.012202595832315003 +7565.0 0.012198596188702018 +7570.0 0.01219458058984316 +7575.0 0.012190549035738431 +7580.0 0.01218650152638783 +7585.0 0.012182438061791357 +7590.0 0.012178358641949013 +7595.0 0.012174263266860795 +7600.0 0.012170151936526704 +7605.0 0.012166024650946745 +7610.0 0.012161881410120916 +7615.0 0.012157722214049208 +7620.0 0.012153547062731633 +7625.0 0.012149355956168183 +7630.0 0.012145148894358864 +7635.0 0.012140925877303674 +7640.0 0.012136686905002607 +7645.0 0.012132431977455675 +7650.0 0.012128161094662866 +7655.0 0.012123874256624187 +7660.0 0.012119571463339635 +7665.0 0.01211525271480921 +7670.0 0.012110918011032918 +7675.0 0.01210656735201075 +7680.0 0.012102200737742711 +7685.0 0.012097818168228799 +7690.0 0.012093419643469015 +7695.0 0.012089005163463364 +7700.0 0.012084574728211835 +7705.0 0.012080128337714437 +7710.0 0.012075665991971168 +7715.0 0.012071187690982024 +7720.0 0.01206669343474701 +7725.0 0.012062183223266123 +7730.0 0.012057657056539366 +7735.0 0.012053114934566737 +7740.0 0.012048556857348234 +7745.0 0.01204398282488386 +7750.0 0.012039392837173615 +7755.0 0.012039939353590916 +7760.0 0.012040476558810537 +7765.0 0.012041004452832479 +7770.0 0.012041523035656743 +7775.0 0.012042032307283327 +7780.0 0.01204253226771223 +7785.0 0.012043022916943456 +7790.0 0.012043504254977 +7795.0 0.012043976281812868 +7800.0 0.012044438997451055 +7805.0 0.012044892401891565 +7810.0 0.012045336495134392 +7815.0 0.012045771277179542 +7820.0 0.012046196748027012 +7825.0 0.012046612907676803 +7830.0 0.012047019756128916 +7835.0 0.012047417293383347 +7840.0 0.012047805519440102 +7845.0 0.012048184434299176 +7850.0 0.012048554037960572 +7855.0 0.01204891433042429 +7860.0 0.012049265311690326 +7865.0 0.012049606981758682 +7870.0 0.012049939340629359 +7875.0 0.01205026238830236 +7880.0 0.012050576124777678 +7885.0 0.01205088055005532 +7890.0 0.012051175664135282 +7895.0 0.012051461467017565 +7900.0 0.012051737958702168 +7905.0 0.012052005139189092 +7910.0 0.012052263008478335 +7915.0 0.0120525115665699 +7920.0 0.012052750813463787 +7925.0 0.012052980749159992 +7930.0 0.012053201373658524 +7935.0 0.01205341268695937 +7940.0 0.01205361468906254 +7945.0 0.01205380737996803 +7950.0 0.01205399075967584 +7955.0 0.012054164828185972 +7960.0 0.012054329585498427 +7965.0 0.012054485031613198 +7970.0 0.012054631166530293 +7975.0 0.012054767990249708 +7980.0 0.012054895502771442 +7985.0 0.012055013704095499 +7990.0 0.012055122594221876 +7995.0 0.012055222173150575 +8000.0 0.012055312440881594 +8005.0 0.012051746423183251 +8010.0 0.012048166538416857 +8015.0 0.012044572786582417 +8020.0 0.012040965167679926 +8025.0 0.012037343681709384 +8030.0 0.01203370832867079 +8035.0 0.01203005910856415 +8040.0 0.012026396021389458 +8045.0 0.012022719067146718 +8050.0 0.012019028245835926 +8055.0 0.012015323557457087 +8060.0 0.012011605002010196 +8065.0 0.012007872579495253 +8070.0 0.012004126289912266 +8075.0 0.012000366133261225 +8080.0 0.011996592109542136 +8085.0 0.011992804218754996 +8090.0 0.011989002460899805 +8095.0 0.011985186835976564 +8100.0 0.011981357343985276 +8105.0 0.011977513984925938 +8110.0 0.01197365675879855 +8115.0 0.011969785665603111 +8120.0 0.01196590070533962 +8125.0 0.011962001878008083 +8130.0 0.011958089183608495 +8135.0 0.011954162622140854 +8140.0 0.01195022219360517 +8145.0 0.011946267898001432 +8150.0 0.011942299735329644 +8155.0 0.011938317705589806 +8160.0 0.011934321808781918 +8165.0 0.011930312044905982 +8170.0 0.011926288413961992 +8175.0 0.011922250915949955 +8180.0 0.011918199550869871 +8185.0 0.011914134318721733 +8190.0 0.011910055219505545 +8195.0 0.01190596225322131 +8200.0 0.011901855419869024 +8205.0 0.011897734719448686 +8210.0 0.011893600151960306 +8215.0 0.011889451717403866 +8220.0 0.011885289415779382 +8225.0 0.011881113247086846 +8230.0 0.011876923211326263 +8235.0 0.011872719308497629 +8240.0 0.011868501538600942 +8245.0 0.011864269901636209 +8250.0 0.011860024397603423 +8255.0 0.011851298904818959 +8260.0 0.011842554134764528 +8265.0 0.011833790087440128 +8270.0 0.01182500676284576 +8275.0 0.011816204160981425 +8280.0 0.011807382281847119 +8285.0 0.011798541125442846 +8290.0 0.011789680691768605 +8295.0 0.011780800980824397 +8300.0 0.011771901992610218 +8305.0 0.011762983727126074 +8310.0 0.01175404618437196 +8315.0 0.011745089364347877 +8320.0 0.011736113267053826 +8325.0 0.011727117892489808 +8330.0 0.01171810324065582 +8335.0 0.011709069311551865 +8340.0 0.01170001610517794 +8345.0 0.01169094362153405 +8350.0 0.011681851860620191 +8355.0 0.011672740822436363 +8360.0 0.011663610506982567 +8365.0 0.011654460914258803 +8370.0 0.011645292044265069 +8375.0 0.011636103897001367 +8380.0 0.011626896472467698 +8385.0 0.011617669770664061 +8390.0 0.011608423791590458 +8395.0 0.011599158535246883 +8400.0 0.01158987400163334 +8405.0 0.01158057019074983 +8410.0 0.011571247102596351 +8415.0 0.011561904737172906 +8420.0 0.01155254309447949 +8425.0 0.011543162174516107 +8430.0 0.011533761977282755 +8435.0 0.011524342502779438 +8440.0 0.01151490375100615 +8445.0 0.011505445721962892 +8450.0 0.011495968415649666 +8455.0 0.011486471832066476 +8460.0 0.011476955971213315 +8465.0 0.011467420833090184 +8470.0 0.011457866417697091 +8475.0 0.011448292725034023 +8480.0 0.01143869975510099 +8485.0 0.011429087507897987 +8490.0 0.011419455983425017 +8495.0 0.01140980518168208 +8500.0 0.011400135102669174 +8505.0 0.011400205470705107 +8510.0 0.011400268036749516 +8515.0 0.011400322800802406 +8520.0 0.011400369762863776 +8525.0 0.011400408922933621 +8530.0 0.011400440281011948 +8535.0 0.011400463837098751 +8540.0 0.011400479591194031 +8545.0 0.011400487543297791 +8550.0 0.01140048769341003 +8555.0 0.011400480041530747 +8560.0 0.011400464587659939 +8565.0 0.011400441331797613 +8570.0 0.011400410273943767 +8575.0 0.011400371414098396 +8580.0 0.011400324752261503 +8585.0 0.01140027028843309 +8590.0 0.011400208022613156 +8595.0 0.011400137954801697 +8600.0 0.01140006008499872 +8605.0 0.011399974413204221 +8610.0 0.011399880939418199 +8615.0 0.011399779663640653 +8620.0 0.011399670585871591 +8625.0 0.011399553706111003 +8630.0 0.011399429024358898 +8635.0 0.011399296540615268 +8640.0 0.011399156254880114 +8645.0 0.011399008167153443 +8650.0 0.011398852277435246 +8655.0 0.01139868858572553 +8660.0 0.011398517092024291 +8665.0 0.011398337796331533 +8670.0 0.01139815069864725 +8675.0 0.011397955798971448 +8680.0 0.011397753097304123 +8685.0 0.011397542593645279 +8690.0 0.01139732428799491 +8695.0 0.011397098180353019 +8700.0 0.011396864270719606 +8705.0 0.011396622559094674 +8710.0 0.01139637304547822 +8715.0 0.011396115729870244 +8720.0 0.011395850612270745 +8725.0 0.011395577692679727 +8730.0 0.011395296971097185 +8735.0 0.01139500844752312 +8740.0 0.011394712121957534 +8745.0 0.01139440799440043 +8750.0 0.011394096064851802 +8755.0 0.011390053480916627 +8760.0 0.011385998842731341 +8765.0 0.011381932150295943 +8770.0 0.011377853403610435 +8775.0 0.011373762602674814 +8780.0 0.011369659747489085 +8785.0 0.011365544838053243 +8790.0 0.011361417874367289 +8795.0 0.011357278856431226 +8800.0 0.011353127784245052 +8805.0 0.011348964657808765 +8810.0 0.011344789477122369 +8815.0 0.01134060224218586 +8820.0 0.011336402952999241 +8825.0 0.011332191609562513 +8830.0 0.011327968211875669 +8835.0 0.011323732759938717 +8840.0 0.011319485253751654 +8845.0 0.011315225693314479 +8850.0 0.011310954078627195 +8855.0 0.011306670409689797 +8860.0 0.011302374686502293 +8865.0 0.011298066909064671 +8870.0 0.011293747077376941 +8875.0 0.011289415191439101 +8880.0 0.01128507125125115 +8885.0 0.011280715256813085 +8890.0 0.011276347208124914 +8895.0 0.011271967105186628 +8900.0 0.011267574947998233 +8905.0 0.011263170736559724 +8910.0 0.011258754470871109 +8915.0 0.011254326150932376 +8920.0 0.011249885776743535 +8925.0 0.011245433348304586 +8930.0 0.011240968865615524 +8935.0 0.011236492328676349 +8940.0 0.011232003737487065 +8945.0 0.011227503092047671 +8950.0 0.011222990392358165 +8955.0 0.011218465638418544 +8960.0 0.011213928830228818 +8965.0 0.011209379967788976 +8970.0 0.011204819051099026 +8975.0 0.011200246080158963 +8980.0 0.01119566105496879 +8985.0 0.011191063975528508 +8990.0 0.011186454841838112 +8995.0 0.011181833653897607 +9000.0 0.011177200411706988 +9005.0 0.011171897050077895 +9010.0 0.011166580903421135 +9015.0 0.011161251971736709 +9020.0 0.011155910255024616 +9025.0 0.011150555753284858 +9030.0 0.011145188466517433 +9035.0 0.011139808394722343 +9040.0 0.011134415537899586 +9045.0 0.011129009896049162 +9050.0 0.011123591469171074 +9055.0 0.011118160257265319 +9060.0 0.011112716260331897 +9065.0 0.01110725947837081 +9070.0 0.011101789911382056 +9075.0 0.011096307559365635 +9080.0 0.01109081242232155 +9085.0 0.011085304500249797 +9090.0 0.011079783793150378 +9095.0 0.011074250301023294 +9100.0 0.011068704023868543 +9105.0 0.011063144961686127 +9110.0 0.011057573114476044 +9115.0 0.011051988482238293 +9120.0 0.011046391064972879 +9125.0 0.0110407808626798 +9130.0 0.011035157875359051 +9135.0 0.011029522103010636 +9140.0 0.011023873545634558 +9145.0 0.01101821220323081 +9150.0 0.011012538075799399 +9155.0 0.011006851163340322 +9160.0 0.011001151465853575 +9165.0 0.010995438983339165 +9170.0 0.010989713715797086 +9175.0 0.010983975663227345 +9180.0 0.010978224825629936 +9185.0 0.010972461203004859 +9190.0 0.010966684795352118 +9195.0 0.010960895602671711 +9200.0 0.010955093624963637 +9205.0 0.010949278862227898 +9210.0 0.010943451314464493 +9215.0 0.01093761098167342 +9220.0 0.01093175786385468 +9225.0 0.010925891961008277 +9230.0 0.010920013273134205 +9235.0 0.010914121800232468 +9240.0 0.010908217542303065 +9245.0 0.010902300499345995 +9250.0 0.01089637067136126 +9255.0 0.010895110106476476 +9260.0 0.010893841815503114 +9265.0 0.010892565798441178 +9270.0 0.010891282055290665 +9275.0 0.010889990586051576 +9280.0 0.010888691390723909 +9285.0 0.010887384469307666 +9290.0 0.010886069821802848 +9295.0 0.010884747448209452 +9300.0 0.01088341734852748 +9305.0 0.010882079522756933 +9310.0 0.010880733970897808 +9315.0 0.01087938069295011 +9320.0 0.010878019688913831 +9325.0 0.010876650958788977 +9330.0 0.010875274502575546 +9335.0 0.010873890320273543 +9340.0 0.01087249841188296 +9345.0 0.0108710987774038 +9350.0 0.010869691416836066 +9355.0 0.010868276330179755 +9360.0 0.010866853517434868 +9365.0 0.010865422978601404 +9370.0 0.010863984713679364 +9375.0 0.010862538722668746 +9380.0 0.010861085005569553 +9385.0 0.010859623562381782 +9390.0 0.010858154393105437 +9395.0 0.010856677497740516 +9400.0 0.010855192876287018 +9405.0 0.010853700528744941 +9410.0 0.010852200455114291 +9415.0 0.010850692655395063 +9420.0 0.010849177129587259 +9425.0 0.010847653877690877 +9430.0 0.010846122899705922 +9435.0 0.01084458419563239 +9440.0 0.01084303776547028 +9445.0 0.010841483609219594 +9450.0 0.010839921726880333 +9455.0 0.010838352118452493 +9460.0 0.01083677478393608 +9465.0 0.010835189723331088 +9470.0 0.010833596936637522 +9475.0 0.010831996423855378 +9480.0 0.010830388184984658 +9485.0 0.01082877222002536 +9490.0 0.010827148528977487 +9495.0 0.010825517111841038 +9500.0 0.010823877968616013 +9505.0 0.01082010199478353 +9510.0 0.010816316054878755 +9515.0 0.010812520148901694 +9520.0 0.010808714276852344 +9525.0 0.010804898438730701 +9530.0 0.010801072634536776 +9535.0 0.010797236864270556 +9540.0 0.01079339112793205 +9545.0 0.010789535425521253 +9550.0 0.01078566975703817 +9555.0 0.010781794122482796 +9560.0 0.01077790852185513 +9565.0 0.01077401295515518 +9570.0 0.010770107422382939 +9575.0 0.010766191923538407 +9580.0 0.010762266458621588 +9585.0 0.01075833102763248 +9590.0 0.010754385630571083 +9595.0 0.010750430267437397 +9600.0 0.010746464938231422 +9605.0 0.010742489642953157 +9610.0 0.010738504381602605 +9615.0 0.010734509154179764 +9620.0 0.010730503960684631 +9625.0 0.010726488801117212 +9630.0 0.010722463675477504 +9635.0 0.010718428583765505 +9640.0 0.010714383525981218 +9645.0 0.010710328502124642 +9650.0 0.010706263512195776 +9655.0 0.010702188556194621 +9660.0 0.010698103634121178 +9665.0 0.010694008745975446 +9670.0 0.010689903891757424 +9675.0 0.010685789071467115 +9680.0 0.010681664285104515 +9685.0 0.010677529532669625 +9690.0 0.01067338481416245 +9695.0 0.010669230129582983 +9700.0 0.010665065478931228 +9705.0 0.010660890862207183 +9710.0 0.010656706279410852 +9715.0 0.010652511730542229 +9720.0 0.010648307215601317 +9725.0 0.010644092734588117 +9730.0 0.010639868287502626 +9735.0 0.010635633874344848 +9740.0 0.010631389495114782 +9745.0 0.010627135149812426 +9750.0 0.01062287083843778 +9755.0 0.01062183719549682 +9760.0 0.01062079690850767 +9765.0 0.010619749977470326 +9770.0 0.01061869640238479 +9775.0 0.01061763618325106 +9780.0 0.01061656932006914 +9785.0 0.010615495812839024 +9790.0 0.010614415661560718 +9795.0 0.010613328866234218 +9800.0 0.010612235426859526 +9805.0 0.010611135343436641 +9810.0 0.010610028615965562 +9815.0 0.010608915244446295 +9820.0 0.010607795228878829 +9825.0 0.010606668569263174 +9830.0 0.010605535265599325 +9835.0 0.010604395317887285 +9840.0 0.01060324872612705 +9845.0 0.010602095490318625 +9850.0 0.010600935610462004 +9855.0 0.010599769086557194 +9860.0 0.01059859591860419 +9865.0 0.010597416106602992 +9870.0 0.010596229650553603 +9875.0 0.01059503655045602 +9880.0 0.010593836806310245 +9885.0 0.010592630418116278 +9890.0 0.010591417385874116 +9895.0 0.010590197709583764 +9900.0 0.010588971389245218 +9905.0 0.010587738424858478 +9910.0 0.010586498816423548 +9915.0 0.010585252563940425 +9920.0 0.010583999667409107 +9925.0 0.010582740126829599 +9930.0 0.010581473942201897 +9935.0 0.010580201113526002 +9940.0 0.010578921640801913 +9945.0 0.010577635524029634 +9950.0 0.010576342763209163 +9955.0 0.010575043358340497 +9960.0 0.01057373730942364 +9965.0 0.01057242461645859 +9970.0 0.010571105279445346 +9975.0 0.01056977929838391 +9980.0 0.010568446673274282 +9985.0 0.01056710740411646 +9990.0 0.010565761490910444 +9995.0 0.01056440893365624 +10000.0 0.010563049732353839 +10005.0 0.010559191123171958 +10010.0 0.010555323378423813 +10015.0 0.010551446498109403 +10020.0 0.010547560482228728 +10025.0 0.010543665330781788 +10030.0 0.010539761043768584 +10035.0 0.010535847621189113 +10040.0 0.010531925063043379 +10045.0 0.010527993369331379 +10050.0 0.010524052540053116 +10055.0 0.010520102575208586 +10060.0 0.010516143474797792 +10065.0 0.010512175238820731 +10070.0 0.010508197867277408 +10075.0 0.01050421136016782 +10080.0 0.010500215717491965 +10085.0 0.010496210939249847 +10090.0 0.01049219702544146 +10095.0 0.01048817397606681 +10100.0 0.010484141791125898 +10105.0 0.01048010047061872 +10110.0 0.010476050014545275 +10115.0 0.010471990422905567 +10120.0 0.010467921695699592 +10125.0 0.010463843832927354 +10130.0 0.010459756834588852 +10135.0 0.010455660700684082 +10140.0 0.01045155543121305 +10145.0 0.010447441026175753 +10150.0 0.010443317485572187 +10155.0 0.010439184809402358 +10160.0 0.010435042997666266 +10165.0 0.010430892050363908 +10170.0 0.010426731967495285 +10175.0 0.010422562749060399 +10180.0 0.010418384395059247 +10185.0 0.01041419690549183 +10190.0 0.010410000280358147 +10195.0 0.010405794519658198 +10200.0 0.010401579623391987 +10205.0 0.010397355591559508 +10210.0 0.010393122424160767 +10215.0 0.01038888012119576 +10220.0 0.010384628682664486 +10225.0 0.01038036810856695 +10230.0 0.01037609839890315 +10235.0 0.01037181955367308 +10240.0 0.010367531572876749 +10245.0 0.010363234456514154 +10250.0 0.010358928204585291 +10255.0 0.0103553350728503 +10260.0 0.010351733509845253 +10265.0 0.010348123515570146 +10270.0 0.010344505090024983 +10275.0 0.010340878233209762 +10280.0 0.010337242945124484 +10285.0 0.010333599225769145 +10290.0 0.010329947075143748 +10295.0 0.010326286493248293 +10300.0 0.010322617480082782 +10305.0 0.01031894003564721 +10310.0 0.010315254159941582 +10315.0 0.010311559852965895 +10320.0 0.010307857114720152 +10325.0 0.010304145945204348 +10330.0 0.01030042634441849 +10335.0 0.01029669831236257 +10340.0 0.010292961849036593 +10345.0 0.010289216954440558 +10350.0 0.010285463628574465 +10355.0 0.010281701871438315 +10360.0 0.010277931683032104 +10365.0 0.010274153063355839 +10370.0 0.010270366012409512 +10375.0 0.010266570530193132 +10380.0 0.010262766616706689 +10385.0 0.010258954271950189 +10390.0 0.010255133495923632 +10395.0 0.010251304288627016 +10400.0 0.010247466650060343 +10405.0 0.01024362058022361 +10410.0 0.01023976607911682 +10415.0 0.010235903146739974 +10420.0 0.010232031783093067 +10425.0 0.010228151988176103 +10430.0 0.010224263761989082 +10435.0 0.010220367104532002 +10440.0 0.010216462015804863 +10445.0 0.010212548495807668 +10450.0 0.010208626544540413 +10455.0 0.010204696162003101 +10460.0 0.01020075734819573 +10465.0 0.010196810103118303 +10470.0 0.010192854426770816 +10475.0 0.010188890319153272 +10480.0 0.01018491778026567 +10485.0 0.01018093681010801 +10490.0 0.01017694740868029 +10495.0 0.010172949575982512 +10500.0 0.01016894331201468 +10505.0 0.010161333135725684 +10510.0 0.010153711105528788 +10515.0 0.010146077221423997 +10520.0 0.010138431483411309 +10525.0 0.010130773891490719 +10530.0 0.010123104445662234 +10535.0 0.01011542314592585 +10540.0 0.010107729992281564 +10545.0 0.010100024984729384 +10550.0 0.010092308123269304 +10555.0 0.010084579407901329 +10560.0 0.010076838838625451 +10565.0 0.010069086415441676 +10570.0 0.010061322138350006 +10575.0 0.010053546007350436 +10580.0 0.010045758022442964 +10585.0 0.010037958183627595 +10590.0 0.010030146490904331 +10595.0 0.01002232294427317 +10600.0 0.010014487543734107 +10605.0 0.010006640289287147 +10610.0 0.009998781180932288 +10615.0 0.009990910218669533 +10620.0 0.009983027402498876 +10625.0 0.009975132732420323 +10630.0 0.009967226208433873 +10635.0 0.009959307830539523 +10640.0 0.009951377598737278 +10645.0 0.009943435513027128 +10650.0 0.009935481573409085 +10655.0 0.009927515779883146 +10660.0 0.009919538132449302 +10665.0 0.009911548631107563 +10670.0 0.009903547275857927 +10675.0 0.009895534066700393 +10680.0 0.00988750900363496 +10685.0 0.009879472086661626 +10690.0 0.009871423315780396 +10695.0 0.009863362690991268 +10700.0 0.00985529021229424 +10705.0 0.009847205879689316 +10710.0 0.009839109693176492 +10715.0 0.009831001652755772 +10720.0 0.009822881758427153 +10725.0 0.009814750010190634 +10730.0 0.00980660640804622 +10735.0 0.009798450951993906 +10740.0 0.009790283642033692 +10745.0 0.00978210447816558 +10750.0 0.009773913460389572 +10755.0 0.00977017663485018 +10760.0 0.009766432107933005 +10765.0 0.009762679879638055 +10770.0 0.009758919949965325 +10775.0 0.00975515231891482 +10780.0 0.009751376986486534 +10785.0 0.009747593952680472 +10790.0 0.009743803217496632 +10795.0 0.009740004780935015 +10800.0 0.00973619864299562 +10805.0 0.009732384803678447 +10810.0 0.009728563262983495 +10815.0 0.009724734020910768 +10820.0 0.00972089707746026 +10825.0 0.009717052432631976 +10830.0 0.009713200086425913 +10835.0 0.009709340038842074 +10840.0 0.009705472289880456 +10845.0 0.00970159683954106 +10850.0 0.009697713687823887 +10855.0 0.009693822834728935 +10860.0 0.009689924280256206 +10865.0 0.009686018024405699 +10870.0 0.009682104067177415 +10875.0 0.00967818240857135 +10880.0 0.009674253048587511 +10885.0 0.009670315987225894 +10890.0 0.009666371224486495 +10895.0 0.009662418760369322 +10900.0 0.00965845859487437 +10905.0 0.009654490728001642 +10910.0 0.009650515159751134 +10915.0 0.009646531890122849 +10920.0 0.009642540919116786 +10925.0 0.009638542246732943 +10930.0 0.009634535872971327 +10935.0 0.009630521797831927 +10940.0 0.009626500021314755 +10945.0 0.009622470543419802 +10950.0 0.009618433364147074 +10955.0 0.009614388483496564 +10960.0 0.009610335901468281 +10965.0 0.009606275618062215 +10970.0 0.009602207633278377 +10975.0 0.009598131947116754 +10980.0 0.00959404855957736 +10985.0 0.009589957470660184 +10990.0 0.009585858680365232 +10995.0 0.009581752188692502 +11000.0 0.009577637995641994 diff --git a/ObservationSim/ObservationSim.py b/ObservationSim/ObservationSim.py index 4a8470b2e9e20be7a88e529f19d09f6281e604dc..60cec67c30869a1b247a02c8f08cdcccb050c675 100755 --- a/ObservationSim/ObservationSim.py +++ b/ObservationSim/ObservationSim.py @@ -19,9 +19,11 @@ class Observation(object): def __init__(self, config, Catalog, work_dir=None, data_dir=None): self.path_dict = config_dir(config=config, work_dir=work_dir, data_dir=data_dir) self.config = config - self.tel = Telescope(optEffCurve_path=self.path_dict["mirror_file"]) + # self.tel = Telescope(optEffCurve_path=self.path_dict["mirror_file"]) + self.tel = Telescope() self.focal_plane = FocalPlane(survey_type=self.config["obs_setting"]["survey_type"]) - self.filter_param = FilterParam(filter_dir=self.path_dict["filter_dir"]) + # self.filter_param = FilterParam(filter_dir=self.path_dict["filter_dir"]) + self.filter_param = FilterParam() self.chip_list = [] self.filter_list = [] self.Catalog = Catalog @@ -42,10 +44,11 @@ class Observation(object): # Make Chip & Filter lists chip = Chip( chipID=chipID, - ccdEffCurve_dir=self.path_dict["ccd_dir"], - CRdata_dir=self.path_dict["CRdata_dir"], - normalize_dir=self.path_dict["normalize_dir"], - sls_dir=self.path_dict["sls_dir"], config=self.config) + # ccdEffCurve_dir=self.path_dict["ccd_dir"], + # CRdata_dir=self.path_dict["CRdata_dir"], + # normalize_dir=self.path_dict["normalize_dir"], + # sls_dir=self.path_dict["sls_dir"], + config=self.config) filter_id, filter_type = chip.getChipFilter() filt = Filter(filter_id=filter_id, filter_type=filter_type, @@ -107,7 +110,14 @@ class Observation(object): dt=1E-3) # shutter effect normalized image for this chip flat_normal = flat_normal*shuttimg flat_normal = np.array(flat_normal,dtype='float32') - sky_map = calculateSkyMap_split_g(skyMap=flat_normal, blueLimit=filt.blue_limit, redLimit=filt.red_limit, skyfn=self.path_dict["sky_file"], conf=chip.sls_conf, pixelSize=chip.pix_scale, isAlongY=0) + sky_map = calculateSkyMap_split_g( + skyMap=flat_normal, + blueLimit=filt.blue_limit, + redLimit=filt.red_limit, + # skyfn=self.path_dict["sky_file"], + conf=chip.sls_conf, + pixelSize=chip.pix_scale, + isAlongY=0) del flat_normal if pointing.pointing_type == 'MS': diff --git a/ObservationSim/PSF/PSFInterp/PSFConfig.py b/ObservationSim/PSF/PSFInterp/PSFConfig.py deleted file mode 100644 index 3ea62a2c570d130a921a4e752c0b60b1fcbfb047..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/PSFConfig.py +++ /dev/null @@ -1,199 +0,0 @@ -import sys -import numpy as np -import scipy.io -from itertools import islice - -# from PSF.PSFInterp.PSFUtil import * -# from PSFUtil import findNeighbors, findNeighbors_hoclist - - - -###加载PSF信息### -def LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=False, PixSizeInMicrons=2.5, PSFBinning=False, PSFConvGauss=False): - """ - load psf informations from psf matrix. - - Parameters: - iccd (int): ccd number [1,30]. - iwave(int): wave-index [1,4]. - ipsf (int): psf number [1, 100]. - psfPath (int): path to psf matrix - InputMaxPixelPos(bool-optional): only True for 30*30 psf-matrix - PSFCentroidWgt(bool-optional): True for using psfMat with libCentroid.lib - Returns: - psfInfo (dirctionary) - """ - - if iccd not in np.linspace(1, 30, 30, dtype='int'): - print('Error - iccd should be in [1, 30].') - sys.exit() - if iwave not in np.linspace(1, 4, 4, dtype='int'): - print('Error - iwave should be in [1, 4].') - sys.exit() - if ipsf not in np.linspace(1, 900, 900, dtype='int'): - print('Error - ipsf should be in [1, 900].') - sys.exit() - - psfInfo = {} - fpath = psfPath +'/' +'ccd{:}'.format(iccd) +'/' + 'wave_{:}'.format(iwave) - - #获取ipsf矩阵 - ''' - if not PSFCentroidWgt: - ##读取PSF原数据 - fpathMat = fpath +'/' +'5_psf_array' +'/' +'psf_{:}.mat'.format(ipsf) - data = scipy.io.loadmat(fpathMat) - psfInfo['psfMat'] = data['psf'] - if PSFCentroidWgt: - ##读取PSFCentroidWgt - ffpath = psfPath +'_proc/' +'ccd{:}'.format(iccd) +'/' + 'wave_{:}'.format(iwave) - ffpathMat = ffpath +'/' +'5_psf_array' +'/' +'psf_{:}_centroidWgt.mat'.format(ipsf) - data = scipy.io.loadmat(ffpathMat) - psfInfo['psfMat'] = data['psf'] - ''' - if not PSFCentroidWgt: - ffpath = fpath - ffpathMat = ffpath +'/5_psf_array/psf_{:}.mat'.format(ipsf) - if PSFCentroidWgt: - ffpath = psfPath +'_proc/ccd{:}/wave_{:}'.format(iccd, iwave) - ffpathMat = ffpath +'/5_psf_array/psf_{:}_centroidWgt.mat'.format(ipsf) - if PSFBinning and (not PSFConvGauss): - ffpath = psfPath +'_bin256x256/ccd{:}/wave_{:}'.format(iccd, iwave) - ffpathMat = ffpath +'/5_psf_array/psf_{:}_centroidWgt.mat'.format(ipsf) - if (not PSFBinning) and PSFConvGauss: - ffpath = psfPath +'_convGauss/ccd{:}/wave_{:}'.format(iccd, iwave) - ffpathMat = ffpath +'/5_psf_array/psf_{:}_centroidWgt.mat'.format(ipsf) - if PSFBinning and PSFConvGauss: - ffpath = psfPath +'_convGauss/ccd{:}/wave_{:}'.format(iccd, iwave) - ffpathMat = ffpath +'/5_psf_array/psf_{:}_centroidWgt_BC.mat'.format(ipsf) - data = scipy.io.loadmat(ffpathMat) - psfInfo['psfMat'] = data['psf'] - - - psfInfo['pixsize'] = PixSizeInMicrons #microns - if PSFBinning: - psfInfo['pixsize'] = PixSizeInMicrons*2.0 - - #获取ipsf波长 - fpathWave = fpath +'/' +'1_wavelength.txt' - f = open(fpathWave, 'r') - wavelength = np.float(f.readline()) - f.close() - psfInfo['wavelength'] = wavelength - - #获取ipsf位置 - fpathCoordinate = fpath +'/' +'4_PSF_coordinate.txt' - f = open(fpathCoordinate, 'r') - header = f.readline() - for line in islice(f, ipsf-1, ipsf): - line = line.strip() - columns = line.split() - f.close() - icol = 0 - psfInfo['field_x'] = float(columns[icol]) #deg, 视场采样位置 - icol+= 1 - psfInfo['field_y'] = float(columns[icol]) #deg - icol+= 1 - psfInfo['centroid_x'] = float(columns[icol]) #mm, psf质心相对主光线的偏移量 - icol+= 1 - psfInfo['centroid_y'] = float(columns[icol]) #mm - icol+= 1 - if InputMaxPixelPos == True: - psfInfo['max_x'] = float(columns[icol]) #mm, max pixel postion - icol+= 1 - psfInfo['max_y'] = float(columns[icol]) #mm - icol+= 1 - psfInfo['image_x'] = float(columns[icol]) #mm, 主光线位置 - icol+= 1 - psfInfo['image_y'] = float(columns[icol]) #mm - - - if PSFCentroidWgt: - psfInfo['centroid_x'] = data['cx'][0][0] #mm, psfCentroidWgt质心相对主光线的偏移量 - psfInfo['centroid_y'] = data['cy'][0][0] #mm - # if PSFBinning: - # psfInfo['centroid_x'] = data['cx'][0][0] +0.0025/2 #binning引起的主光线漂移 - # psfInfo['centroid_y'] = data['cy'][0][0] +0.0025/2 - return psfInfo - - - -###插值PSF图像-IDW方法### -def psfMaker_IDW(px, py, PSFMat, cen_col, cen_row, IDWindex=2, OnlyNeighbors=True, hoc=None, hoclist=None, PSFCentroidWgt=False): - """ - psf interpolation by IDW - - Parameters: - px, py (float, float): position of the target - PSFMat (numpy.array): image - cen_col, cen_row (numpy.array, numpy.array): potions of the psf centers - IDWindex (int-optional): the power index of IDW - OnlyNeighbors (bool-optional): only neighbors are used for psf interpolation - - Returns: - psfMaker (numpy.array) - """ - - minimum_psf_weight = 1e-8 - ref_col = px - ref_row = py - - ngy, ngx = PSFMat[0, :, :].shape - npsf = PSFMat[:, :, :].shape[0] - psfWeight = np.zeros([npsf]) - - from .PSFUtil import findNeighbors, findNeighbors_hoclist - - if OnlyNeighbors == True: - if hoc is None: - neigh = findNeighbors(px, py, cen_col, cen_row, dr=5., dn=4, OnlyDistance=False) - if hoc is not None: - neigh = findNeighbors_hoclist(cen_col, cen_row, tx=px,ty=py, dn=4, hoc=hoc, hoclist=hoclist) - - neighFlag = np.zeros(npsf) - neighFlag[neigh] = 1 - - for ipsf in range(npsf): - if OnlyNeighbors == True: - if neighFlag[ipsf] != 1: - continue - - dist = np.sqrt((ref_col - cen_col[ipsf])**2 + (ref_row - cen_row[ipsf])**2) - if IDWindex == 1: - psfWeight[ipsf] = dist - if IDWindex == 2: - psfWeight[ipsf] = dist**2 - if IDWindex == 3: - psfWeight[ipsf] = dist**3 - if IDWindex == 4: - psfWeight[ipsf] = dist**4 - psfWeight[ipsf] = max(psfWeight[ipsf], minimum_psf_weight) - psfWeight[ipsf] = 1./psfWeight[ipsf] - psfWeight /= np.sum(psfWeight) - - psfMaker = np.zeros([ngy, ngx], dtype=np.float32) - for ipsf in range(npsf): - if OnlyNeighbors == True: - if neighFlag[ipsf] != 1: - continue - - iPSFMat = PSFMat[ipsf, :, :].copy() - ipsfWeight = psfWeight[ipsf] - - psfMaker += iPSFMat * ipsfWeight - psfMaker /= np.nansum(psfMaker) - - return psfMaker - - - -###TEST### -if __name__ == '__main__': - iccd = 1 - iwave= 1 - ipsf = 1 - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90' - - psfInfo = LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=True) - print('psfInfo.keys:', psfInfo.keys()) - print(psfInfo) diff --git a/ObservationSim/PSF/PSFInterp/PSFInterp.py b/ObservationSim/PSF/PSFInterp/PSFInterp.py deleted file mode 100644 index b3f41c8a87f266de032433b71937809dd0e0cc69..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/PSFInterp.py +++ /dev/null @@ -1,265 +0,0 @@ -''' -PSF interpolation for CSST-Sim - -NOTE: [iccd, iwave, ipsf] are counted from 1 to n, but [tccd, twave, tpsf] are counted from 0 to n-1 -''' - -import galsim -import numpy as np -import os -import time -import copy - -from ObservationSim.PSF.PSFInterp import PSFConfig as myConfig -from ObservationSim.PSF.PSFInterp import PSFUtil as myUtil -from ObservationSim.PSF.PSFModel import PSFModel - -LOG_DEBUG = False #***# -NPSF = 900 #***# 30*30 -iccdTest = 1 #***# - - -class PSFInterp(PSFModel): - # def __init__(self, PSF_data=None, params=None, PSF_data_file=None): - def __init__(self, chip, PSF_data=None, PSF_data_file=None, sigSpin=0, psfRa=0.15): - """ - The PSF data matrix is either given by a object parameter or read in from a file. - Parameters: - PSF_data: The PSF data matrix object - params: Other parameters? - PSF_data_file: The file for PSF data matrix (optional). - """ - from . import PSFUtil as myUtil - if LOG_DEBUG: - print('===================================================') - print('DEBUG: psf module for csstSim ' \ - +time.strftime("(%Y-%m-%d %H:%M:%S)", time.localtime()), flush=True) - print('===================================================') - - self.sigSpin = sigSpin - self.sigGauss = psfRa - - self.iccd = int(chip.getChipLabel(chipID=chip.chipID)) - if PSF_data_file == None: - PSF_data_file = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90' - self.nwave= self._getPSFwave(self.iccd, PSF_data_file) - self.PSF_data = self._loadPSF(self.iccd, PSF_data_file) - - if LOG_DEBUG: - print('nwave-{:} on ccd-{:}::'.format(self.nwave, self.iccd), flush=True) - print('self.PSF_data ... ok', flush=True) - print('Preparing self.[psfMat,cen_col,cen_row] for psfMaker ... ', end='', flush=True) - - ngy, ngx = self.PSF_data[0][0]['psfMat'].shape - self.psfMat = np.zeros([self.nwave, NPSF, ngy, ngx], dtype=np.float32) - self.cen_col= np.zeros([self.nwave, NPSF], dtype=np.float32) - self.cen_row= np.zeros([self.nwave, NPSF], dtype=np.float32) - self.hoc =[] - self.hoclist=[] - - for twave in range(self.nwave): - for tpsf in range(NPSF): - self.psfMat[twave, tpsf, :, :] = self.PSF_data[twave][tpsf]['psfMat'] - self.PSF_data[twave][tpsf]['psfMat'] = 0 ###free psfMat - - self.pixsize = self.PSF_data[twave][tpsf]['pixsize']*1e-3 ##mm - self.cen_col[twave, tpsf] = self.PSF_data[twave][tpsf]['image_x'] +0.*self.pixsize + self.PSF_data[twave][tpsf]['centroid_x'] - self.cen_row[twave, tpsf] = self.PSF_data[twave][tpsf]['image_y'] +0.*self.pixsize + self.PSF_data[twave][tpsf]['centroid_y'] - - #hoclist on twave for neighborsFinding - hoc,hoclist = myUtil.findNeighbors_hoclist(self.cen_col[twave], self.cen_row[twave]) - self.hoc.append(hoc) - self.hoclist.append(hoclist) - - if LOG_DEBUG: - print('ok', flush=True) - - - def _getPSFwave(self, iccd, PSF_data_file): - """ - Get # of sampling waves on iccd - Parameters: - iccd: The chip of i-th ccd - PSF_data_file: The file for PSF data matrix - Returns: - nwave: The number of the sampling waves - """ - strs = os.listdir(PSF_data_file + '/ccd{:}'.format(iccd)) - nwave = 0 - for _ in strs: - if 'wave_' in _: - nwave += 1 - return nwave - - - - def _loadPSF(self, iccd, PSF_data_file): - """ - load psf-matrix on iccd - Parameters: - iccd: The chip of i-th ccd - PSF_data_file: The file for PSF data matrix - Returns: - psfSet: The matrix of the csst-psf - """ - from . import PSFConfig as myConfig - psfSet = [] - for ii in range(self.nwave): - iwave = ii+1 - if LOG_DEBUG: - print('self._loadPSF: iwave::', iwave, flush=True) - psfWave = [] - for jj in range(NPSF): - ipsf = jj+1 - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, PSF_data_file, InputMaxPixelPos=True, PSFCentroidWgt=True, PSFBinning=True, PSFConvGauss=True) - psfWave.append(psfInfo) - psfSet.append(psfWave) - if LOG_DEBUG: - print('psfSet has been loaded:', flush=True) - print('psfSet[iwave][ipsf][keys]:', psfSet[0][0].keys(), flush=True) - return psfSet - - - - def _preprocessPSF(self): - pass - - - def _findWave(self, bandpass): - for twave in range(self.nwave): - bandwave = self.PSF_data[twave][0]['wavelength'] - if bandpass.blue_limit < bandwave and bandwave < bandpass.red_limit: - return twave - return -1 - - - - def get_PSF(self, chip, pos_img, bandpass, pixSize=0.0184, galsimGSObject=True, findNeighMode='treeFind', folding_threshold=5.e-3): - """ - Get the PSF at a given image position - - Parameters: - chip: A 'Chip' object representing the chip we want to extract PSF from. - pos_img: A 'galsim.Position' object representing the image position. - bandpass: A 'galsim.Bandpass' object representing the wavelength range. - pixSize: The pixels size of psf matrix - findNeighMode: 'treeFind' or 'hoclistFind' - Returns: - PSF: A 'galsim.GSObject'. - """ - from . import PSFConfig as myConfig - pixSize = np.rad2deg(self.pixsize*1e-3/28)*3600 #set psf pixsize - - #***# assert self.iccd == chip.chipID, 'ERROR: self.iccd != chip.chipID' - # twave = bandpass-1 #***# ??? #self.findWave(bandpass) ###twave=iwave-1 as that in NOTE - assert self.iccd == int(chip.getChipLabel(chipID=chip.chipID)), 'ERROR: self.iccd != chip.chipID' - twave = self._findWave(bandpass) - if twave == -1: - print("!!!PSF bandpass does not match.") - exit() - PSFMat = self.psfMat[twave] - cen_col= self.cen_col[twave] - cen_row= self.cen_row[twave] - - # px = pos_img[0] - # py = pos_img[1] - px = (pos_img.x - chip.cen_pix_x)*0.01 - py = (pos_img.y - chip.cen_pix_y)*0.01 - if findNeighMode == 'treeFind': - imPSF = myConfig.psfMaker_IDW(px, py, PSFMat, cen_col, cen_row, IDWindex=2, OnlyNeighbors=True, PSFCentroidWgt=True) - if findNeighMode == 'hoclistFind': - imPSF = myConfig.psfMaker_IDW(px, py, PSFMat, cen_col, cen_row, IDWindex=2, OnlyNeighbors=True, hoc=self.hoc[twave], hoclist=self.hoclist[twave], PSFCentroidWgt=True) - - if galsimGSObject: - img = galsim.ImageF(imPSF, scale=pixSize) - gsp = galsim.GSParams(folding_threshold=folding_threshold) - self.psf = galsim.InterpolatedImage(img, gsparams=gsp) - # gaussPSF = galsim.Gaussian(sigma=0.04, gsparams=gsp) - # self.psf = galsim.Convolve(gaussPSF, self.psf) - return self.PSFspin(x=px/0.01, y=py/0.01) - return imPSF - - def PSFspin(self, x, y): - """ - The PSF profile at a given image position relative to the axis center - - Parameters: - theta : spin angles in a given exposure in unit of [arcsecond] - dx, dy: relative position to the axis center in unit of [pixels] - - Return: - Spinned PSF: g1, g2 and axis ratio 'a/b' - """ - a2Rad = np.pi/(60.0*60.0*180.0) - - ff = self.sigGauss * 0.107 * (1000.0/10.0) # in unit of [pixels] - rc = np.sqrt(x*x + y*y) - cpix = rc*(self.sigSpin*a2Rad) - - beta = (np.arctan2(y,x) + np.pi/2) - ell = cpix**2/(2.0*ff**2+cpix**2) - qr = np.sqrt((1.0+ell)/(1.0-ell)) - PSFshear = galsim.Shear(e=ell, beta=beta*galsim.radians) - return self.psf.shear(PSFshear), PSFshear - - -if __name__ == '__main__': - if True: - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90' - psfCSST = PSFInterp(PSF_data_file = psfPath) - iwave= 1 - ipsf = 665 - pos_img = [psfCSST.cen_col[iwave, ipsf], psfCSST.cen_row[iwave, ipsf]] - img = psfCSST.get_PSF(1, pos_img, iwave, galsimGSObject=True) - print('haha') - - - if False: - #old version (discarded) - #plot check-1 - import matplotlib.pyplot as plt - fig = plt.figure(figsize=(18,5)) - ax = plt.subplot(1,3,1) - plt.imshow(img) - plt.colorbar() - ax = plt.subplot(1,3,2) - imgx = psfCSST.itpPSF_data[iwave][ipsf]['psfMat'] - imgx/= np.sum(imgx) - plt.imshow(imgx) - plt.colorbar() - ax = plt.subplot(1,3,3) - plt.imshow(img - imgx) - plt.colorbar() - plt.savefig('test/figs/test1.jpg') - - if False: - #old version (discarded) - #plot check-2: 注意图像坐标和全局坐标 - fig = plt.figure(figsize=(8,8), dpi = 200) - img = psfCSST.PSF_data[iwave][ipsf]['psfMat'] - npix = img.shape[0] - dng = 105 - imgg = img[dng:-dng, dng:-dng] - plt.imshow(imgg) - imgX = psfCSST.PSF_data[iwave][ipsf]['image_x'] #in mm - imgY = psfCSST.PSF_data[iwave][ipsf]['image_y'] #in mm - deltX= psfCSST.PSF_data[iwave][ipsf]['centroid_x'] #in mm - deltY= psfCSST.PSF_data[iwave][ipsf]['centroid_y'] #in mm - maxX = psfCSST.PSF_data[iwave][ipsf]['max_x'] - maxY = psfCSST.PSF_data[iwave][ipsf]['max_y'] - cenPix_X = npix/2 + deltX/0.005 - cenPix_Y = npix/2 - deltY/0.005 - maxPix_X = npix/2 + maxX/0.005-1 - maxPix_Y = npix/2 - maxY/0.005-1 - plt.plot([cenPix_X-dng],[cenPix_Y-dng], 'rx', ms = 20) - plt.plot([maxPix_X-dng],[maxPix_Y-dng], 'b+', ms=20) - - from scipy import ndimage - y, x = ndimage.center_of_mass(img) - plt.plot([x-dng],[y-dng], 'rx', ms = 10, mew=4) - - from . import PSFUtil as myUtil - x, y = myUtil.findMaxPix(img) - plt.plot([x-dng],[y-dng], 'b+', ms = 10, mew=4) - plt.savefig('test/figs/test2.jpg') - diff --git a/ObservationSim/PSF/PSFInterp/PSFProcess.py b/ObservationSim/PSF/PSFInterp/PSFProcess.py deleted file mode 100644 index 9131ddfd8a206be5de9904e1f508bfb87799186d..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/PSFProcess.py +++ /dev/null @@ -1,81 +0,0 @@ -import os, sys -import numpy as np -import scipy.io -import mpi4py.MPI as MPI - -import ObservationSim.PSF.PSFInterp.PSFConfig as PSFConfig -import ObservationSim.PSF.PSFInterp.PSFUtil as PSFUtil - -def mkdir(path): - isExists = os.path.exists(path) - if not isExists: - os.mkdir(path) - - -############################################ -comm = MPI.COMM_WORLD -ThisTask = comm.Get_rank() -NTasks = comm.Get_size() - -npsf = 900 -psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90' - -npsfPerTasks = int(npsf/NTasks) -iStart= 0 + npsfPerTasks*ThisTask -iEnd = npsfPerTasks + npsfPerTasks*ThisTask -if ThisTask == NTasks: - iEnd = npsf - - -for iccd in range(1, 31): - iccdPath = psfPath + '_proc/ccd{:}'.format(iccd) - if ThisTask == 0: - mkdir(iccdPath) - comm.barrier() - - for iwave in range(1, 5): - iwavePath = iccdPath + '/wave_{:}'.format(iwave) - if ThisTask == 0: - mkdir(iwavePath) - comm.barrier() - - psfMatPath = iwavePath + '/5_psf_array' - if ThisTask == 0: - mkdir(psfMatPath) - comm.barrier() - - for ii in range(iStart, iEnd): - ipsf = ii+1 - if ThisTask ==0: - print('iccd-iwave-ipsf: {:4}{:4}{:4}'.format(iccd, iwave, ipsf), end='\r',flush=True) - #if iccd != 1 or iwave !=1 or ipsf != 1: - # continue - - ipsfOutput = psfMatPath + '/psf_{:}_centroidWgt.mat'.format(ipsf) - psfInfo = PSFConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True) - ipsfMat = psfInfo['psfMat'] - npix_y, npix_x = ipsfMat.shape - - #if npsf == 100: - # ncut = 160 - #if npsf == 900: - # ncut = 200 - ncut = int(npix_y*0.90) - ncut = ncut + ncut%2 #even pixs - - img, cx, cy = PSFUtil.centroidWgt(ipsfMat, nt=ncut) - dcx = cx - npix_x/2 #pixel coords -> global coords - dcy = cy - npix_y/2 #pixel coords -> global coords - dcx*= psfInfo['pixsize']*1e-3 #5e-3 #pixels -> mm - dcy*= psfInfo['pixsize']*1e-3 #5e-3 #pixels -> mm - - nn = npix_y - dn = int((nn - ncut)/2) - imgt = np.zeros([nn, nn], dtype=np.float32) - imgt[dn:-dn, dn:-dn] = img - - scipy.io.savemat(ipsfOutput, {'cx':dcx, 'cy':dcy, 'psf':imgt}) - if iccd != 1 or iwave !=1 or ipsf != 1: - if ThisTask == 0: - print('CHECK::', dcx, dcy, psfInfo['centroid_x'],psfInfo['centroid_y']) - diff --git a/ObservationSim/PSF/PSFInterp/PSFUtil.py b/ObservationSim/PSF/PSFInterp/PSFUtil.py deleted file mode 100644 index 444dabbf1cec1ea676a27fd1333f965a8451873e..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/PSFUtil.py +++ /dev/null @@ -1,527 +0,0 @@ -import sys -import ctypes -import numpy as np -from scipy import ndimage -import scipy.spatial as spatial - - -###定义PSF像素的全局坐标### -def psfPixelLayout(nrows, ncols, cenPosRow, cenPosCol, pixSizeInMicrons=5.0): - """ - convert psf pixels to physical position - - Parameters: - nrows, ncols (int, int): psf sampling with [nrows, ncols]. - cenPosRow, cenPosCol (float, float): A physical position of the chief ray for a given psf. - pixSizeInMicrons (float-optional): The pixel size in microns from the psf sampling. - - Returns: - psfPixelPos (numpy.array-float): [posx, posy] in mm for [irow, icol] - - Notes: - 1. show positions on ccd, but not position on image only [+/- dy] - """ - psfPixelPos = np.zeros([2, nrows, ncols]) - if nrows % 2 != 0: - sys.exit() - if ncols % 2 != 0: - sys.exit() - - cenPix_row = nrows/2 + 1 #中心主光线对应pixle [由长光定义] - cenPix_col = ncols/2 + 1 - - for irow in range(nrows): - for icol in range(ncols): - delta_row = ((irow + 1) - cenPix_row)*pixSizeInMicrons*1e-3 - delta_col = ((icol + 1) - cenPix_col)*pixSizeInMicrons*1e-3 - psfPixelPos[0, irow, icol] = cenPosCol + delta_col - psfPixelPos[1, irow, icol] = cenPosRow - delta_row #note-1:in CCD全局坐标 - - return psfPixelPos - - -###查找最大pixel位置### -def findMaxPix(img): - """ - get the pixel position of the maximum-value - - Parameters: - img (numpy.array-float): image - - Returns: - imgMaxPix_x, imgMaxPix_y (int, int): pixel position in columns & rows - """ - maxIndx = np.argmax(img) - maxIndx = np.unravel_index(maxIndx, np.array(img).shape) - imgMaxPix_x = maxIndx[1] - imgMaxPix_y = maxIndx[0] - - return imgMaxPix_x, imgMaxPix_y - - -###查找neighbors位置### -def findNeighbors(tx, ty, px, py, dr=0.1, dn=1, OnlyDistance=True): - """ - find nearest neighbors by 2D-KDTree - - Parameters: - tx, ty (float, float): a given position - px, py (numpy.array, numpy.array): position data for tree - dr (float-optional): distance - dn (int-optional): nearest-N - OnlyDistance (bool-optional): only use distance to find neighbors. Default: True - - Returns: - dataq (numpy.array): index - """ - datax = px - datay = py - tree = spatial.KDTree(list(zip(datax.ravel(), datay.ravel()))) - - dataq=[] - rr = dr - if OnlyDistance == True: - dataq = tree.query_ball_point([tx, ty], rr) - if OnlyDistance == False: - while len(dataq) < dn: - dataq = tree.query_ball_point([tx, ty], rr) - rr += dr - dd = np.hypot(datax[dataq]-tx, datay[dataq]-ty) - ddSortindx = np.argsort(dd) - dataq = np.array(dataq)[ddSortindx[0:dn]] - return dataq - -###查找neighbors位置-hoclist### -def hocBuild(partx, party, nhocx, nhocy, dhocx, dhocy): - if np.max(partx) > nhocx*dhocx: - print('ERROR') - sys.exit() - if np.max(party) > nhocy*dhocy: - print('ERROR') - sys.exit() - - npart = partx.size - hoclist= np.zeros(npart, dtype=np.int32)-1 - hoc = np.zeros([nhocy, nhocx], dtype=np.int32)-1 - for ipart in range(npart): - ix = int(partx[ipart]/dhocx) - iy = int(party[ipart]/dhocy) - hoclist[ipart] = hoc[iy, ix] - hoc[iy, ix] = ipart - return hoc, hoclist - -def hocFind(px, py, dhocx, dhocy, hoc, hoclist): - ix = int(px/dhocx) - iy = int(py/dhocy) - - neigh=[] - it = hoc[iy, ix] - while it != -1: - neigh.append(it) - it = hoclist[it] - return neigh - -def findNeighbors_hoclist(px, py, tx=None,ty=None, dn=4, hoc=None, hoclist=None): - nhocy = nhocx = 20 - - pxMin = np.min(px) - pxMax = np.max(px) - pyMin = np.min(py) - pyMax = np.max(py) - - dhocx = (pxMax - pxMin)/(nhocx-1) - dhocy = (pyMax - pyMin)/(nhocy-1) - partx = px - pxMin +dhocx/2 - party = py - pyMin +dhocy/2 - - if hoc is None: - hoc, hoclist = hocBuild(partx, party, nhocx, nhocy, dhocx, dhocy) - return hoc, hoclist - - if hoc is not None: - tx = tx - pxMin +dhocx/2 - ty = ty - pyMin +dhocy/2 - itx = int(tx/dhocx) - ity = int(ty/dhocy) - - ps = [-1, 0, 1] - neigh=[] - for ii in range(3): - for jj in range(3): - ix = itx + ps[ii] - iy = ity + ps[jj] - if ix < 0: - continue - if iy < 0: - continue - if ix > nhocx-1: - continue - if iy > nhocy-1: - continue - - #neightt = myUtil.hocFind(ppx, ppy, dhocx, dhocy, hoc, hoclist) - it = hoc[iy, ix] - while it != -1: - neigh.append(it) - it = hoclist[it] - #neigh.append(neightt) - #ll = [i for k in neigh for i in k] - if dn != -1: - ptx = np.array(partx[neigh]) - pty = np.array(party[neigh]) - dd = np.hypot(ptx-tx, pty-ty) - idx = np.argsort(dd) - neigh= np.array(neigh)[idx[0:dn]] - return neigh - - - -###PSF中心对齐### -def psfCentering(img, apSizeInArcsec=0.5, psfSampleSizeInMicrons=5, focalLengthInMeters=28, CenteringMode=1): - """ - centering psf within an aperture - - Parameters: - img (numpy.array): image - apSizeInArcsec (float-optional): aperture size in arcseconds. - psfSampleSizeInMicrons (float-optional): psf pixel size in microns. - focalLengthInMeters (float-optional): csst focal length im meters. - CenteringMode (int-optional): how to center psf images - - Returns: - imgT (numpy.array) - """ - if CenteringMode == 1: - imgMaxPix_x, imgMaxPix_y = findMaxPix(img) - if CenteringMode == 2: - y,x = ndimage.center_of_mass(img) #y-rows, x-cols - imgMaxPix_x = int(x) - imgMaxPix_y = int(y) - apSizeInMicrons = np.deg2rad(apSizeInArcsec/3600.)*focalLengthInMeters*1e6 - apSizeInPix = apSizeInMicrons/psfSampleSizeInMicrons - apSizeInPix = np.int(np.ceil(apSizeInPix)) - imgT = np.zeros_like(img) - ngy, ngx = img.shape - cy = int(ngy/2) - cx = int(ngx/2) - imgT[cy-apSizeInPix:cy+apSizeInPix+1, - cx-apSizeInPix:cx+apSizeInPix+1] = \ - img[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] - return imgT - - -###插值对齐-fft### -def psfCentering_FFT(image): - """ - centering psf within an aperture by FFT - """ - ny, nx = image.shape - py, px = ndimage.center_of_mass(image) - dx = (px - nx/2) - dy = (py - ny/2) - k=np.zeros((nx,ny,2),dtype=float) - fg=np.fft.fft2(image) - ge =np.zeros_like(fg) - - inx = int(nx/2) - jny = int(ny/2) - #prepare for the phase multiply matrix - #left bottom - for i in range(inx+1): - for j in range(jny+1): - k[i][j][0]=i; - k[i][j][1]=j; - #top right - for i in range(inx-1): - for j in range(jny-1): - k[i+inx+1][j+jny+1][0]=(-(nx/2-1)+i) - k[i+inx+1][j+jny+1][1]=(-(ny/2-1)+j) - #bottom right - for i in range(inx+1): - for j in range(jny-1): - k[i][j+jny+1][0]=i - k[i][j+jny+1][1]=(-(ny/2-1)+j) - #top left - for i in range(inx-1): - for j in range(int(jny+1)): - k[i+inx+1][j][0]=(-(nx/2-1)+i) - k[i+inx+1][j][1]=j - for i in range(nx): - for j in range(ny): - ge[i][j]=fg[i][j]*np.exp(2.*np.pi*(dx*k[i][j][0]/nx+dy*k[i][j][1]/ny)*1j) - get=np.fft.ifft2(ge).real - return(get) - - -###图像叠加### -def psfStack(*psfMat): - """ - stacked image from the different psfs - - Parameters: - *psfMat (numpy.array): the different psfs for stacking - - Returns: - img (numpy.array): image - """ - nn = len(psfMat) - img = np.zeros_like(psfMat[0]) - for ii in range(nn): - img += psfMat[ii]/np.sum(psfMat[ii]) - img /= np.sum(img) - return img - - -###计算PSF椭率-接口### -def psfSizeCalculator(psfMat, psfSampleSize=2.5, CalcPSFcenter=True, SigRange=True, TailorScheme=2, cenPix=None): - """ - calculate psf size & ellipticity - - Parameters: - psfMat (numpy.array): image - psfSampleSize (float-optional): psf size in microns. - CalcPSFcenter (bool-optional): whether calculate psf center. Default: True - SigRange (bool-optional): whether use psf tailor. Default: False - TailorScheme (int-optional): which method for psf tailor. Default: 1 - Returns: - cenX, cenY (float, float): the pixel position of the mass center - sz (float): psf size - e1, e2 (float, float): psf ellipticity - REE80 (float): radius of REE80 in arcseconds - """ - psfSampleSize = psfSampleSize*1e-3 #mm - - REE80 = -1.0 ##encircling 80% energy - if SigRange is True: - if TailorScheme == 1: - psfMat = imSigRange(psfMat, fraction=0.80) - psfInfo['psfMat'] = psfMat #set on/off - if TailorScheme == 2: - #img = psfTailor(psfMat, apSizeInArcsec=0.5) - imgX, REE80 = psfEncircle(psfMat, cenPix=cenPix) - #psfMat = img - REE80 = REE80[0] - - if CalcPSFcenter is True: - img = psfMat/np.sum(psfMat) - y,x = ndimage.center_of_mass(img) #y-rows, x-cols - cenX = x - cenY = y - if CalcPSFcenter is False: - cenPix_X = psfMat.shape[1]/2 #90 - cenPix_Y = psfMat.shape[0]/2 #90 - cenX = cenPix_X + psfInfo['centroid_x']/psfSampleSize - cenY = cenPix_Y - psfInfo['centroid_y']/psfSampleSize - - pixSize = 1 - sz, e1, e2 = psfSecondMoments(psfMat, cenX, cenY, pixSize=pixSize) - - return cenX, cenY, sz, e1, e2, REE80 - - -###计算PSF椭率### -def psfSecondMoments(psfMat, cenX, cenY, pixSize=1): - """ - estimate the psf ellipticity by the second moment of surface brightness - - Parameters: - psfMat (numpy.array-float): image - cenX, cenY (float, float): pixel position of the psf center - pixSize (float-optional): pixel size - - Returns: - sz (float): psf size - e1, e2 (float, float): psf ellipticity - """ - apr = 0.5 #arcsec, 0.5角秒内测量 - fl = 28. #meters - pxs = 5.0 #microns - apr = np.deg2rad(apr/3600.)*fl*1e6 - apr = apr/pxs - apr = np.int(np.ceil(apr)) - - I = psfMat - ncol = I.shape[1] - nrow = I.shape[0] - w = 0.0 - w11 = 0.0 - w12 = 0.0 - w22 = 0.0 - for icol in range(ncol): - for jrow in range(nrow): - x = icol*pixSize - cenX - y = jrow*pixSize - cenY - rr = np.sqrt(x*x + y*y) - wgt= 0.0 - if rr <= apr: - wgt = 1.0 - w += I[jrow, icol]*wgt - w11 += x*x*I[jrow, icol]*wgt - w12 += x*y*I[jrow, icol]*wgt - w22 += y*y*I[jrow, icol]*wgt - w11 /= w - w12 /= w - w22 /= w - sz = w11 + w22 - e1 = (w11 - w22)/sz - e2 = 2.0*w12/sz - - return sz, e1, e2 - - -###计算REE80### -def psfEncircle(img, fraction=0.8, psfSampleSizeInMicrons=2.5, focalLengthInMeters=28, cenPix=None): - """ - psf tailor within a given percentage. - - Parameters: - img (numpy.array-float): image - fraction (float-optional): a percentage for psf tailor. - psfSampleSizeInMicrons (float-optional): psf pixel size in microns. - focalLengthInMeters (float-optional): csst focal length im meters. - Returns: - img*wgt (numpy.array-float): image - REE80 (float): radius of REE80 in arcseconds. - """ - #imgMaxPix_x, imgMaxPix_y = findMaxPix(img) - y,x = ndimage.center_of_mass(img) #y-rows, x-cols - imgMaxPix_x = x #int(x) - imgMaxPix_y = y #int(y) - if cenPix != None: - imgMaxPix_x = cenPix[0] - imgMaxPix_y = cenPix[1] - - im1 = img.copy() - im1size = im1.shape - - dis = np.zeros_like(img) - for irow in range(im1size[0]): - for icol in range(im1size[1]): - dx = icol - imgMaxPix_x - dy = irow - imgMaxPix_y - dis[irow, icol] = np.hypot(dx, dy) - - nn = im1size[1]*im1size[0] - disX = dis.reshape(nn) - disXsortId = np.argsort(disX) - - imgX = img.reshape(nn) - imgY = imgX[disXsortId] - psfFrac = np.cumsum(imgY)/np.sum(imgY) - ind = np.where(psfFrac > fraction)[0][0] - - wgt = np.ones_like(dis) - #wgt[np.where(dis > dis[np.where(img == imgY[ind])])] = 0 - - REE80 = np.rad2deg(dis[np.where(img == imgY[ind])]*psfSampleSizeInMicrons*1e-6/focalLengthInMeters)*3600 - return img*wgt, REE80 - - -###图像能量百分比查找### -def imSigRange(img, fraction=0.80): - """ - extract the image within x-percent (DISCARD) - - Parameters: - img (numpy.array-float): image - fraction (float-optional): a percentage - - Returns: - im1 (numpy.array-float): image - """ - im1 = img.copy() - im1size = im1.shape - im2 = np.sort(im1.reshape(im1size[0]*im1size[1])) - im2 = im2[::-1] - im3 = np.cumsum(im2)/np.sum(im2) - loc = np.where(im3 > fraction) - #print(im3[loc[0][0]], im2[loc[0][0]]) - im1[np.where(im1 <= im2[loc[0][0]])]=0 - - return im1 - - -###孔径内图像裁剪### -def psfTailor(img, apSizeInArcsec=0.5, psfSampleSizeInMicrons=5, focalLengthInMeters=28, cenPix=None): - """ - psf tailor within a given aperture size - - Parameters: - img (numpy.array-float): image - apSizeInArcsec (float-optional): aperture size in arcseconds. - psfSampleSizeInMicrons (float-optional): psf pixel size in microns. - focalLengthInMeters (float-optional): csst focal length im meters. - Returns: - imgT (numpy.array-float): image - """ - #imgMaxPix_x, imgMaxPix_y = findMaxPix(img) - y,x = ndimage.center_of_mass(img) #y-rows, x-cols - imgMaxPix_x = int(x) - imgMaxPix_y = int(y) - if cenPix != None: - imgMaxPix_x = int(cenPix[0]) - imgMaxPix_y = int(cenPix[1]) - - apSizeInMicrons = np.deg2rad(apSizeInArcsec/3600.)*focalLengthInMeters*1e6 - apSizeInPix = apSizeInMicrons/psfSampleSizeInMicrons - apSizeInPix = np.int(np.ceil(apSizeInPix)) - print('apSizeInPix=',apSizeInPix) - imgT = np.zeros_like(img) - imgT[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] = \ - img[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] - return imgT - - -###centroid with a window### -def centroidWgt(img, nt=160): - #libCentroid = ctypes.CDLL('/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF/libCentroid/libCentroid.so') # CDLL加载库 - libCentroid = ctypes.CDLL('/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF_20210108/libCentroid/libCentroid.so') # CDLL加载库 - libCentroid.centroidWgt.argtypes = [ctypes.POINTER(ctypes.c_float), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_double)] - libCentroid.imSplint.argtypes = [ctypes.POINTER(ctypes.c_float), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_double), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_float)] - - imx = img/np.sum(img) - ny, nx = imx.shape - - #imx centroid - nn = nx*ny - arr = (ctypes.c_float*nn)() - arr[:] = imx.reshape(nn) - para = (ctypes.c_double*10)() - libCentroid.centroidWgt(arr, ny, nx, para) - imx_cy = para[3] #irow - imx_cx = para[4] #icol - - #imx -> imy - nxt=nyt=nt - nn=nxt*nyt - yat = (ctypes.c_float*nn)() - libCentroid.imSplint(arr, ny, nx, para, nxt, nyt, yat) - imy = np.array(yat[:]).reshape([nxt, nyt]) - - return imy, imx_cx, imx_cy - -''' -def psfCentering_wgt(ipsfMat, psf_image_x, psf_image_y, psfSampleSizeInMicrons=5.0): - img, cx, cy = centroidWgt(ipsfMat, nt=160) - - nrows, ncols = ipsfMat.shape - cyt = (cy + nrows/2)*psfSampleSizeInMicrons*1e-3 +psf_image_y - cxt = (cx + ncols/2)*psfSampleSizeInMicrons*1e-3 +psf_image_x - return img, cxt, cyt -''' - - - - -###binning image### -def binningPSF(img, ngg): - imgX = img.reshape(ngg, img.shape[0]//ngg, ngg, img.shape[1]//ngg).mean(-1).mean(1) - return imgX - - - - - diff --git a/ObservationSim/PSF/PSFInterp/__init__.py b/ObservationSim/PSF/PSFInterp/__init__.py deleted file mode 100644 index b04c4579476d6210d6071fd1fa8fc5c5a87bb886..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from .PSFInterp import PSFInterp \ No newline at end of file diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/Makefile b/ObservationSim/PSF/PSFInterp/libCentroid/Makefile deleted file mode 100644 index b323bdc6a1e10c0ba2bc2e4ddd1731d2c65b79fe..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -#OPTS += -D - -CC = gcc -OPTIMIZE = -fPIC -g -O3 #-Wall -wd981 #-wd1419 -wd810 -#GSLI = -I/home/alex/opt/gsl/include -#GSLL = -L/home/alex/opt/gsl/lib -lgsl -lgslcblas -#FFTWI = -I/home/alex/opt/fftw/include -#FFTWL = -L/home/alex/opt/fftw/lib -lfftw3 -lfftw3f -#HDF5I = -I/home/alex/opt/hdf5/include -#HDF5L = -L/home/alex/opt/hdf5/lib -lhdf5_hl -lhdf5 -#FITSI = -I/home/alex/opt/cfitsio/include -#FITSL = -L/home/alex/opt/cfitsio/lib -lcfitsio -#EXTRACFLAGS = -#EXTRACLIB = - -CLINK=$(CC) -CFLAGS=$(OPTIMIZE) #$(EXTRACFLAGS) $(OPTS) -CLIB= -shared -lm #$(EXTRACLIB) - -OBJS = centroidWgt.o nrutil.o - -EXEC = libCentroid.so -all: $(EXEC) - -$(EXEC): $(OBJS) - $(CLINK) $(CFLAGS) -o $@ $(OBJS) $(CLIB) - -$(OBJS): nrutil.h Makefile - -.PHONY : clean -clean: - rm -f *.o $(EXEC) diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/centroidWgt.c b/ObservationSim/PSF/PSFInterp/libCentroid/centroidWgt.c deleted file mode 100644 index a5d945d5800cf076508737248434bef607efdee3..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/centroidWgt.c +++ /dev/null @@ -1,315 +0,0 @@ -#include -#include -#include -#include "nrutil.h" - -//y is the input image, nx and ny are the pixels along x and y axis; -//yt and residu are the required matrix for the function -//para contains the needed parameters: centx=para[3], centy=para[4] - - -void star_gaus(float **y,int nx,int ny,double *para); - -void Interp_bicubic(int nx,int ny,float **a0,int nbound, int nxt,int nyt, float **at,double *xcen); -void splie2(float **ya, int m, int n, float **y2a); -void spline(float y[], int n, float yp1, float ypn, float y2[]); -void splint(float ya[], float y2a[], int n, float x, float *y); - - -void centroidWgt(float *y, int nx, int ny, double *para) -{ - int i, j, k; - float **yy; - double **basef; - double **coff; - double ccol, crow; - - yy = matrix(0, nx-1, 0, ny-1); - for(i=0; iy[i])ymin=y[i]; - - } - kc=ymax;kd=ymax/12.; - det=ysigma=kc*exp(-0.5); - for(i=0;i0){ - for(j=-4;j<=4;j++){ - sigma=sigmac+j*sigmad; - if(sigma>0){ - sigma2v=-1./(2.*sigma*sigma); - for(p=-4;p<=4;p++){ - xt=xc+p*xd; - for(q=-4;q<=4;q++){ - yt=yc+q*yd; - k2=0; - if(fbg==0){ - bg=bg0; - for(m=0;m -//#include -//#include -//#include "nrutil.h" -//nx,ny is the pixels of x and y direction -//a0 is the input image in nx*ny -//nbound is the boundary limit -//nxt,nyt is out put image dimentions -//at is the output image and cen represent the required center -void Interp_bicubic(int nx,int ny,float **a0,int nbound, - int nxt,int nyt, float **at,double *xcen) -{ - - void splie2(float **ya, int m, int n, float **y2a); - void spline(float y[], int n, float yp1, float ypn, float y2[]); - void splint(float ya[], float y2a[], int n, float x, float *y); - int i,j,m,n,ic,jc; - float *ytmp,*yytmp,**y2a,x1,x2,shift1,shift2; - y2a=matrix(0,nx,0,ny); - ytmp=vector(0,ny); - yytmp=vector(0,ny); - splie2(a0,nx,ny,y2a); - ic=nx*0.5; - jc=ny*0.5; - shift1=xcen[0]-ic;//-0.5; - shift2=xcen[1]-jc;//-0.5; - if(fabs(shift1)>nbound || fabs(shift2)>nbound){ - printf("bicubic shifts too much %e %e\n",shift1,shift2); - getchar(); - } - for (n=0;n 0.99e30) - y2[0]=u[0]=0.0; - else { - y2[0] = -0.5; - u[0]=3.0*(y[1]-y[0]-yp1); - } - sig=0.5; - for (i=1;i<=n-2;i++) { - p=sig*y2[i-1]+2.0; - y2[i]=(sig-1.0)/p; - u[i]=(y[i+1]-2.*y[i]+y[i-1]); - u[i]=(3.0*u[i]-sig*u[i-1])/p; - } - if (ypn > 0.99e30) - qn=un=0.0; - else { - qn=0.5; - un=3.0*(ypn-y[n-1]+y[n-2]); - } - y2[n-1]=(un-qn*u[n-2])/(qn*y2[n-2]+1.0); - for (k=n-2;k>=0;k--)y2[k]=y2[k]*y2[k+1]+u[k]; - free_vector(u,0,n-1); -} -void splint(float ya[], float y2a[], int n, float x, float *y) -{ - void nrerror(char error_text[]); - int klo,khi,k; - float h,b,a; - - klo=x; -if( klo<0)klo=0; -if(klo==n-1)klo=n-2; - khi=klo+1; - if (klo<0 || khi>=n) printf("error:klo, khi, n: %d %d %d\n", klo, khi, n); - if (klo<0 || khi>=n) nrerror("Bad xa input to routine splint"); - a=(khi-x); - b=(x-klo); - *y=a*ya[klo]+b*ya[khi]+((a*a*a-a)*y2a[klo]+(b*b*b-b)*y2a[khi])/6.0; -} - - diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/centroidWgt.o b/ObservationSim/PSF/PSFInterp/libCentroid/centroidWgt.o deleted file mode 100644 index 9156c21cc36e739703d4679de798e49a0c1aa8e2..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/libCentroid/centroidWgt.o and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/libCentroid.so b/ObservationSim/PSF/PSFInterp/libCentroid/libCentroid.so deleted file mode 100755 index da556d869d7497f73a94d474fda2447830b27e94..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/libCentroid/libCentroid.so and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/nrutil.c b/ObservationSim/PSF/PSFInterp/libCentroid/nrutil.c deleted file mode 100644 index 05bcdeca46be8371d77ccd36c0c6b7ae4242baae..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/nrutil.c +++ /dev/null @@ -1,769 +0,0 @@ -#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */ - -#include -#include -#include -#define NR_END 1 -#define FREE_ARG char* - -void nrerror(char error_text[]) -/* Numerical Recipes standard error handler */ -{ - fprintf(stderr,"Numerical Recipes run-time error...\n"); - fprintf(stderr,"%s\n",error_text); - fprintf(stderr,"...now exiting to system...\n"); - exit(1); -} - -float *vector(long nl, long nh) -/* allocate a float vector with subscript range v[nl..nh] */ -{ - float *v; - - v=(float *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(float))); - if (!v) nrerror("allocation failure in vector()"); - return v-nl+NR_END; -} - -int *ivector(long nl, long nh) -/* allocate an int vector with subscript range v[nl..nh] */ -{ - int *v; - - v=(int *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(int))); - if (!v) nrerror("allocation failure in ivector()"); - return v-nl+NR_END; -} - -unsigned char *cvector(long nl, long nh) -/* allocate an unsigned char vector with subscript range v[nl..nh] */ -{ - unsigned char *v; - - v=(unsigned char *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(unsigned char))); - if (!v) nrerror("allocation failure in cvector()"); - return v-nl+NR_END; -} - -unsigned long *lvector(long nl, long nh) -/* allocate an unsigned long vector with subscript range v[nl..nh] */ -{ - unsigned long *v; - - v=(unsigned long *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(long))); - if (!v) nrerror("allocation failure in lvector()"); - return v-nl+NR_END; -} - -double *dvector(long nl, long nh) -/* allocate a double vector with subscript range v[nl..nh] */ -{ - double *v; - - v=(double *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(double))); - if (!v) nrerror("allocation failure in dvector()"); - return v-nl+NR_END; -} - -float **matrix(long nrl, long nrh, long ncl, long nch) -/* allocate a float matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((size_t)((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(float *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(float))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -double **dmatrix(long nrl, long nrh, long ncl, long nch) -/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - double **m; - - /* allocate pointers to rows */ - m=(double **) malloc((size_t)((nrow+NR_END)*sizeof(double*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(double *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(double))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -int **imatrix(long nrl, long nrh, long ncl, long nch) -/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - int **m; - - /* allocate pointers to rows */ - m=(int **) malloc((size_t)((nrow+NR_END)*sizeof(int*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - - /* allocate rows and set pointers to them */ - m[nrl]=(int *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(int))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch, - long newrl, long newcl) -/* point a submatrix [newrl..][newcl..] to a[oldrl..oldrh][oldcl..oldch] */ -{ - long i,j,nrow=oldrh-oldrl+1,ncol=oldcl-newcl; - float **m; - - /* allocate array of pointers to rows */ - m=(float **) malloc((size_t) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in submatrix()"); - m += NR_END; - m -= newrl; - - /* set pointers to rows */ - for(i=oldrl,j=newrl;i<=oldrh;i++,j++) m[j]=a[i]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch) -/* allocate a float matrix m[nrl..nrh][ncl..nch] that points to the matrix -declared in the standard C manner as a[nrow][ncol], where nrow=nrh-nrl+1 -and ncol=nch-ncl+1. The routine should be called with the address -&a[0][0] as the first argument. */ -{ - long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((size_t) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in convert_matrix()"); - m += NR_END; - m -= nrl; - - /* set pointers to rows */ - m[nrl]=a-ncl; - for(i=1,j=nrl+1;i -#define NR_END 1 -#define FREE_ARG char* - -void nrerror(error_text) -char error_text[]; -/* Numerical Recipes standard error handler */ -{ - void exit(); - - fprintf(stderr,"Numerical Recipes run-time error...\n"); - fprintf(stderr,"%s\n",error_text); - fprintf(stderr,"...now exiting to system...\n"); - exit(1); -} - -float *vector(nl,nh) -long nh,nl; -/* allocate a float vector with subscript range v[nl..nh] */ -{ - float *v; - - v=(float *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(float))); - if (!v) nrerror("allocation failure in vector()"); - return v-nl+NR_END; -} - -int *ivector(nl,nh) -long nh,nl; -/* allocate an int vector with subscript range v[nl..nh] */ -{ - int *v; - - v=(int *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(int))); - if (!v) nrerror("allocation failure in ivector()"); - return v-nl+NR_END; -} - -unsigned char *cvector(nl,nh) -long nh,nl; -/* allocate an unsigned char vector with subscript range v[nl..nh] */ -{ - unsigned char *v; - - v=(unsigned char *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(unsigned char))); - if (!v) nrerror("allocation failure in cvector()"); - return v-nl+NR_END; -} - -unsigned long *lvector(nl,nh) -long nh,nl; -/* allocate an unsigned long vector with subscript range v[nl..nh] */ -{ - unsigned long *v; - - v=(unsigned long *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(long))); - if (!v) nrerror("allocation failure in lvector()"); - return v-nl+NR_END; -} - -double *dvector(nl,nh) -long nh,nl; -/* allocate a double vector with subscript range v[nl..nh] */ -{ - double *v; - - v=(double *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(double))); - if (!v) nrerror("allocation failure in dvector()"); - return v-nl+NR_END; -} - -float **matrix(nrl,nrh,ncl,nch) -long nch,ncl,nrh,nrl; -/* allocate a float matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((unsigned int)((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(float *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(float))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -double **dmatrix(nrl,nrh,ncl,nch) -long nch,ncl,nrh,nrl; -/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - double **m; - - /* allocate pointers to rows */ - m=(double **) malloc((unsigned int)((nrow+NR_END)*sizeof(double*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(double *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(double))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -int **imatrix(nrl,nrh,ncl,nch) -long nch,ncl,nrh,nrl; -/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - int **m; - - /* allocate pointers to rows */ - m=(int **) malloc((unsigned int)((nrow+NR_END)*sizeof(int*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - - /* allocate rows and set pointers to them */ - m[nrl]=(int *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(int))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **submatrix(a,oldrl,oldrh,oldcl,oldch,newrl,newcl) -float **a; -long newcl,newrl,oldch,oldcl,oldrh,oldrl; -/* point a submatrix [newrl..][newcl..] to a[oldrl..oldrh][oldcl..oldch] */ -{ - long i,j,nrow=oldrh-oldrl+1,ncol=oldcl-newcl; - float **m; - - /* allocate array of pointers to rows */ - m=(float **) malloc((unsigned int) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in submatrix()"); - m += NR_END; - m -= newrl; - - /* set pointers to rows */ - for(i=oldrl,j=newrl;i<=oldrh;i++,j++) m[j]=a[i]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **convert_matrix(a,nrl,nrh,ncl,nch) -float *a; -long nch,ncl,nrh,nrl; -/* allocate a float matrix m[nrl..nrh][ncl..nch] that points to the matrix -declared in the standard C manner as a[nrow][ncol], where nrow=nrh-nrl+1 -and ncol=nch-ncl+1. The routine should be called with the address -&a[0][0] as the first argument. */ -{ - long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((unsigned int) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in convert_matrix()"); - m += NR_END; - m -= nrl; - - /* set pointers to rows */ - m[nrl]=a-ncl; - for(i=1,j=nrl+1;i (dmaxarg2) ?\ - (dmaxarg1) : (dmaxarg2)) - -static double dminarg1,dminarg2; -#define DMIN(a,b) (dminarg1=(a),dminarg2=(b),(dminarg1) < (dminarg2) ?\ - (dminarg1) : (dminarg2)) - -static float maxarg1,maxarg2; -#define FMAX(a,b) (maxarg1=(a),maxarg2=(b),(maxarg1) > (maxarg2) ?\ - (maxarg1) : (maxarg2)) - -static float minarg1,minarg2; -#define FMIN(a,b) (minarg1=(a),minarg2=(b),(minarg1) < (minarg2) ?\ - (minarg1) : (minarg2)) - -static long lmaxarg1,lmaxarg2; -#define LMAX(a,b) (lmaxarg1=(a),lmaxarg2=(b),(lmaxarg1) > (lmaxarg2) ?\ - (lmaxarg1) : (lmaxarg2)) - -static long lminarg1,lminarg2; -#define LMIN(a,b) (lminarg1=(a),lminarg2=(b),(lminarg1) < (lminarg2) ?\ - (lminarg1) : (lminarg2)) - -static int imaxarg1,imaxarg2; -#define IMAX(a,b) (imaxarg1=(a),imaxarg2=(b),(imaxarg1) > (imaxarg2) ?\ - (imaxarg1) : (imaxarg2)) - -static int iminarg1,iminarg2; -#define IMIN(a,b) (iminarg1=(a),iminarg2=(b),(iminarg1) < (iminarg2) ?\ - (iminarg1) : (iminarg2)) - -#define SIGN(a,b) ((b) >= 0.0 ? fabs(a) : -fabs(a)) - -void nrerror(char error_text[]); -float *vector(long nl, long nh); -int *ivector(long nl, long nh); -unsigned char *cvector(long nl, long nh); -unsigned long *lvector(long nl, long nh); -double *dvector(long nl, long nh); -float **matrix(long nrl, long nrh, long ncl, long nch); -double **dmatrix(long nrl, long nrh, long ncl, long nch); -int **imatrix(long nrl, long nrh, long ncl, long nch); -float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch, - long newrl, long newcl); -float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch); -float ***f3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_vector(float *v, long nl, long nh); -void free_ivector(int *v, long nl, long nh); -void free_cvector(unsigned char *v, long nl, long nh); -void free_lvector(unsigned long *v, long nl, long nh); -void free_dvector(double *v, long nl, long nh); -void free_matrix(float **m, long nrl, long nrh, long ncl, long nch); -void free_dmatrix(double **m, long nrl, long nrh, long ncl, long nch); -void free_imatrix(int **m, long nrl, long nrh, long ncl, long nch); -void free_submatrix(float **b, long nrl, long nrh, long ncl, long nch); -void free_convert_matrix(float **b, long nrl, long nrh, long ncl, long nch); -void free_f3tensor(float ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - - -int ***i3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_i3tensor(int ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - -unsigned char ***b3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_b3tensor(unsigned char ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - - - -double ***d3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_d3tensor(double ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - - - - - - - - -unsigned char **cmatrix(long nrl, long nrh, long ncl, long nch); -void free_cmatrix(unsigned char **m, long nrl, long nrh, long ncl, long nch); - - -#endif /* _NR_UTILS_H_ */ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/nrutil.o b/ObservationSim/PSF/PSFInterp/libCentroid/nrutil.o deleted file mode 100644 index aa89368dca2e053dcc7ca8623700539ce5d7cebc..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/libCentroid/nrutil.o and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/testGaussian.py b/ObservationSim/PSF/PSFInterp/libCentroid/test/testGaussian.py deleted file mode 100644 index ae5e4f7135aa71f84ce2f80118375b5e1224d5ec..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/test/testGaussian.py +++ /dev/null @@ -1,66 +0,0 @@ -import numpy as np -import matplotlib.pyplot as plt -import ctypes -import galsim - - -libCentroid = ctypes.CDLL('../libCentroid.so') # CDLL加载库 -print('load libCenroid') - - -libCentroid.centroidWgt.argtypes = [ctypes.POINTER(ctypes.c_float), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_double)] - - -IMAGE_WIDTH = 180 -IMAGE_HEIGHT = 180 -dx = 0.275 -dy =-0.393 -center_x = 90+dx -center_y = 90+dy - -R = np.sqrt(center_x**2 + center_y**2) -Gauss_map = np.zeros((IMAGE_HEIGHT, IMAGE_WIDTH)) -for i in range(IMAGE_HEIGHT): - for j in range(IMAGE_WIDTH): - dis = (i-center_y)**2+(j-center_x)**2 - Gauss_map[i, j] = np.exp(-0.5*dis/R) - - -ymap = galsim.InterpolatedImage(galsim.ImageF(Gauss_map), scale=0.01) -zmap = ymap#.shear(g1 = 0.15, g2=0.27) #using shear -Gauss_map = zmap.drawImage(nx = 180, ny = 180, scale=0.01).array - - -fig=plt.figure(figsize=(5,5)) -plt.imshow(Gauss_map, origin='lower') -imx = Gauss_map/np.sum(Gauss_map) -ny,nx = imx.shape -print(nx, ny, np.max(imx)) - -nn = nx*ny -arr = (ctypes.c_float*nn)() -arr[:] = imx.reshape(nn) -para = (ctypes.c_double*10)() -libCentroid.centroidWgt(arr, ny, nx, para) - - -print('haha') -print(para[0:5]) -cx = para[3] -cy = para[4] -print('{:}'.format(cx), '{:}'.format(cy)) - -from scipy import ndimage -cx, cy = ndimage.center_of_mass(imx) -print('center_of_mass:', cx, cy) - -plt.plot(para[4], para[3], 'bx', ms = 15) -plt.plot(cy, cx, 'r+', ms = 15) -plt.annotate('dx,dy:', [10, 170], color='w') -plt.annotate('{:8.5}, {:8.5}'.format(dx, dy), [10, 160], color='w') -plt.annotate('cx, cy:', [10, 150], color='w') -plt.annotate('{:0<8.5}, {:0<8.5}'.format(center_x, center_y), [10, 140], color='w') -plt.annotate('{:0<8.5}, {:0<8.5}'.format(para[4], para[3]), [10, 130], color='w') -plt.annotate('{:0<8.5}, {:0<8.5}'.format(cy, cx), [10, 120], color='w') - -plt.show() diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/testPSFcentroid.py b/ObservationSim/PSF/PSFInterp/libCentroid/test/testPSFcentroid.py deleted file mode 100644 index f8f8ee8b38836f79a905aacb94ac27a545e8f3d3..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/test/testPSFcentroid.py +++ /dev/null @@ -1,98 +0,0 @@ -import numpy as np -import matplotlib.pyplot as plt -import ctypes -import galsim - -libCentroid = ctypes.CDLL('../libCentroid.so') # CDLL加载库 -print('load libCenroid') - -libCentroid.centroidWgt.argtypes = [ctypes.POINTER(ctypes.c_float), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_double)] -libCentroid.imSplint.argtypes = [ctypes.POINTER(ctypes.c_float), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_double), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_float)] - - -from scipy.io import loadmat -data = loadmat('/Users/chengliangwei/csstPSFdata/CSSOS_psf_ciomp/ccd20/wave_1/5_psf_array/psf_10.mat') -imx = data['psf'] -imx = imx/np.sum(imx) -ny,nx = imx.shape -print(nx, ny) - -#imx centroid -nn = nx*ny -arr = (ctypes.c_float*nn)() -arr[:] = imx.reshape(nn) -para = (ctypes.c_double*10)() -libCentroid.centroidWgt(arr, ny, nx, para) -imx_cx = para[3] -imx_cy = para[4] - -#imx -> imy -nxt=nyt=160 -nn=nxt*nyt -yat = (ctypes.c_float*nn)() -libCentroid.imSplint(arr, ny, nx, para, nxt, nyt, yat) -imy = np.array(yat[:]).reshape([nxt, nyt]) - -#imy centroid -libCentroid.centroidWgt(yat, nyt, nxt, para) -imy_cx = para[3] -imy_cy = para[4] - - -#plot check -fig = plt.figure(figsize=(12, 6)) - -##imx_plot -ax = plt.subplot(1,2,1) -cpix= int(nx/2) -dpix= 10 -plt.imshow(imx[cpix-dpix:cpix+dpix, cpix-dpix:cpix+dpix], origin='lower') -plt.plot(imx_cy-cpix+dpix, imx_cx-cpix+dpix, 'bx', ms = 20) - -from scipy import ndimage -cx, cy = ndimage.center_of_mass(imx) -plt.plot(cy-cpix+dpix, cx-cpix+dpix, 'r+', ms = 20) - -maxIndx = np.argmax(imx) -maxIndx = np.unravel_index(maxIndx, np.array(imx).shape) -imgMaxPix_x = maxIndx[1] -imgMaxPix_y = maxIndx[0] -apSizeInPix = 23 -imgT = np.zeros_like(imx) -imgT[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] = \ - imx[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] -cx, cy = ndimage.center_of_mass(imgT) -plt.plot(cy - cpix+dpix, cx - cpix+dpix, 'b+', ms = 15) - -##imy_plot -ax = plt.subplot(1,2,2) -cpix= int(nxt/2) -dpix= 10 -plt.imshow(imy[cpix-dpix:cpix+dpix, cpix-dpix:cpix+dpix], origin='lower') -plt.plot(imy_cy-cpix+dpix, imy_cx-cpix+dpix, 'bx', ms = 20) -plt.plot([dpix, dpix],[0,dpix],'w:') -plt.plot([0, dpix],[dpix,dpix],'w:') - -cx, cy = ndimage.center_of_mass(imy) -plt.plot(cy-cpix+dpix, cx-cpix+dpix, 'r+', ms = 20) - -maxIndx = np.argmax(imy) -maxIndx = np.unravel_index(maxIndx, np.array(imy).shape) -imgMaxPix_x = maxIndx[1] -imgMaxPix_y = maxIndx[0] -apSizeInPix = 23 -imgT = np.zeros_like(imy) -imgT[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] = \ - imy[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] -cx, cy = ndimage.center_of_mass(imgT) -plt.plot(cy - cpix+dpix, cx - cpix+dpix, 'b+', ms = 15) - - - - - -plt.show() diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/tt.py b/ObservationSim/PSF/PSFInterp/libCentroid/test/tt.py deleted file mode 100644 index 801d87dd6823791bd8013c18fefb23c785802bfa..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/test/tt.py +++ /dev/null @@ -1,137 +0,0 @@ -import numpy as np -import matplotlib.pyplot as plt -import ctypes -import galsim - -libCentroid = ctypes.CDLL('../libCentroid.so') # CDLL加载库 -print('load libCenroid') - - -libCentroid.centroidWgt.argtypes = [ctypes.POINTER(ctypes.c_float), ctypes.c_int, ctypes.c_int, ctypes.POINTER(ctypes.c_double)] - -''' -IMAGE_WIDTH = 180 -IMAGE_HEIGHT = 180 -dx = 0.#275 -dy =-0.#393 -center_x = 90 +dx #89.5 #IMAGE_WIDTH/2 -0. -center_y = 90 +dy #89.5 #IMAGE_HEIGHT/2+0. - -R = np.sqrt(center_x**2 + center_y**2) -Gauss_map = np.zeros((IMAGE_HEIGHT, IMAGE_WIDTH)) -for i in range(IMAGE_HEIGHT): - for j in range(IMAGE_WIDTH): - dis = (i-center_y)**2+(j-center_x)**2 - Gauss_map[i, j] = np.exp(-0.5*dis/R) - -ymap = galsim.InterpolatedImage(galsim.ImageF(Gauss_map), scale=0.01) -zmap = ymap.shear(g1 = 0.15, g2=0.27) -Gauss_map = zmap.drawImage(nx = 180, ny = 180, scale=0.01).array - - -fig=plt.figure(figsize=(5,5)) -plt.imshow(Gauss_map, origin='lower') -imx = Gauss_map#/np.sum(Gauss_map) -ny,nx = imx.shape -print(nx, ny, np.max(imx)) -nn = nx*ny -arr = (ctypes.c_float*nn)() -arr[:] = imx.reshape(nn) -para = (ctypes.c_double*10)() -libCentroid.centroidWgt(arr, ny, nx, para) - -print('haha') -print(para[0:5]) -cx = para[3] -cy = para[4] -print('{:}'.format(cx), '{:}'.format(cy)) - -from scipy import ndimage -cx, cy = ndimage.center_of_mass(imx) -print('center_of_mass:', cx, cy) -plt.plot(para[4], para[3], 'bx', ms = 15) -plt.plot(cy, cx, 'r+', ms = 15) -plt.annotate('dx,dy:', [10, 170], color='w') -plt.annotate('{:8.5}, {:8.5}'.format(dx, dy), [10, 160], color='w') -plt.annotate('cx, cy:', [10, 150], color='w') -plt.annotate('{:0<8.5}, {:0<8.5}'.format(center_x, center_y), [10, 140], color='w') -plt.annotate('{:0<8.5}, {:0<8.5}'.format(para[4], para[3]), [10, 130], color='w') -plt.annotate('{:0<8.5}, {:0<8.5}'.format(cy, cx), [10, 120], color='w') - - -''' -from scipy.io import loadmat -data = loadmat('/Users/chengliangwei/csstPSFdata/CSSOS_psf_ciomp/ccd13/wave_1/5_psf_array/psf_10.mat') -#plt.imshow(data['psf']) -#plt.show() -imx = data['psf'] -imx = imx/np.sum(imx) -ny,nx = imx.shape -print(nx, ny) -nn = nx*ny -arr = (ctypes.c_float*nn)() -arr[:] = imx.reshape(nn) -para = (ctypes.c_double*10)() -print(arr[0:10]) -#libCentroid.centroidWgt(arr, ny, nx, para) -nxt = nyt = 160 -nn = nxt*nyt -yat = (ctypes.c_float*nn)() -libCentroid.centroidWgt(arr, ny, nx, para,nxt, nyt, yat) -mm = np.array(yat[:]).reshape([nxt, nyt]) -imx = mm - -print('haha') -print(para[0:5]) -cx = para[3] -cy = para[4] -print(cx, cy) - -fig = plt.figure(figsize=(12, 12)) -cpix = 80 -dpix = 10 -#plt.imshow(np.log10(imx[cpix-dpix:cpix+dpix, cpix-dpix:cpix+dpix]), origin='lower') -plt.imshow(imx[cpix-dpix:cpix+dpix, cpix-dpix:cpix+dpix], origin='lower') -plt.plot(cy - cpix+dpix, cx - cpix+dpix, 'bx', ms = 20) -''' -from scipy import ndimage -cx, cy = ndimage.center_of_mass(imx) -print(cx, cy) -plt.plot(cy - cpix+dpix, cx - cpix+dpix, 'r+', ms = 20) - -maxIndx = np.argmax(imx) -maxIndx = np.unravel_index(maxIndx, np.array(imx).shape) -imgMaxPix_x = maxIndx[1] -imgMaxPix_y = maxIndx[0] -apSizeInPix = 23 -imgT = np.zeros_like(imx) -imgT[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] = \ - imx[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] -cx, cy = ndimage.center_of_mass(imgT) -print(cx, cy) -plt.plot(cy - cpix+dpix, cx - cpix+dpix, 'b+', ms = 15) - - - -maxIndx = np.argmax(imx) -maxIndx = np.unravel_index(maxIndx, np.array(imx).shape) -imgMaxPix_x = maxIndx[1] -imgMaxPix_y = maxIndx[0] -apSizeInPix =5 -imgT = np.zeros_like(imx) -imgT[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] = \ - imx[imgMaxPix_y-apSizeInPix:imgMaxPix_y+apSizeInPix+1, - imgMaxPix_x-apSizeInPix:imgMaxPix_x+apSizeInPix+1] -cx, cy = ndimage.center_of_mass(imgT) -print(cx, cy) -plt.plot(cy - cpix+dpix, cx - cpix+dpix, 'm+', ms = 10) - - - -print('maxPix:', imgMaxPix_x, imgMaxPix_y, imx[imgMaxPix_y, imgMaxPix_x]) -''' - -plt.show() diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/Makefile b/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/Makefile deleted file mode 100644 index fa01070e4e09795a7bc81ec38e54d18ad53e30b1..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -#OPTS += -D - -CC = gcc -OPTIMIZE = -fPIC -g -O3 #-Wall -wd981 #-wd1419 -wd810 -#GSLI = -I/home/alex/opt/gsl/include -#GSLL = -L/home/alex/opt/gsl/lib -lgsl -lgslcblas -#FFTWI = -I/home/alex/opt/fftw/include -#FFTWL = -L/home/alex/opt/fftw/lib -lfftw3 -lfftw3f -#HDF5I = -I/home/alex/opt/hdf5/include -#HDF5L = -L/home/alex/opt/hdf5/lib -lhdf5_hl -lhdf5 -#FITSI = -I/home/alex/opt/cfitsio/include -#FITSL = -L/home/alex/opt/cfitsio/lib -lcfitsio -#EXTRACFLAGS = -#EXTRACLIB = - -CLINK=$(CC) -CFLAGS=$(OPTIMIZE) #$(EXTRACFLAGS) $(OPTS) -CLIB= -lm #$(EXTRACLIB) - -OBJS = centroidWgt.o nrutil.o - -EXEC = centroid.X -all: $(EXEC) - -$(EXEC): $(OBJS) - $(CLINK) $(CFLAGS) -o $@ $(OBJS) $(CLIB) - -$(OBJS): nrutil.h Makefile - -.PHONY : clean -clean: - rm -f *.o $(EXEC) diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/centroid.X b/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/centroid.X deleted file mode 100755 index 36aeb8ee4e74eb57994d9b900a2aa50eb3cea4e3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/centroid.X and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/centroidWgt.c b/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/centroidWgt.c deleted file mode 100644 index 6c4a0d50d8a9688127299bd14fe6fe1680589e5a..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/centroidWgt.c +++ /dev/null @@ -1,212 +0,0 @@ -#include -#include -#include -#include "nrutil.h" - -//y is the input image, nx and ny are the pixels along x and y axis; -//yt and residu are the required matrix for the function -//para contains the needed parameters: centx=para[3], centy=para[4] - - -void star_gaus(float **y,int nx,int ny,double *para); - -void main() -{ - int i, j; - int IMAGE_WIDTH, IMAGE_HEIGHT; - float center_x, center_y; - float R, dis; - float **Gauss_map; - double *para; - //double para[10]; - - IMAGE_WIDTH = 180; - IMAGE_HEIGHT = 180; - center_x = IMAGE_WIDTH/2 -0.; - center_y = IMAGE_HEIGHT/2+0.; - - R = sqrt(center_x*center_x + center_y*center_y); - //Gauss_map = np.zeros((IMAGE_HEIGHT, IMAGE_WIDTH)) - Gauss_map = matrix(0, IMAGE_HEIGHT-1, 0, IMAGE_WIDTH-1); - para = dvector(0,10); - - for(i=0; iy[i])ymin=y[i]; - - } - //printf("ymax=%e,imax=%d\n",ymax,imax); - kc=ymax;kd=ymax/12.; - det=ysigma=kc*exp(-0.5);//printf("det=%e,kc=%e\n",det,kc); - for(i=0;i0){ - for(j=-4;j<=4;j++){ - sigma=sigmac+j*sigmad; - if(sigma>0){ - sigma2v=-1./(2.*sigma*sigma); - for(p=-4;p<=4;p++){ - xt=xc+p*xd; - for(q=-4;q<=4;q++){ - yt=yc+q*yd; - k2=0; - if(fbg==0){ - bg=bg0; - for(m=0;m -#include -#include -#define NR_END 1 -#define FREE_ARG char* - -void nrerror(char error_text[]) -/* Numerical Recipes standard error handler */ -{ - fprintf(stderr,"Numerical Recipes run-time error...\n"); - fprintf(stderr,"%s\n",error_text); - fprintf(stderr,"...now exiting to system...\n"); - exit(1); -} - -float *vector(long nl, long nh) -/* allocate a float vector with subscript range v[nl..nh] */ -{ - float *v; - - v=(float *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(float))); - if (!v) nrerror("allocation failure in vector()"); - return v-nl+NR_END; -} - -int *ivector(long nl, long nh) -/* allocate an int vector with subscript range v[nl..nh] */ -{ - int *v; - - v=(int *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(int))); - if (!v) nrerror("allocation failure in ivector()"); - return v-nl+NR_END; -} - -unsigned char *cvector(long nl, long nh) -/* allocate an unsigned char vector with subscript range v[nl..nh] */ -{ - unsigned char *v; - - v=(unsigned char *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(unsigned char))); - if (!v) nrerror("allocation failure in cvector()"); - return v-nl+NR_END; -} - -unsigned long *lvector(long nl, long nh) -/* allocate an unsigned long vector with subscript range v[nl..nh] */ -{ - unsigned long *v; - - v=(unsigned long *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(long))); - if (!v) nrerror("allocation failure in lvector()"); - return v-nl+NR_END; -} - -double *dvector(long nl, long nh) -/* allocate a double vector with subscript range v[nl..nh] */ -{ - double *v; - - v=(double *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(double))); - if (!v) nrerror("allocation failure in dvector()"); - return v-nl+NR_END; -} - -float **matrix(long nrl, long nrh, long ncl, long nch) -/* allocate a float matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((size_t)((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(float *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(float))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -double **dmatrix(long nrl, long nrh, long ncl, long nch) -/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - double **m; - - /* allocate pointers to rows */ - m=(double **) malloc((size_t)((nrow+NR_END)*sizeof(double*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(double *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(double))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -int **imatrix(long nrl, long nrh, long ncl, long nch) -/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - int **m; - - /* allocate pointers to rows */ - m=(int **) malloc((size_t)((nrow+NR_END)*sizeof(int*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - - /* allocate rows and set pointers to them */ - m[nrl]=(int *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(int))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch, - long newrl, long newcl) -/* point a submatrix [newrl..][newcl..] to a[oldrl..oldrh][oldcl..oldch] */ -{ - long i,j,nrow=oldrh-oldrl+1,ncol=oldcl-newcl; - float **m; - - /* allocate array of pointers to rows */ - m=(float **) malloc((size_t) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in submatrix()"); - m += NR_END; - m -= newrl; - - /* set pointers to rows */ - for(i=oldrl,j=newrl;i<=oldrh;i++,j++) m[j]=a[i]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch) -/* allocate a float matrix m[nrl..nrh][ncl..nch] that points to the matrix -declared in the standard C manner as a[nrow][ncol], where nrow=nrh-nrl+1 -and ncol=nch-ncl+1. The routine should be called with the address -&a[0][0] as the first argument. */ -{ - long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((size_t) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in convert_matrix()"); - m += NR_END; - m -= nrl; - - /* set pointers to rows */ - m[nrl]=a-ncl; - for(i=1,j=nrl+1;i -#define NR_END 1 -#define FREE_ARG char* - -void nrerror(error_text) -char error_text[]; -/* Numerical Recipes standard error handler */ -{ - void exit(); - - fprintf(stderr,"Numerical Recipes run-time error...\n"); - fprintf(stderr,"%s\n",error_text); - fprintf(stderr,"...now exiting to system...\n"); - exit(1); -} - -float *vector(nl,nh) -long nh,nl; -/* allocate a float vector with subscript range v[nl..nh] */ -{ - float *v; - - v=(float *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(float))); - if (!v) nrerror("allocation failure in vector()"); - return v-nl+NR_END; -} - -int *ivector(nl,nh) -long nh,nl; -/* allocate an int vector with subscript range v[nl..nh] */ -{ - int *v; - - v=(int *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(int))); - if (!v) nrerror("allocation failure in ivector()"); - return v-nl+NR_END; -} - -unsigned char *cvector(nl,nh) -long nh,nl; -/* allocate an unsigned char vector with subscript range v[nl..nh] */ -{ - unsigned char *v; - - v=(unsigned char *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(unsigned char))); - if (!v) nrerror("allocation failure in cvector()"); - return v-nl+NR_END; -} - -unsigned long *lvector(nl,nh) -long nh,nl; -/* allocate an unsigned long vector with subscript range v[nl..nh] */ -{ - unsigned long *v; - - v=(unsigned long *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(long))); - if (!v) nrerror("allocation failure in lvector()"); - return v-nl+NR_END; -} - -double *dvector(nl,nh) -long nh,nl; -/* allocate a double vector with subscript range v[nl..nh] */ -{ - double *v; - - v=(double *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(double))); - if (!v) nrerror("allocation failure in dvector()"); - return v-nl+NR_END; -} - -float **matrix(nrl,nrh,ncl,nch) -long nch,ncl,nrh,nrl; -/* allocate a float matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((unsigned int)((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(float *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(float))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -double **dmatrix(nrl,nrh,ncl,nch) -long nch,ncl,nrh,nrl; -/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - double **m; - - /* allocate pointers to rows */ - m=(double **) malloc((unsigned int)((nrow+NR_END)*sizeof(double*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - /* allocate rows and set pointers to them */ - m[nrl]=(double *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(double))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -int **imatrix(nrl,nrh,ncl,nch) -long nch,ncl,nrh,nrl; -/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */ -{ - long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; - int **m; - - /* allocate pointers to rows */ - m=(int **) malloc((unsigned int)((nrow+NR_END)*sizeof(int*))); - if (!m) nrerror("allocation failure 1 in matrix()"); - m += NR_END; - m -= nrl; - - - /* allocate rows and set pointers to them */ - m[nrl]=(int *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(int))); - if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); - m[nrl] += NR_END; - m[nrl] -= ncl; - - for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **submatrix(a,oldrl,oldrh,oldcl,oldch,newrl,newcl) -float **a; -long newcl,newrl,oldch,oldcl,oldrh,oldrl; -/* point a submatrix [newrl..][newcl..] to a[oldrl..oldrh][oldcl..oldch] */ -{ - long i,j,nrow=oldrh-oldrl+1,ncol=oldcl-newcl; - float **m; - - /* allocate array of pointers to rows */ - m=(float **) malloc((unsigned int) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in submatrix()"); - m += NR_END; - m -= newrl; - - /* set pointers to rows */ - for(i=oldrl,j=newrl;i<=oldrh;i++,j++) m[j]=a[i]+ncol; - - /* return pointer to array of pointers to rows */ - return m; -} - -float **convert_matrix(a,nrl,nrh,ncl,nch) -float *a; -long nch,ncl,nrh,nrl; -/* allocate a float matrix m[nrl..nrh][ncl..nch] that points to the matrix -declared in the standard C manner as a[nrow][ncol], where nrow=nrh-nrl+1 -and ncol=nch-ncl+1. The routine should be called with the address -&a[0][0] as the first argument. */ -{ - long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1; - float **m; - - /* allocate pointers to rows */ - m=(float **) malloc((unsigned int) ((nrow+NR_END)*sizeof(float*))); - if (!m) nrerror("allocation failure in convert_matrix()"); - m += NR_END; - m -= nrl; - - /* set pointers to rows */ - m[nrl]=a-ncl; - for(i=1,j=nrl+1;i (dmaxarg2) ?\ - (dmaxarg1) : (dmaxarg2)) - -static double dminarg1,dminarg2; -#define DMIN(a,b) (dminarg1=(a),dminarg2=(b),(dminarg1) < (dminarg2) ?\ - (dminarg1) : (dminarg2)) - -static float maxarg1,maxarg2; -#define FMAX(a,b) (maxarg1=(a),maxarg2=(b),(maxarg1) > (maxarg2) ?\ - (maxarg1) : (maxarg2)) - -static float minarg1,minarg2; -#define FMIN(a,b) (minarg1=(a),minarg2=(b),(minarg1) < (minarg2) ?\ - (minarg1) : (minarg2)) - -static long lmaxarg1,lmaxarg2; -#define LMAX(a,b) (lmaxarg1=(a),lmaxarg2=(b),(lmaxarg1) > (lmaxarg2) ?\ - (lmaxarg1) : (lmaxarg2)) - -static long lminarg1,lminarg2; -#define LMIN(a,b) (lminarg1=(a),lminarg2=(b),(lminarg1) < (lminarg2) ?\ - (lminarg1) : (lminarg2)) - -static int imaxarg1,imaxarg2; -#define IMAX(a,b) (imaxarg1=(a),imaxarg2=(b),(imaxarg1) > (imaxarg2) ?\ - (imaxarg1) : (imaxarg2)) - -static int iminarg1,iminarg2; -#define IMIN(a,b) (iminarg1=(a),iminarg2=(b),(iminarg1) < (iminarg2) ?\ - (iminarg1) : (iminarg2)) - -#define SIGN(a,b) ((b) >= 0.0 ? fabs(a) : -fabs(a)) - -void nrerror(char error_text[]); -float *vector(long nl, long nh); -int *ivector(long nl, long nh); -unsigned char *cvector(long nl, long nh); -unsigned long *lvector(long nl, long nh); -double *dvector(long nl, long nh); -float **matrix(long nrl, long nrh, long ncl, long nch); -double **dmatrix(long nrl, long nrh, long ncl, long nch); -int **imatrix(long nrl, long nrh, long ncl, long nch); -float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch, - long newrl, long newcl); -float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch); -float ***f3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_vector(float *v, long nl, long nh); -void free_ivector(int *v, long nl, long nh); -void free_cvector(unsigned char *v, long nl, long nh); -void free_lvector(unsigned long *v, long nl, long nh); -void free_dvector(double *v, long nl, long nh); -void free_matrix(float **m, long nrl, long nrh, long ncl, long nch); -void free_dmatrix(double **m, long nrl, long nrh, long ncl, long nch); -void free_imatrix(int **m, long nrl, long nrh, long ncl, long nch); -void free_submatrix(float **b, long nrl, long nrh, long ncl, long nch); -void free_convert_matrix(float **b, long nrl, long nrh, long ncl, long nch); -void free_f3tensor(float ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - - -int ***i3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_i3tensor(int ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - -unsigned char ***b3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_b3tensor(unsigned char ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - - - -double ***d3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh); -void free_d3tensor(double ***t, long nrl, long nrh, long ncl, long nch, - long ndl, long ndh); - - - - - - - - -unsigned char **cmatrix(long nrl, long nrh, long ncl, long nch); -void free_cmatrix(unsigned char **m, long nrl, long nrh, long ncl, long nch); - - -#endif /* _NR_UTILS_H_ */ diff --git a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/nrutil.o b/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/nrutil.o deleted file mode 100644 index 65050ad3e96c4302cd331c49402ed003aed375cb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/libCentroid/test/ttc/nrutil.o and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/PSFMatsREE50.py b/ObservationSim/PSF/PSFInterp/test/PSFMatsREE50.py deleted file mode 100644 index ad9bbad1cbe4c641152bb6c9f8cfd7db37987c25..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/PSFMatsREE50.py +++ /dev/null @@ -1,178 +0,0 @@ -import sys -from itertools import islice - -import mpi4py.MPI as MPI - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -mpl.use('Agg') - -import scipy.io -#import xlrd -from scipy import ndimage - -sys.path.append("/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF_20210108") -import PSFConfig as myConfig -import PSFUtil as myUtil - -NPSF = 900 -############################## -############################## -############################## -def test_psfREE80(psfPath, ThisTask, NTasks): - nccd = 30 - npsf = NPSF - - npsfPerTasks = int(npsf/NTasks) - iStart= 0 + npsfPerTasks*ThisTask - iEnd = npsfPerTasks + npsfPerTasks*ThisTask - if ThisTask == NTasks: - iEnd = npsf - - CENPIXUSED = True - wvREE80 = np.zeros([4, nccd]) #psf in different waves-4 - ttREE80 = np.zeros(nccd) #stacked psf - - for iccd in range(1, nccd+1): - psf_wvREE80 = np.zeros([4, npsf]) - psf_ttREE80 = np.zeros(npsf) - - #for ipsf in range(1, npsf+1): - for ipsf in range(iStart+1, iEnd+1): - psf4iwave = [] - for iwave in range(1, 5): - if ThisTask == 0: - print('iccd-ipsf-iwave: {:} {:} {:}'.format(iccd, ipsf, iwave), end='\r') - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=False) - - cenPix = None - if CENPIXUSED: - psfInfoX= myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=True) - deltX= psfInfoX['centroid_x'] #in mm - deltY= psfInfoX['centroid_y'] #in mm - pixsize = 2.5*1e-3 #mm, will use binningPSF - cenPix_X = 512/2 + deltX/pixsize - cenPix_Y = 512/2 + deltY/pixsize - cenPix = [cenPix_X, cenPix_Y] - - ipsfMat = psfInfo['psfMat'] - cenX, cenY, sz, e1, e2, REE80 = myUtil.psfSizeCalculator(ipsfMat, CalcPSFcenter=True, SigRange=True, TailorScheme=2, cenPix=cenPix) - psf_wvREE80[iwave-1, ipsf-1] = REE80 - psf4iwave.append(ipsfMat) - tt = myUtil.psfStack(psf4iwave[0], psf4iwave[1], psf4iwave[2], psf4iwave[3]) - cenX, cenY, sz, e1, e2, REE80 = myUtil.psfSizeCalculator(tt, CalcPSFcenter=True, SigRange=True, TailorScheme=2) - psf_ttREE80[ipsf-1] = REE80 - - if iccd == 1 and iwave ==1: - print('iccd-{:}:'.format(iccd), flush=True) - print('psfSet has been loaded.', flush=True) - #print('Usage: psfSet[i][keys]', flush=True) - #print('psfSet.keys:', psfSet[0].keys(), flush=True) - else: - print('iccd-{:}, iwave-{:}'.format(iccd, iwave), end='\r', flush=True) - - comm.barrier() - psf_ttREE80 = comm.allreduce(psf_ttREE80, op=MPI.SUM) - psf_wvREE80[0, :] = comm.allreduce(psf_wvREE80[0, :], op=MPI.SUM) - psf_wvREE80[1, :] = comm.allreduce(psf_wvREE80[1, :], op=MPI.SUM) - psf_wvREE80[2, :] = comm.allreduce(psf_wvREE80[2, :], op=MPI.SUM) - psf_wvREE80[3, :] = comm.allreduce(psf_wvREE80[3, :], op=MPI.SUM) - - ttREE80[iccd-1] = np.mean(psf_ttREE80) - wvREE80[0, iccd-1] = np.mean(psf_wvREE80[0, :]) - wvREE80[1, iccd-1] = np.mean(psf_wvREE80[1, :]) - wvREE80[2, iccd-1] = np.mean(psf_wvREE80[2, :]) - wvREE80[3, iccd-1] = np.mean(psf_wvREE80[3, :]) - ############################## - - comm.barrier() - #ttREE80 = comm.allreduce(ttREE80, op=MPI.SUM) - #wvREE80 = comm.allreduce(wvREE80, op=MPI.SUM) - - #plot-test - if ThisTask == 0: - REE80W1 = wvREE80[0, :] - REE80W2 = wvREE80[1, :] - REE80W3 = wvREE80[2, :] - REE80W4 = wvREE80[3, :] - - np.savetxt('REE50_w1.txt',REE80W1) - np.savetxt('REE50_w2.txt',REE80W2) - np.savetxt('REE50_w3.txt',REE80W3) - np.savetxt('REE50_w4.txt',REE80W4) - np.savetxt('REE50_tt.txt',ttREE80) - - ccdFilterLayout = ['GV', 'GV', 'GU', 'GU', 'GI', 'y', 'i', 'g', 'r', 'GI', 'z', 'NUV', 'NUV', 'u', 'y', 'y','u', 'NUV', 'NUV', 'z', 'GI', 'r', 'g', 'i', 'y', 'GI', 'GU', 'GU','GV', 'GV'] - - fig = plt.figure(figsize=(18,10)) - for iccd in range(0,30): - plt.arrow(iccd+1, REE80W1[iccd], 0, REE80W4[iccd]-REE80W1[iccd], width = 0.05, head_length=0.002, ec='None', color='k') - plt.plot([iccd+1], [REE80W1[iccd]], 'o',c='k') - plt.plot([iccd+1.1], [REE80W2[iccd]], 'o',c='b') - plt.plot([iccd+1.2], [REE80W3[iccd]], 'o',c='g') - plt.plot([iccd+1.3], [REE80W4[iccd]], 'o',c='r') - plt.plot([iccd+1, iccd+1.1, iccd+1.2, iccd+1.3], [REE80W1[iccd], REE80W2[iccd], REE80W3[iccd], REE80W4[iccd]], '--',c='k') - if REE80W1[iccd] < REE80W4[iccd]: - plt.text(iccd+1-0.2, REE80W1[iccd]-0.005, ccdFilterLayout[iccd], fontsize=15) - if REE80W1[iccd] > REE80W4[iccd]: - plt.text(iccd+1-0.2, REE80W1[iccd]+0.003, ccdFilterLayout[iccd], fontsize=15) - - plt.fill_betweenx([0.0, 0.080], [0.5,0.5], [5.5,5.5], color='gray',alpha=0.5) - plt.fill_betweenx([0.0, 0.080], [25.5,25.5], [30.5,30.5], color='gray',alpha=0.5) - - plt.fill_betweenx([0.0, 0.080], [9.5,9.5], [10.5,10.5], color='gray',alpha=0.5) - plt.fill_betweenx([0.0, 0.080], [20.5,20.5], [21.5,21.5], color='gray',alpha=0.5) - - plt.plot([5.5, 5.5], [0.0, 0.5], ':') - plt.plot([10.5, 10.5], [0.0, 0.5], 'k:') - plt.plot([15.5, 15.5], [0.0, 0.5], 'k:') - plt.plot([20.5, 20.5], [0.0, 0.5], 'k:') - plt.plot([25.5, 25.5], [0.0, 0.5], 'k:') - - - plt.ylim(0.0, 0.080) - plt.xlim(0.5, 30.5) - #plt.plot(np.linspace(1, 30, 30), REE80W1) - #plt.plot(np.linspace(1, 30, 30), REE80W2) - #plt.plot(np.linspace(1, 30, 30), REE80W3) - #plt.plot(np.linspace(1, 30, 30), REE80W4) - - plt.xticks([]) - plt.yticks(fontsize=15) - plt.text(1.5, -0.004, 'CCD1 - CCD5', fontsize=15) - plt.text(6.5, -0.004, 'CCD6 - CCD10', fontsize=15) - plt.text(11.5, -0.004, 'CCD11 - CCD15', fontsize=15) - plt.text(16.5, -0.004, 'CCD16 - CCD20', fontsize=15) - plt.text(21.5, -0.004, 'CCD21 - CCD25', fontsize=15) - plt.text(26.5, -0.004, 'CCD26 - CCD30', fontsize=15) - - plt.plot([27], [0.183], 'ko') - plt.text(27.5, 0.182, 'wave-1',fontsize=15) - plt.plot([27], [0.180], 'ro') - plt.text(27.5, 0.179, 'wave-2',fontsize=15) - plt.plot([27], [0.177], 'go') - plt.text(27.5, 0.176, 'wave-3',fontsize=15) - plt.plot([27], [0.174], 'bo') - plt.text(27.5, 0.173, 'wave-4',fontsize=15) - - - #overplot stackedPSF - xccd = np.linspace(1, 30, 30) - plt.plot(xccd,ttREE80, 'm*', ms = 20, markerfacecolor='None', markeredgewidth=2) - plt.plot([27], [0.168], 'm*', ms = 20, markerfacecolor='None', markeredgewidth=2) - plt.text(27.5, 0.1665, 'stacked',fontsize=20) - plt.savefig('figs/psfStackedREE50.pdf') - - - -############################## -############################## -############################## -if __name__=='__main__': - comm = MPI.COMM_WORLD - ThisTask = comm.Get_rank() - NTasks = comm.Get_size() - - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3' - test_psfREE80(psfPath, ThisTask, NTasks) diff --git a/ObservationSim/PSF/PSFInterp/test/PSFMatsREE80.py b/ObservationSim/PSF/PSFInterp/test/PSFMatsREE80.py deleted file mode 100644 index cfe423960e0b6aca2427ebe0d5d25c187ac6ce28..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/PSFMatsREE80.py +++ /dev/null @@ -1,179 +0,0 @@ -import sys -from itertools import islice - -import mpi4py.MPI as MPI - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -mpl.use('Agg') - -import scipy.io -#import xlrd -from scipy import ndimage - -sys.path.append("/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF_20210108") -import PSFConfig as myConfig -import PSFUtil as myUtil - -NPSF = 900 -############################## -############################## -############################## -def test_psfREE80(psfPath, ThisTask, NTasks): - nccd = 30 - npsf = NPSF - - npsfPerTasks = int(npsf/NTasks) - iStart= 0 + npsfPerTasks*ThisTask - iEnd = npsfPerTasks + npsfPerTasks*ThisTask - if ThisTask == NTasks: - iEnd = npsf - - CENPIXUSED = True - wvREE80 = np.zeros([4, nccd]) #psf in different waves-4 - ttREE80 = np.zeros(nccd) #stacked psf - - for iccd in range(1, nccd+1): - psf_wvREE80 = np.zeros([4, npsf]) - psf_ttREE80 = np.zeros(npsf) - - #for ipsf in range(1, npsf+1): - for ipsf in range(iStart+1, iEnd+1): - psf4iwave = [] - for iwave in range(1, 5): - if ThisTask == 0: - print('iccd-ipsf-iwave: {:} {:} {:}'.format(iccd, ipsf, iwave), end='\r') - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=False) - - cenPix = None - if CENPIXUSED: - psfInfoX= myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=True) - deltX= psfInfoX['centroid_x'] #in mm - deltY= psfInfoX['centroid_y'] #in mm - pixsize = 2.5*1e-3 #mm, will use binningPSF - cenPix_X = 512/2 + deltX/pixsize - cenPix_Y = 512/2 + deltY/pixsize - cenPix = [cenPix_X, cenPix_Y] - - ipsfMat = psfInfo['psfMat'] - cenX, cenY, sz, e1, e2, REE80 = myUtil.psfSizeCalculator(ipsfMat, CalcPSFcenter=True, SigRange=True, TailorScheme=2, cenPix=cenPix) - psf_wvREE80[iwave-1, ipsf-1] = REE80 - psf4iwave.append(ipsfMat) - tt = myUtil.psfStack(psf4iwave[0], psf4iwave[1], psf4iwave[2], psf4iwave[3]) - cenX, cenY, sz, e1, e2, REE80 = myUtil.psfSizeCalculator(tt, CalcPSFcenter=True, SigRange=True, TailorScheme=2) - psf_ttREE80[ipsf-1] = REE80 - - if iccd == 1 and iwave ==1: - print('iccd-{:}:'.format(iccd), flush=True) - print('psfSet has been loaded.', flush=True) - #print('Usage: psfSet[i][keys]', flush=True) - #print('psfSet.keys:', psfSet[0].keys(), flush=True) - else: - print('iccd-{:}, iwave-{:}'.format(iccd, iwave), end='\r', flush=True) - - comm.barrier() - psf_ttREE80 = comm.allreduce(psf_ttREE80, op=MPI.SUM) - psf_wvREE80[0, :] = comm.allreduce(psf_wvREE80[0, :], op=MPI.SUM) - psf_wvREE80[1, :] = comm.allreduce(psf_wvREE80[1, :], op=MPI.SUM) - psf_wvREE80[2, :] = comm.allreduce(psf_wvREE80[2, :], op=MPI.SUM) - psf_wvREE80[3, :] = comm.allreduce(psf_wvREE80[3, :], op=MPI.SUM) - - ttREE80[iccd-1] = np.mean(psf_ttREE80) - wvREE80[0, iccd-1] = np.mean(psf_wvREE80[0, :]) - wvREE80[1, iccd-1] = np.mean(psf_wvREE80[1, :]) - wvREE80[2, iccd-1] = np.mean(psf_wvREE80[2, :]) - wvREE80[3, iccd-1] = np.mean(psf_wvREE80[3, :]) - ############################## - - comm.barrier() - #ttREE80 = comm.allreduce(ttREE80, op=MPI.SUM) - #wvREE80 = comm.allreduce(wvREE80, op=MPI.SUM) - - #plot-test - if ThisTask == 0: - REE80W1 = wvREE80[0, :] - REE80W2 = wvREE80[1, :] - REE80W3 = wvREE80[2, :] - REE80W4 = wvREE80[3, :] - - np.savetxt('REE80_w1.txt',REE80W1) - np.savetxt('REE80_w2.txt',REE80W2) - np.savetxt('REE80_w3.txt',REE80W3) - np.savetxt('REE80_w4.txt',REE80W4) - np.savetxt('REE80_tt.txt',ttREE80) - - - ccdFilterLayout = ['GV', 'GV', 'GU', 'GU', 'GI', 'y', 'i', 'g', 'r', 'GI', 'z', 'NUV', 'NUV', 'u', 'y', 'y','u', 'NUV', 'NUV', 'z', 'GI', 'r', 'g', 'i', 'y', 'GI', 'GU', 'GU','GV', 'GV'] - - fig = plt.figure(figsize=(18,10)) - for iccd in range(0,30): - plt.arrow(iccd+1, REE80W1[iccd], 0, REE80W4[iccd]-REE80W1[iccd], width = 0.05, head_length=0.002, ec='None', color='k') - plt.plot([iccd+1], [REE80W1[iccd]], 'o',c='k') - plt.plot([iccd+1.1], [REE80W2[iccd]], 'o',c='b') - plt.plot([iccd+1.2], [REE80W3[iccd]], 'o',c='g') - plt.plot([iccd+1.3], [REE80W4[iccd]], 'o',c='r') - plt.plot([iccd+1, iccd+1.1, iccd+1.2, iccd+1.3], [REE80W1[iccd], REE80W2[iccd], REE80W3[iccd], REE80W4[iccd]], '--',c='k') - if REE80W1[iccd] < REE80W4[iccd]: - plt.text(iccd+1-0.2, REE80W1[iccd]-0.005, ccdFilterLayout[iccd], fontsize=15) - if REE80W1[iccd] > REE80W4[iccd]: - plt.text(iccd+1-0.2, REE80W1[iccd]+0.003, ccdFilterLayout[iccd], fontsize=15) - - plt.fill_betweenx([0.078, 0.145], [0.5,0.5], [5.5,5.5], color='gray',alpha=0.5) - plt.fill_betweenx([0.078, 0.145], [25.5,25.5], [30.5,30.5], color='gray',alpha=0.5) - - plt.fill_betweenx([0.078, 0.145], [9.5,9.5], [10.5,10.5], color='gray',alpha=0.5) - plt.fill_betweenx([0.078, 0.145], [20.5,20.5], [21.5,21.5], color='gray',alpha=0.5) - - plt.plot([5.5, 5.5], [0.078, 0.5], ':') - plt.plot([10.5, 10.5], [0.078, 0.5], 'k:') - plt.plot([15.5, 15.5], [0.078, 0.5], 'k:') - plt.plot([20.5, 20.5], [0.078, 0.5], 'k:') - plt.plot([25.5, 25.5], [0.078, 0.5], 'k:') - - - plt.ylim(0.078, 0.145) - plt.xlim(0.5, 30.5) - #plt.plot(np.linspace(1, 30, 30), REE80W1) - #plt.plot(np.linspace(1, 30, 30), REE80W2) - #plt.plot(np.linspace(1, 30, 30), REE80W3) - #plt.plot(np.linspace(1, 30, 30), REE80W4) - - plt.xticks([]) - plt.yticks(fontsize=15) - plt.text(1.5, 0.074, 'CCD1 - CCD5', fontsize=15) - plt.text(6.5, 0.074, 'CCD6 - CCD10', fontsize=15) - plt.text(11.5, 0.074, 'CCD11 - CCD15', fontsize=15) - plt.text(16.5, 0.074, 'CCD16 - CCD20', fontsize=15) - plt.text(21.5, 0.074, 'CCD21 - CCD25', fontsize=15) - plt.text(26.5, 0.074, 'CCD26 - CCD30', fontsize=15) - - plt.plot([27], [0.183], 'ko') - plt.text(27.5, 0.182, 'wave-1',fontsize=15) - plt.plot([27], [0.180], 'ro') - plt.text(27.5, 0.179, 'wave-2',fontsize=15) - plt.plot([27], [0.177], 'go') - plt.text(27.5, 0.176, 'wave-3',fontsize=15) - plt.plot([27], [0.174], 'bo') - plt.text(27.5, 0.173, 'wave-4',fontsize=15) - - - #overplot stackedPSF - xccd = np.linspace(1, 30, 30) - plt.plot(xccd,ttREE80, 'm*', ms = 20, markerfacecolor='None', markeredgewidth=2) - plt.plot([27], [0.168], 'm*', ms = 20, markerfacecolor='None', markeredgewidth=2) - plt.text(27.5, 0.1665, 'stacked',fontsize=20) - plt.savefig('figs/psfStackedREE80.pdf') - - - -############################## -############################## -############################## -if __name__=='__main__': - comm = MPI.COMM_WORLD - ThisTask = comm.Get_rank() - NTasks = comm.Get_size() - - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3' - test_psfREE80(psfPath, ThisTask, NTasks) diff --git a/ObservationSim/PSF/PSFInterp/test/REE50_tt.txt b/ObservationSim/PSF/PSFInterp/test/REE50_tt.txt deleted file mode 100644 index 46f1c3f2f56912dd8037018ae3d62d7bc79f8708..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE50_tt.txt +++ /dev/null @@ -1,30 +0,0 @@ -4.192623714192045964e-02 -3.963687271293666464e-02 -3.717499316773480861e-02 -3.547479454427957674e-02 -4.778017809407578836e-02 -5.589890449411339529e-02 -4.521611930595503814e-02 -3.177118275728490343e-02 -3.778880075862010163e-02 -4.599476550188329183e-02 -5.217386429508526907e-02 -2.741515900111860665e-02 -2.751147872664862215e-02 -2.593041263934638824e-02 -5.550626295722193432e-02 -5.590932749625709269e-02 -2.809689362429910325e-02 -3.039854779218633882e-02 -2.730709160574608385e-02 -5.228841161148415490e-02 -4.721563391801383847e-02 -3.853965697603093515e-02 -3.288221512817673942e-02 -4.526867814362049020e-02 -5.549804478055900964e-02 -4.864927207016282729e-02 -3.085322873873843144e-02 -2.899995189367069251e-02 -3.424865529768996580e-02 -3.627621793291634783e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE50_w1.txt b/ObservationSim/PSF/PSFInterp/test/REE50_w1.txt deleted file mode 100644 index 8eaf20eb149730b68c7edadb7782381d60684489..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE50_w1.txt +++ /dev/null @@ -1,30 +0,0 @@ -4.097674760967492946e-02 -3.779118013257781739e-02 -3.854422118514776174e-02 -3.604302387477623104e-02 -4.097642137358586262e-02 -5.422652423381805337e-02 -4.271208368655707993e-02 -2.862325804928938719e-02 -3.484749293989605062e-02 -3.973479835109577918e-02 -4.960958740777439424e-02 -3.018300496041774819e-02 -2.993626710027456200e-02 -2.408132943635185597e-02 -5.361761418067746698e-02 -5.386454740332232566e-02 -2.540567224224408310e-02 -3.506318612438109189e-02 -2.746613206341862526e-02 -4.962374180969264525e-02 -4.058798617786830987e-02 -3.485660712545116807e-02 -2.843817778345611447e-02 -4.183941396160258119e-02 -5.364700755725304582e-02 -4.234843995836046204e-02 -2.858904785580105093e-02 -2.490848023651374629e-02 -2.915432476335101664e-02 -3.297398504283693271e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE50_w2.txt b/ObservationSim/PSF/PSFInterp/test/REE50_w2.txt deleted file mode 100644 index 160391be20b6781873d2b51d99f8cb6e53300aa1..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE50_w2.txt +++ /dev/null @@ -1,30 +0,0 @@ -4.107249135358465725e-02 -3.805210295857654884e-02 -3.634435170433587825e-02 -3.354171364878615058e-02 -4.468210332095622767e-02 -5.541175949904653814e-02 -4.455799478623602428e-02 -3.044745398064454406e-02 -3.644618252085314591e-02 -4.342479083273145801e-02 -5.033345324711667457e-02 -2.592496615524093190e-02 -2.602256835955712652e-02 -2.419794542507992807e-02 -5.424795392072863376e-02 -5.454469751566648483e-02 -2.579547411865658335e-02 -2.818417717392246100e-02 -2.520566607515017238e-02 -5.040185143550236779e-02 -4.456572487950324901e-02 -3.643000928892029672e-02 -3.032562015371190189e-02 -4.340189202792114898e-02 -5.436048106186919943e-02 -4.582877747714519251e-02 -2.675305432329575309e-02 -2.434911420775784374e-02 -3.196721636172798059e-02 -3.480462196800444136e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE50_w3.txt b/ObservationSim/PSF/PSFInterp/test/REE50_w3.txt deleted file mode 100644 index 7a5811ce29deccd1d9647a1abac219a6843a6d0a..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE50_w3.txt +++ /dev/null @@ -1,30 +0,0 @@ -4.197429738938808497e-02 -3.948407693869537827e-02 -3.499825730091995352e-02 -3.239083757003148600e-02 -4.886476772940821084e-02 -5.656497548437780520e-02 -4.575395000891552960e-02 -3.229455917659732750e-02 -3.790552155839072013e-02 -4.727557896325985248e-02 -5.229303643521335254e-02 -2.517534267157316152e-02 -2.533119356673624659e-02 -2.559196881535980364e-02 -5.552474377469884120e-02 -5.606734792805380396e-02 -2.605791410017344739e-02 -2.653578668625818440e-02 -2.488602056892381606e-02 -5.237050928589370713e-02 -4.864922908859120598e-02 -3.793197987808121646e-02 -3.199448413319058021e-02 -4.567710663295454498e-02 -5.582077370749579520e-02 -4.991082506461275853e-02 -2.695475944835278720e-02 -2.495457686276899428e-02 -3.456866744284828319e-02 -3.673887742269370260e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE50_w4.txt b/ObservationSim/PSF/PSFInterp/test/REE50_w4.txt deleted file mode 100644 index a8c090afccfc1057b933b445b30c20af4684d8f5..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE50_w4.txt +++ /dev/null @@ -1,30 +0,0 @@ -4.374798665444055989e-02 -4.172032311144802108e-02 -3.449644779165585845e-02 -3.227750844632586158e-02 -5.347426552325486998e-02 -5.790241428133514195e-02 -4.830917320731613340e-02 -3.390226654708385773e-02 -4.048860900104046118e-02 -5.229343653966982836e-02 -5.546085886657237812e-02 -2.504612732885612425e-02 -2.524040076881647193e-02 -2.594595272300971936e-02 -5.741710940168963384e-02 -5.757535632285806781e-02 -2.622993558438287826e-02 -2.619012944814231789e-02 -2.490559814497828386e-02 -5.549698290725549321e-02 -5.351221157444847887e-02 -4.031978600141074981e-02 -3.390058320636550604e-02 -4.747320735620128018e-02 -5.750102566348181538e-02 -5.429367550131347642e-02 -2.792105174933870795e-02 -2.611095883366134490e-02 -3.699269230580991968e-02 -3.936049576848745651e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE80_tt.txt b/ObservationSim/PSF/PSFInterp/test/REE80_tt.txt deleted file mode 100644 index d62ebdf606553ae1eeeb27d3cf33f1d119ff482d..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE80_tt.txt +++ /dev/null @@ -1,30 +0,0 @@ -1.003694497959481402e-01 -1.015607885271310740e-01 -1.052028546896245781e-01 -1.004858156541983266e-01 -1.102485864443911445e-01 -1.098996570540799050e-01 -1.121134948564900258e-01 -9.598437185088792845e-02 -1.028637351757950291e-01 -1.037921066664987124e-01 -9.960766722758611358e-02 -1.160482782291041431e-01 -1.188710469918118628e-01 -1.006841716004742565e-01 -1.041830715454287043e-01 -1.071446195079220620e-01 -9.699936704503164808e-02 -1.145864692330360451e-01 -1.166164491325616809e-01 -1.017340895533561662e-01 -1.104655211253298686e-01 -9.992789358728461357e-02 -9.721765814556015961e-02 -1.133250202735265055e-01 -1.047951816519101520e-01 -1.146304993165863928e-01 -1.023961062481005962e-01 -1.056877841469314322e-01 -9.356085345149040000e-02 -9.884073599345154226e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE80_w1.txt b/ObservationSim/PSF/PSFInterp/test/REE80_w1.txt deleted file mode 100644 index 5c82394835239bee9e521949723fefc466e81e22..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE80_w1.txt +++ /dev/null @@ -1,30 +0,0 @@ -9.538728237979941793e-02 -9.997831919127039835e-02 -1.152796367224719759e-01 -1.113885820325877934e-01 -1.081522457963890460e-01 -1.100598958465788119e-01 -1.104022086991204160e-01 -9.841721517344316494e-02 -1.007562586416800854e-01 -1.057270593278937937e-01 -9.665070548653602323e-02 -1.228988209532366899e-01 -1.253969780935181577e-01 -1.108463252832492252e-01 -1.009047752370436923e-01 -1.043932629625002606e-01 -1.043888743470112457e-01 -1.228035690221521564e-01 -1.229982891347673191e-01 -1.014424936307801173e-01 -1.078363279584381301e-01 -9.916063456071746995e-02 -1.001503288414743176e-01 -1.132735080354743545e-01 -1.019744017720222440e-01 -1.093158932692474827e-01 -1.145170436302820893e-01 -1.144741236832406833e-01 -8.961314371062649442e-02 -9.682588559885819957e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE80_w2.txt b/ObservationSim/PSF/PSFInterp/test/REE80_w2.txt deleted file mode 100644 index 052144710c66b7f3cfd50389d452ca4b6e9a2f35..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE80_w2.txt +++ /dev/null @@ -1,30 +0,0 @@ -9.643768350283304924e-02 -9.798234308759370959e-02 -1.079521808524926546e-01 -1.025021615210506692e-01 -1.149604891157812586e-01 -1.094704144779178878e-01 -1.128202253331740679e-01 -9.495004550450378278e-02 -1.031157808171378198e-01 -1.102209193590614478e-01 -9.693712000217702407e-02 -1.157439781311485477e-01 -1.188326157795058374e-01 -1.020256235202153527e-01 -1.019820975181129213e-01 -1.050299054880936972e-01 -9.922386229038238081e-02 -1.136058331943220617e-01 -1.159628341678116126e-01 -9.912074926826688892e-02 -1.137588790224658142e-01 -1.020030610097779206e-01 -9.673012357619073520e-02 -1.160692154202196402e-01 -1.028599771526124695e-01 -1.158566920790407434e-01 -1.039760234289699159e-01 -1.111334640532732065e-01 -9.186342578795221592e-02 -9.592016302877001688e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE80_w3.txt b/ObservationSim/PSF/PSFInterp/test/REE80_w3.txt deleted file mode 100644 index e3462745ae5f778a5eb9454286e076ae84b664d6..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE80_w3.txt +++ /dev/null @@ -1,30 +0,0 @@ -1.006985101848840714e-01 -1.013836140599515684e-01 -1.013806880513827002e-01 -9.915509222282303803e-02 -1.200062531563970830e-01 -1.094657432536284142e-01 -1.144734306716256728e-01 -9.519613649282190893e-02 -1.057418116099304584e-01 -1.054122307896614014e-01 -9.845357587767972207e-02 -1.129213973631461448e-01 -1.157693343030081895e-01 -9.789589726262622194e-02 -1.031542107711235640e-01 -1.059128980752494648e-01 -9.632152356207371313e-02 -1.119704562591181812e-01 -1.141161955230765856e-01 -9.983023160033756283e-02 -1.176942567113373056e-01 -1.050646821823384980e-01 -9.762139088577694024e-02 -1.182936947709984227e-01 -1.040377021663718704e-01 -1.212708305484718752e-01 -1.006435601496034199e-01 -1.039983374708228631e-01 -9.660188108682632446e-02 -9.944499985211426030e-02 diff --git a/ObservationSim/PSF/PSFInterp/test/REE80_w4.txt b/ObservationSim/PSF/PSFInterp/test/REE80_w4.txt deleted file mode 100644 index be627f35ed44ec632692a88d511c78172ba960d2..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/REE80_w4.txt +++ /dev/null @@ -1,30 +0,0 @@ -1.060087002979384491e-01 -1.065412894470824101e-01 -9.963971251414881214e-02 -9.672424467901388767e-02 -1.175329804834392283e-01 -1.101842951691812955e-01 -1.145964604367812473e-01 -9.717416778206824923e-02 -1.083525632404618855e-01 -1.000668340507480797e-01 -1.014329678730832157e-01 -1.097313022116820080e-01 -1.141242847839991220e-01 -9.404459126293658600e-02 -1.052697762184672953e-01 -1.075393592317899077e-01 -9.385074155198203094e-02 -1.104957850111855377e-01 -1.125437939415375455e-01 -1.026178903298245598e-01 -1.133788265619013053e-01 -1.080598064677582848e-01 -9.990631543927722125e-02 -1.193010927985111852e-01 -1.060021865616242037e-01 -1.243952341874440537e-01 -1.005361025614870951e-01 -9.902638682888613431e-02 -1.014523365596930182e-01 -1.041915973110331406e-01 diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_1.pdf deleted file mode 100644 index f9c3dfe59911cafe2ed736172c59118d2d9b3cd5..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_15.pdf deleted file mode 100644 index 75461487f068ae5885d25b991dee38ed7dd15da2..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_30.pdf deleted file mode 100644 index c3e98198c8870edb4a1639651460e06ad2fa46f4..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_450.pdf deleted file mode 100644 index a0e5ea555ecc4ddc7fb460dc0f92e7d24251c4e0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_465.pdf deleted file mode 100644 index 6d748894b5309491db4209fb09cf1c408d361983..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_480.pdf deleted file mode 100644 index d1bf7400745878a62d21d956306f68c71b6d0684..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_870.pdf deleted file mode 100644 index 1199809b5a90ba0968e4fd40be871e3597d33650..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_885.pdf deleted file mode 100644 index ebf378933442a9cd51806231160eabb847a9e41f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_10_900.pdf deleted file mode 100644 index a0c8589e7128989f065015ed94a877c593dd6445..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_10_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_1.pdf deleted file mode 100644 index 55daedea2e7c4cdb342932226c72dc2dfeee56a0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_15.pdf deleted file mode 100644 index 42c066199a696047ba9e074082d4b5e91e579967..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_30.pdf deleted file mode 100644 index 5642575b8e7be19077a7e5aca1d41e21f6593a21..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_450.pdf deleted file mode 100644 index 4ec472b023f84dea06369d9c93b305a4b1449115..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_465.pdf deleted file mode 100644 index face54c8c714489e41e0f99c7182745142f1a855..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_480.pdf deleted file mode 100644 index d0b72b73da5bb695535afe6c5f8fa3a320cd9e89..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_870.pdf deleted file mode 100644 index 8c6bf896350f94373b60fbd50ac483f21347d986..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_885.pdf deleted file mode 100644 index 81d89cd2d324c2d50966bd302eb165fd750d8bab..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_11_900.pdf deleted file mode 100644 index e09ad5d6bea687683d61ddc4f87b4876f24899ef..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_11_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_1.pdf deleted file mode 100644 index 80a885d9fe2570a035b6e903fac26ebfd88b53d9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_15.pdf deleted file mode 100644 index 89fe1a5b46de91d101fb094fbb1f3726b5a0a6fb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_30.pdf deleted file mode 100644 index 974a07b87d2962f4b132a88ce512890a0c0f207d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_450.pdf deleted file mode 100644 index 3ba347898f72c96effe7737437e2916ccb403c2a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_465.pdf deleted file mode 100644 index 660c947ce434799b70fe2113c570a4be9f85854e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_480.pdf deleted file mode 100644 index 804d15b2fc66016108424f2f0cc8597edd37972d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_870.pdf deleted file mode 100644 index b4406c3f71cd1327e1c59d12319805ac60af7f4a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_885.pdf deleted file mode 100644 index 85fd2db367d8605502aaddf4d694448978b43a88..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_12_900.pdf deleted file mode 100644 index 5c1abb9bc7aa7e426ccc30d30696b4d93900a2b8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_12_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_1.pdf deleted file mode 100644 index f40428fa4aca3fd71fd31472afc2ac4b4b8ca2eb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_15.pdf deleted file mode 100644 index c78e12006c7215c2cea7b9d5b7e05e4e3ef6d7f0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_30.pdf deleted file mode 100644 index 88bcf74798a726b8bb616fac67ca0bf9b02f405f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_450.pdf deleted file mode 100644 index e28226825b3f873581c94e0d363802b59ee551de..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_465.pdf deleted file mode 100644 index cf7433d7cdbfbb7aaad79fa59a197a2a21b75df5..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_480.pdf deleted file mode 100644 index b8bf87f5395780359c9f1cd8c5bfea937ebb57a3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_870.pdf deleted file mode 100644 index b85752c1f36afdd20c221b7aefe62aa4de10019e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_885.pdf deleted file mode 100644 index f686d67a778282f41f0a852ca3966655280c088f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_13_900.pdf deleted file mode 100644 index 363fe196a666831608457fda74a505d1b1ee2b13..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_13_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_1.pdf deleted file mode 100644 index 259d6431d65e6725411e740268c2e10008d14754..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_15.pdf deleted file mode 100644 index 938c01787fd3b7dd5dda38797d21328e6a0ba137..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_30.pdf deleted file mode 100644 index 4e480d4553092ad4cd9c4dc62e5ac9c27289307f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_450.pdf deleted file mode 100644 index ba6738c3e21d1013778db4873809725ec72050bb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_465.pdf deleted file mode 100644 index eb1fbfbe9779758a025d439941e0c57cbc41bc7d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_480.pdf deleted file mode 100644 index f9f70fe8cf50c9b1bff761b741cfa0c779c28b5e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_870.pdf deleted file mode 100644 index 76f2ce0e85d6d619433960b929832daaef5f4a20..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_885.pdf deleted file mode 100644 index a026fde2be04fa43a4395ed4954e345bcbb655c8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_14_900.pdf deleted file mode 100644 index 4e4a96c77424e08555cdfcb7bcdee96bce7008bf..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_14_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_1.pdf deleted file mode 100644 index a579ab136f429454e299f5f74cbf9ca207594fe8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_15.pdf deleted file mode 100644 index e6e654807150301d07e35edff60e419129e41353..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_30.pdf deleted file mode 100644 index 1736a864fcac01f765c58c504db51ca25fc9b6ff..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_450.pdf deleted file mode 100644 index d76cade95134e14e19e63c6f52fe2054d9cff9ba..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_465.pdf deleted file mode 100644 index 480fe7447dd2a5adb158d484787e8167c5e55399..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_480.pdf deleted file mode 100644 index fc540d0949b3ae263d4e14233ca332d320d27bd3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_870.pdf deleted file mode 100644 index e4b3e40e5d48d024621fa0a5fd8c55941a350773..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_885.pdf deleted file mode 100644 index b88cfafa29ac4b6cd35bb7a0d774d488bda5e9e9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_15_900.pdf deleted file mode 100644 index 5fdc31ca8e3dccbd430a88d890263c4df653b224..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_15_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_1.pdf deleted file mode 100644 index e4d0be8cfe35e837d5167dd9f25a73fef5a9e512..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_15.pdf deleted file mode 100644 index 1eb364c739489b39908c27170dc1846c218f5592..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_30.pdf deleted file mode 100644 index bc25ba50002270fdd28f4ee454e66e71680ffa16..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_450.pdf deleted file mode 100644 index 6fdccae35b28c8d0dd3e4f56538bbe91882d1892..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_465.pdf deleted file mode 100644 index 06593c4965c25959babeefec36b3e0247f637022..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_480.pdf deleted file mode 100644 index c14286a2293c0ab203619f5e6d4d087137498b9f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_870.pdf deleted file mode 100644 index ba70c1a09ddd2e54c9fe2662cb9a7234d6e51823..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_885.pdf deleted file mode 100644 index a6105daf41bbd1a898607f269d070754cb2721ce..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_16_900.pdf deleted file mode 100644 index e3b0689f73758a029253dd7e655c1f01645c2821..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_16_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_1.pdf deleted file mode 100644 index 1f343acc6e451911eab2bb7d65b6eec7207b98b9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_15.pdf deleted file mode 100644 index 53c357aa71ec7026afbe326cd71a46e81b6c31ac..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_30.pdf deleted file mode 100644 index 994ed2d1e47aade9ae517a257604df9a4d24e0a6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_450.pdf deleted file mode 100644 index 2c2dda3abdf345d124749d60796f7755b18f97a0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_465.pdf deleted file mode 100644 index 13089a5014baf1d1fa03c20960f30fdd2bf4281c..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_480.pdf deleted file mode 100644 index b70713934c9afdd7b964b9b5a51cd2046f4ab2b0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_870.pdf deleted file mode 100644 index 5b75fbed15124e3a30b48f125faab1d09635ac31..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_885.pdf deleted file mode 100644 index a3efbee19139a892944ccc52c6c2cf713561cdcc..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_17_900.pdf deleted file mode 100644 index d0f7ba599c841996e62af1b3908d65866850cc51..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_17_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_1.pdf deleted file mode 100644 index 89667181cde55970234cfae88b2ba42445774538..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_15.pdf deleted file mode 100644 index de8d194ecdc4ec2e52548a885ad51d446f74b36f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_30.pdf deleted file mode 100644 index aa778f8b5b22877f84e00f4d8f747fbb1f12506f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_450.pdf deleted file mode 100644 index f5c9933af752d0a4fb61e24213d35a14d4f0f0fe..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_465.pdf deleted file mode 100644 index 1de164d286815df39272cc562238170e79abaccd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_480.pdf deleted file mode 100644 index bb3c7acb6262418da076eac846c0969a04a48a07..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_870.pdf deleted file mode 100644 index 9acd36e88578f366abbfe56cbaa92c9957d502f0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_885.pdf deleted file mode 100644 index fd2a28b63a24bdf7fa322c9556b3249b90ec17d7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_18_900.pdf deleted file mode 100644 index 467581eec92d056abd5ef95eb6dd2b88a36ca87c..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_18_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_1.pdf deleted file mode 100644 index ca87f5d7dd05e6a554862657a89847a186124bec..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_15.pdf deleted file mode 100644 index 5f8cb0ad3752e48204ddb92c9b3ade090766ec4f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_30.pdf deleted file mode 100644 index 9556e62806ec9345d49c99a84e3caa2b01628294..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_450.pdf deleted file mode 100644 index b3138b228b8848f429144a245543be22a8aa87be..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_465.pdf deleted file mode 100644 index ac8a96382812def7e60a8eddf1d73fec70db1263..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_480.pdf deleted file mode 100644 index 037f87d6dba281cdbbdd6fa7718ac154578cc1fc..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_870.pdf deleted file mode 100644 index b46c8bf74cb1ff14657608ed48258c1a7c9b95c6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_885.pdf deleted file mode 100644 index c39307439d90bcaf632408d502c3fb803b1cad89..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_19_900.pdf deleted file mode 100644 index ce76006ea4a2e11669e6b9dbb7ab118f46af4e55..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_19_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_1.pdf deleted file mode 100644 index 07416c5c11b4f4f8736299e813295187ae60a581..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_15.pdf deleted file mode 100644 index c75223326959a71e63bcc6e2393ea79bf4922456..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_30.pdf deleted file mode 100644 index 77f6dcdaf30bb2c26596fd640ddf9094175e24f6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_450.pdf deleted file mode 100644 index 4f5cd0f71f31bde37c73677ff8968f5452c83099..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_465.pdf deleted file mode 100644 index ee64c00053fcff284527820ecd54c609acb0fe8e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_480.pdf deleted file mode 100644 index f7ea94f1bcb97019ff48b5e314f17e64811ab021..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_870.pdf deleted file mode 100644 index 26ce3c7675f6fb449e16bb1ffcb756755f57d404..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_885.pdf deleted file mode 100644 index a39d51ae2e633b11088cdb7abd98c03abaaa1802..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_1_900.pdf deleted file mode 100644 index 9395fc73bd816979fceebc61043b260b07f2eeb6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_1_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_1.pdf deleted file mode 100644 index 050e745cadb4adac4d4c4418d727ca669c4c12fc..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_15.pdf deleted file mode 100644 index 63e3484e64899469e1aa4a654e66fb276ab3ecbb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_30.pdf deleted file mode 100644 index e8dcf1cc99bd0d35edee774717d30afd8939b5c6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_450.pdf deleted file mode 100644 index fd252f0c2f4119e2edb5888bb7d05624da9acedc..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_465.pdf deleted file mode 100644 index ba5635cd06c963ca127b0adbaa39eb9c9be37786..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_480.pdf deleted file mode 100644 index 143a756bbf5f10680f9a841ec044e2c97f53d995..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_870.pdf deleted file mode 100644 index fe19732eb737611ad63c40ab800579c2d76d6518..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_885.pdf deleted file mode 100644 index a0036568342a32a306075c8e4a94b016a394f208..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_20_900.pdf deleted file mode 100644 index a0cf296b66bca8776bd3bc06f8a701290f4c95d7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_20_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_1.pdf deleted file mode 100644 index 52aeee0ae9e580ef1893b52effa4bed9769fe7f1..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_15.pdf deleted file mode 100644 index 04eae66e2a4017e4c3d25e025e1be784c83e08ee..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_30.pdf deleted file mode 100644 index 719eb6ce34e2342dd825955ba9c0d058111bf1f1..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_450.pdf deleted file mode 100644 index f4168c8f68d0a354616b6482772184472b62ba49..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_465.pdf deleted file mode 100644 index b02d5691282b21101c880a92b30fd66373b092a9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_480.pdf deleted file mode 100644 index 44c1f1d4a582f30565f1493d3f3567509bf6ea4a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_870.pdf deleted file mode 100644 index b987aebf9213ee40c76f977290d756d0b481e076..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_885.pdf deleted file mode 100644 index 058284d246cd5f956ae6f8351127a04ef8592ffd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_21_900.pdf deleted file mode 100644 index efda9cea1e8cb7ba69af34fe645e97a280b2380e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_21_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_1.pdf deleted file mode 100644 index 2780892ef0a1488eee7460aa325569d20569ef3d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_15.pdf deleted file mode 100644 index fc59a4ba57171df04e475e17492f0c4ca8426d41..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_30.pdf deleted file mode 100644 index 8ba1e59f7c41147ada861f117f739352f4f3aa5a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_450.pdf deleted file mode 100644 index da53edba3e388c9577d06d6f4d1cde178146fb88..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_465.pdf deleted file mode 100644 index 5a4651083df86056b4c4b762fb84c622c082d63c..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_480.pdf deleted file mode 100644 index 85e4a6b8ac8149f2f779aba54df0df71f6d027f8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_870.pdf deleted file mode 100644 index 5ec9bba4769508fe8f2f9cb4917865e8a7a441cb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_885.pdf deleted file mode 100644 index f4c9030f7fe32de905856a3f16facfee0f9486e0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_22_900.pdf deleted file mode 100644 index 25967c573e697fcd8c6ca073a0daea816a7dd135..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_22_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_1.pdf deleted file mode 100644 index 8b39130cbab25ae1dfd5b679123d03ea87f41932..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_15.pdf deleted file mode 100644 index 67d3d058e190fe110600ec293bc6863ea202f1e6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_30.pdf deleted file mode 100644 index 44bfcca9b1bcdb770bcabfc09580e3aa6f5304d6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_450.pdf deleted file mode 100644 index 24289b0016a70849b4bd8ab6b6ccf5bcb0f05bcd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_465.pdf deleted file mode 100644 index 3b06a526aa1e424b417846584a3b9c08ea740a9f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_480.pdf deleted file mode 100644 index 17df87f69bdb25cb4b748c661c6d89c52c880650..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_870.pdf deleted file mode 100644 index 071121605a1e2416d4360cc03107a6d4a91d139f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_885.pdf deleted file mode 100644 index a4b56df3aacbb030a6bfa6b6d545c36050f5a5c7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_23_900.pdf deleted file mode 100644 index 636a4f32bb06d97af21b40e4210752deedf526d1..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_23_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_1.pdf deleted file mode 100644 index 5daebd3869e49e977136344d9e1812a49642ef62..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_15.pdf deleted file mode 100644 index 84de44e5ae99b0747ae8a720fb4fa6ca5dc1144f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_30.pdf deleted file mode 100644 index fb9bfb7df29a8b6a004de8620ec44f4496782ac0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_450.pdf deleted file mode 100644 index dae159e1bdc3915f2c6be3360fb1e33c98ce0845..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_465.pdf deleted file mode 100644 index 66703191223e0c429b06f4caa5eaf0f0c9c2b008..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_480.pdf deleted file mode 100644 index 632958c08c29047c9e5c81c98fdb0212ff5d8858..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_870.pdf deleted file mode 100644 index d14fc24676314fa20f4da10c63b6dfe7ecc8a5af..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_885.pdf deleted file mode 100644 index f8e318d8e666e26a8798cd7a101e7eeb15d2d228..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_24_900.pdf deleted file mode 100644 index 6d79e99a41192fa0ae51018cde64ee2485d44d21..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_24_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_1.pdf deleted file mode 100644 index 2934ce5bbddb23d39df655979f21f5e3f6143e05..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_15.pdf deleted file mode 100644 index 1390918ea965e1b99503eda89c457afa778926b4..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_30.pdf deleted file mode 100644 index 09f86f1bc0aaffe8f5858f4e94fb78f17c6849de..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_450.pdf deleted file mode 100644 index a7e31924bd10bbcc49b8ddc81d9083263495b77f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_465.pdf deleted file mode 100644 index f4fb3b29eeede8805b487fc51b682cd7f8d5dcc6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_480.pdf deleted file mode 100644 index 4000d8251d3ad3a92773258edbb5c1d930a0ca7e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_870.pdf deleted file mode 100644 index 4d828beddb52ed3077225a83d8584bd5c7700521..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_885.pdf deleted file mode 100644 index e135016d508eac48e54578f6c34c504cd517d0cb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_25_900.pdf deleted file mode 100644 index 06397286d5c8996cac16dc031d230d24eb3001a1..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_25_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_1.pdf deleted file mode 100644 index 69d6a52c6ebfe7cdbb0e639f2fba5972e03ba916..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_15.pdf deleted file mode 100644 index 2c3d324fe11205e49d814537f4b4d008c1413e2f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_30.pdf deleted file mode 100644 index 1ea16b8c491c12ec2c1eacf4634ca1bfff206ab7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_450.pdf deleted file mode 100644 index e1a059a5ff25a25b72d48f9fa6222fbbaee8c9ad..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_465.pdf deleted file mode 100644 index 69313d8b8f7162ff50952350a69e962903a3dd61..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_480.pdf deleted file mode 100644 index f4ca54379c1c7bf1d38fd75f679c42a9f01f55b3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_870.pdf deleted file mode 100644 index 416bc3992676514203a59995a91c02a0f79eff87..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_885.pdf deleted file mode 100644 index 91ed0c4eb8277ffb87582efe9b0da9efbf23c979..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_26_900.pdf deleted file mode 100644 index 4983e3e7061b16a22a493fab3b107969e91389f2..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_26_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_1.pdf deleted file mode 100644 index 0f2b40520b295a5d858954de5c0bb863dfd72adf..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_15.pdf deleted file mode 100644 index d95628d5b83a0eceaf2f4d1ac47be8bcdc18bf25..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_30.pdf deleted file mode 100644 index 62273f3e4d26b9e167255108b867bada08d60de8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_450.pdf deleted file mode 100644 index ad4af10c409d0d3703cbbdce9ab9755aa82da602..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_465.pdf deleted file mode 100644 index 146aca8ed20e928f9459c102f4ca52c5e6d0cda3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_480.pdf deleted file mode 100644 index aba4e4a6cab3767f5d74c8f8012b6b66bc3c91b2..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_870.pdf deleted file mode 100644 index 5fd443b15c20fac980edccff8a75402273203f8b..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_885.pdf deleted file mode 100644 index 805b86a19f9ce7bb56362bfe3273c97f8407284d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_27_900.pdf deleted file mode 100644 index 12e58292a8eb45390043bd03f08d2e8869efa6bd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_27_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_1.pdf deleted file mode 100644 index 3bd2d63bada71089b52e4aa9ac039341f12bd772..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_15.pdf deleted file mode 100644 index 068d098c170de35c1c9596f81d8de477397e0987..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_30.pdf deleted file mode 100644 index 1e561ac190f358d494b4e32e494d61718e3085d9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_450.pdf deleted file mode 100644 index 0b821cee79f13fb9556c79467dcc1cda02caeb0d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_465.pdf deleted file mode 100644 index 33343bf551630b4736b854c28799ca2b030a5d20..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_480.pdf deleted file mode 100644 index 41a1e8c49046eccb9afa0cc11cd5989c6c49fa04..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_870.pdf deleted file mode 100644 index 5c391c15585da00e5cb2d9b1740749a886c7a92d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_885.pdf deleted file mode 100644 index 2d5ddf1e29be2b1fcd330d6d910118aeec72c70d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_28_900.pdf deleted file mode 100644 index 179b4a749e2e12a3b5fd246e6e02c3259969a535..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_28_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_1.pdf deleted file mode 100644 index 5af839d323f0f8e1bdb996c9cb1c70780688bb65..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_15.pdf deleted file mode 100644 index 5675f9f272713aa5bdb80e6e7a2b59c11654c416..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_30.pdf deleted file mode 100644 index cb0be08ca7319427375700b38ccdb819eca62568..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_450.pdf deleted file mode 100644 index 0fd86a1e27392750dd2a12430529c415cf84ff1f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_465.pdf deleted file mode 100644 index 78250863aeb4322507bd69de16c21aded54250d9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_480.pdf deleted file mode 100644 index 61999453202b350504c702ee7baabda8470bad01..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_870.pdf deleted file mode 100644 index 65346b3f56a7539d06ac64691fe0323734d3dc71..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_885.pdf deleted file mode 100644 index a7b8b6efb21ca3c1bebeae0115e8beffbf0b94c3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_29_900.pdf deleted file mode 100644 index 99d41ecc203aa9d731ce1524798f85e7e5c4fd1e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_29_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_1.pdf deleted file mode 100644 index 29311097cf069bf2b82bcf360003fb81020031b4..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_15.pdf deleted file mode 100644 index 15c0cd3dab49be01b67ca1b85a72a6320d5eee63..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_30.pdf deleted file mode 100644 index 8c2028caa5918081a17d9a56740c7eb2f273771b..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_450.pdf deleted file mode 100644 index 9ff2b2c9814b369ed1f66fd4c7e9d9a273b3d35d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_465.pdf deleted file mode 100644 index ae27b8b7c34382952a9cd88cf71127946e45ad0a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_480.pdf deleted file mode 100644 index 98e651751841f10f719747ed3f9fda691de7f4cb..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_870.pdf deleted file mode 100644 index 13fa9ef82d1de0a53623472dc4e9ea03970d75a8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_885.pdf deleted file mode 100644 index 4d6cbd071b3c2d82e212527c50276e52bee59916..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_2_900.pdf deleted file mode 100644 index e9705ff34aab3d6f15ca7306a83c75ef42047299..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_2_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_1.pdf deleted file mode 100644 index 59dcfb37634780488fc2c161ef3b05adcd3de72e..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_15.pdf deleted file mode 100644 index b94f6c984812e71e1fafb170cb56c2b31435523a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_30.pdf deleted file mode 100644 index 3f73ad2ff29c9cd20de1dd7e18cc9a25fe47e0f4..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_450.pdf deleted file mode 100644 index 6b0e1e818b41c9c2d43afd5907b19a50951f1614..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_465.pdf deleted file mode 100644 index b5b787329e52e1fac5884f6ac9df87bf6febf616..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_480.pdf deleted file mode 100644 index 9ea60c6f0bddd9b4383f243fd687f3eaf8da4e4f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_870.pdf deleted file mode 100644 index 230ebcb3d0f77aeef32bf71ceca49ac18ffb6a8f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_885.pdf deleted file mode 100644 index 5135b7ab2338cdddbb197e69b2b13a9c85a68e1f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_30_900.pdf deleted file mode 100644 index 3e45a41939e3246a6a2c5ace35c035c4b5a27c52..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_30_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_1.pdf deleted file mode 100644 index f9e9e4f6222991dd998ef14501d553ed69a6964f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_15.pdf deleted file mode 100644 index bb7b7fb33be6d69bf5877fdf83ca964ec5ae2350..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_30.pdf deleted file mode 100644 index 11b061fcbac7eee5a26550c98f0a7d3a8ca6ae10..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_450.pdf deleted file mode 100644 index f25c4948b404e503e3acc78fdfb19fd7859cc5b7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_465.pdf deleted file mode 100644 index 5e103f28ff82c637118d7367cdd2dab30b2bba47..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_480.pdf deleted file mode 100644 index f407a79aaba84bdb6a3c39dc1a4cc4f79c6ba03d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_870.pdf deleted file mode 100644 index 6788e3815b666bb2a6cd419de726ba6656bcee98..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_885.pdf deleted file mode 100644 index ad0ffcd822a50254a7c82e5b7b29d6e23deb4f31..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_3_900.pdf deleted file mode 100644 index 18aae0aee0cb8927af07285e334ffcb6727c7008..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_3_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_1.pdf deleted file mode 100644 index ddc75f57659352664ddbd3a880c1bc4f5ad86948..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_15.pdf deleted file mode 100644 index 9e86850050f0d9850d4f755ea98b3a71a3015e72..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_30.pdf deleted file mode 100644 index 975611dae7e133dbb14232501bc22c1aafc267ad..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_450.pdf deleted file mode 100644 index 44b16292c5a0620fb1e06545a64e8cf5d6aac20b..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_465.pdf deleted file mode 100644 index 86e6cd7892c683f1224d08551fb1c1f7714a19a2..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_480.pdf deleted file mode 100644 index 9f3ffd101464b7f1809276314d07cb5ffdb5bb8d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_870.pdf deleted file mode 100644 index 44c0aed4c914ba822065e2795b47d3219f10c8a7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_885.pdf deleted file mode 100644 index 0f92cf57e48b0636d8e289adbf20a079cf810a0c..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_4_900.pdf deleted file mode 100644 index 77c088a4aea35e158eac7075d1a940cb52cc7061..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_4_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_1.pdf deleted file mode 100644 index 66a60748808b3ff21141dab6a8dd00f021756edf..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_15.pdf deleted file mode 100644 index fd30a7b79aac03b4f5e89868d316d0e1d379b62b..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_30.pdf deleted file mode 100644 index 73145994416fcfaadd9b413e1493f523408a7154..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_450.pdf deleted file mode 100644 index 4501bd0b13dc1165ff3b2643b5a700d39dc0123a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_465.pdf deleted file mode 100644 index 1f47e66b4d28e6c8caabe2247f97fb623758f8cd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_480.pdf deleted file mode 100644 index 29f9e1643a2c2f6aa0a896f590c8b06e32bba7ef..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_870.pdf deleted file mode 100644 index 9b8228f6467adee7c24e49d7805020caba7cec45..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_885.pdf deleted file mode 100644 index 4758075755efac78541b14581358e24043ce0b79..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_5_900.pdf deleted file mode 100644 index faa67d7b4ce5eae99f7121cf3f5aa8b3b029a2c3..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_5_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_1.pdf deleted file mode 100644 index 7ca54669975c9d960a84e0f3931505f030b6769b..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_15.pdf deleted file mode 100644 index 24480402a7f3e545517276e8a3ad4c91c9097c2f..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_30.pdf deleted file mode 100644 index f0de42bcad22e843add89fed822767f0cf716a3a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_450.pdf deleted file mode 100644 index 00d8307fc35144d60443713b41e863f8a901e8e0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_465.pdf deleted file mode 100644 index 5831ea81375700d1491b5ea668db69ccf2dbab26..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_480.pdf deleted file mode 100644 index 7963211aa1c5a7a56157f113e8196beb42cfd21d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_870.pdf deleted file mode 100644 index 3efe77d131c3d857dbfdf6f2c925f55419526352..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_885.pdf deleted file mode 100644 index b0d2f48998c98e2fd8a7076a71ae7f85d26779af..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_6_900.pdf deleted file mode 100644 index 37f210a3145a1d1545f5ff1374b84f714aa2c33a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_6_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_1.pdf deleted file mode 100644 index 1369a4856bd61e8dfffbb5de1bb1775d62a88672..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_15.pdf deleted file mode 100644 index d5e22f21d78483d47a741da1c22e47c75794e5f8..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_30.pdf deleted file mode 100644 index c071ed31c94d502dbaac5207fa8b04b0c8ab0f5a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_450.pdf deleted file mode 100644 index 53483be54c4f276cc0614dfb3a34fcb56b6670b9..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_465.pdf deleted file mode 100644 index b7415ea0e13d5ceee5fc17cf2641f5474499e66a..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_480.pdf deleted file mode 100644 index 0a83ba246c17b1f2d506633aec18808fd2310895..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_870.pdf deleted file mode 100644 index b553b03aae3f70a4c6a98b58f1e609bd2e18cdd4..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_885.pdf deleted file mode 100644 index b574481aec724b6b0b38d3b64226271ee810fd34..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_7_900.pdf deleted file mode 100644 index bf4678daf130cd89f2f5bc8dd1afca21c3b352cd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_7_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_1.pdf deleted file mode 100644 index 664e328f68bbc59b7e36bd9280f99ebf3b8d6447..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_15.pdf deleted file mode 100644 index 92f01b46a7f72e942cd9c9f22663f37c7be9efa1..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_30.pdf deleted file mode 100644 index 506dc199ee779eb5ed26237b01034afb47c44715..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_450.pdf deleted file mode 100644 index d17e457a046d0593df74122f8ee3bada2b475bf0..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_465.pdf deleted file mode 100644 index fc3ba7d926d33d7f9ff1fd3a820d49bbd6668782..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_480.pdf deleted file mode 100644 index 8fc9d27e1f8f4f9e6ca6d54404489c10b0211414..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_870.pdf deleted file mode 100644 index 254f12c839b2f42c100b3bbc3a486e04a47f1da6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_885.pdf deleted file mode 100644 index d1c4d94500bf48c2e490c844209489524eb6f0c7..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_8_900.pdf deleted file mode 100644 index a19580ac285770daad032c7eef51e29efcfe23dd..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_8_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_1.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_1.pdf deleted file mode 100644 index cc93795850446ec9add7c6dc94e6cd7cabda3add..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_1.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_15.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_15.pdf deleted file mode 100644 index f02ec52c66877c1622968f109ccfa4e8c2fb006d..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_15.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_30.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_30.pdf deleted file mode 100644 index ae517d4cdba18cd615d2c61443d0ac9eaec23961..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_30.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_450.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_450.pdf deleted file mode 100644 index ffaad6ddbca4ad25465232e99f5f5581b04dddd4..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_450.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_465.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_465.pdf deleted file mode 100644 index c203e33e68ea5d2158f0bbcbf6e81c1e46e674f1..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_465.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_480.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_480.pdf deleted file mode 100644 index 4caba44a05c244e09b89b54719f3711677663d22..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_480.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_870.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_870.pdf deleted file mode 100644 index cf0de401a8aa103c2a4c0795fde7818383f8e673..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_870.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_885.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_885.pdf deleted file mode 100644 index c070ce3d0751d4f6b836a75cbc6b96be289987d6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_885.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_900.pdf b/ObservationSim/PSF/PSFInterp/test/figs/psf_9_900.pdf deleted file mode 100644 index 8285aec7e8f463ae2416486ec7de8e779c0809c6..0000000000000000000000000000000000000000 Binary files a/ObservationSim/PSF/PSFInterp/test/figs/psf_9_900.pdf and /dev/null differ diff --git a/ObservationSim/PSF/PSFInterp/test/plotPSFMats.py b/ObservationSim/PSF/PSFInterp/test/plotPSFMats.py deleted file mode 100644 index 5cb176b2ea0b3c95b8e09acfe8249e7be2f9c74a..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/plotPSFMats.py +++ /dev/null @@ -1,99 +0,0 @@ -import sys -from itertools import islice - -import mpi4py.MPI as MPI - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -mpl.use('Agg') - -import scipy.io -#import xlrd -from scipy import ndimage - -sys.path.append("/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF_20210108") -import PSFConfig as myConfig -import PSFUtil as myUtil - -NPSF = 900 -############################## -############################## -############################## -def test_psfPlot(iccd, ipsf, psfPath): - plt.cla() - plt.close('all') - #psf质心位置检查,图像切片程序检查 - fig = plt.figure(figsize=(4,16)) - plt.subplots_adjust(wspace=0.1, hspace=0.1) - - psfSet = [] - psfSetX= [] - for iwave in range(1, 5): - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=False) - psfSet.append(psfInfo) - - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=True) - psfSetX.append(psfInfo) - - ax = plt.subplot(4,1,iwave) - psfMat = psfSet[iwave-1]['psfMat'] - pixsize = psfSet[iwave-1]['pixsize']*1e-3 #microns -> mm - print('psfMat-shape:', psfMat.shape) - - npix = psfMat.shape[0] - pixCutEdge= int(npix/2-15) - plt.imshow((psfMat[pixCutEdge:npix-pixCutEdge, pixCutEdge:npix-pixCutEdge]), origin='lower') - plt.plot([npix/2-pixCutEdge, npix/2-pixCutEdge],[0, (npix/2-pixCutEdge)*2-1],'w--') - plt.plot([0, (npix/2-pixCutEdge)*2-1],[npix/2-pixCutEdge, npix/2-pixCutEdge],'w--') - - imgX = psfSet[iwave-1]['image_x'] #in mm - imgY = psfSet[iwave-1]['image_y'] #in mm - #cenX = imgX +deltX - #cenY = imgY -deltY - - deltX= psfSet[iwave-1]['centroid_x'] #in mm - deltY= psfSet[iwave-1]['centroid_y'] #in mm - cenPix_X = npix/2 + deltX/pixsize - cenPix_Y = npix/2 + deltY/pixsize - plt.plot([cenPix_X-pixCutEdge],[cenPix_Y-pixCutEdge], 'rx', ms = 20) - - deltX= psfSetX[iwave-1]['centroid_x'] #in mm - deltY= psfSetX[iwave-1]['centroid_y'] #in mm - cenPix_X = npix/2 + deltX/pixsize - cenPix_Y = npix/2 + deltY/pixsize - plt.plot([cenPix_X-pixCutEdge],[cenPix_Y-pixCutEdge], 'bx', ms = 10, mew=2) - - maxX = psfSet[iwave-1]['max_x'] - maxY = psfSet[iwave-1]['max_y'] - maxPix_X = npix/2 + maxX/pixsize - maxPix_Y = npix/2 + maxY/pixsize - plt.plot([maxPix_X-pixCutEdge],[maxPix_Y-pixCutEdge], 'r+', ms = 20) - - - img = psfMat/np.sum(psfMat) - y, x = ndimage.center_of_mass(img) - print(x, y) - print(cenPix_X, cenPix_Y) - plt.plot([x-pixCutEdge],[y-pixCutEdge], 'wx', ms = 5, mew=1) - plt.annotate('iccd={:}, iwave={:}, ipsf={:}'.format(iccd, iwave, ipsf), [0,(npix/2-pixCutEdge)*2-5], c='w', size=15) - plt.savefig('figs/psf_{:}_{:}.pdf'.format(iccd, ipsf)) - - print('psfSet has been loaded.') - print('Usage: psfSet[i][keys]') - print('psfSet.keys:', psfSet[0].keys()) - - -############################## -############################## -############################## -if __name__=='__main__': - iccd = 2 #[1, 30] - iwave= 2 #[1, 4] - ipsf = 46 #[1, 100] - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90' - - iipsf = [1, 15, 30, 450, 465, 480, 870, 885, 900] - for iccd in range(1, 31): - for ipsf in iipsf: - test_psfPlot(iccd, ipsf, psfPath) diff --git a/ObservationSim/PSF/PSFInterp/test/plotPSFMats_REE50.py b/ObservationSim/PSF/PSFInterp/test/plotPSFMats_REE50.py deleted file mode 100644 index 81e00f1df589eed22155fb25c432d2a00e678877..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/plotPSFMats_REE50.py +++ /dev/null @@ -1,117 +0,0 @@ -import sys -from itertools import islice - -import mpi4py.MPI as MPI - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -mpl.use('Agg') - -import scipy.io -#import xlrd -from scipy import ndimage - -sys.path.append("/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF_20210108") -import PSFConfig as myConfig -import PSFUtil as myUtil - -NPSF = 900 -############################## -############################## -############################## -def test_psfPlot(iccd, iwave, ipsf, psfPath, r50): - #psf质心位置检查,图像切片程序检查 - plt.cla() - plt.close("all") - - fig = plt.figure(figsize=(4,8)) - plt.subplots_adjust(wspace=0.1, hspace=0.1) - - #psfSet = [] - #psfSetX= [] - - #for iwave in range(1, 5): - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=False) - #psfSet.append(psfInfo) - - psfInfoX = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=True) - #psfSetX.append(psfInfo) - - ax = plt.subplot(2,1,1) - psfMat = psfInfo['psfMat'] - pixsize = psfInfo['pixsize']*1e-3 #microns -> mm - print('psfMat-shape:', psfMat.shape) - - npix = psfMat.shape[0] - pixCutEdge= int(npix/2-15) - plt.imshow(np.log10(1e-6+psfMat[pixCutEdge:npix-pixCutEdge, pixCutEdge:npix-pixCutEdge]), origin='lower') - plt.plot([npix/2-pixCutEdge, npix/2-pixCutEdge],[0, (npix/2-pixCutEdge)*2-1],'w--') - plt.plot([0, (npix/2-pixCutEdge)*2-1],[npix/2-pixCutEdge, npix/2-pixCutEdge],'w--') - - imgX = psfInfo['image_x'] #in mm - imgY = psfInfo['image_y'] #in mm - #cenX = imgX +deltX - #cenY = imgY -deltY - - #deltX= psfSet[iwave-1]['centroid_x'] #in mm - #deltY= psfSet[iwave-1]['centroid_y'] #in mm - #cenPix_X = npix/2 + deltX/pixsize - #cenPix_Y = npix/2-1 + deltY/pixsize - #plt.plot([cenPix_X-pixCutEdge],[cenPix_Y-pixCutEdge], 'rx', ms = 20) - - deltX= psfInfoX['centroid_x'] #in mm - deltY= psfInfoX['centroid_y'] #in mm - cenPix_X = npix/2 + deltX/pixsize - cenPix_Y = npix/2 + deltY/pixsize - plt.plot([cenPix_X-pixCutEdge],[cenPix_Y-pixCutEdge], 'bx', ms = 10, mew=2) - - #maxX = psfSet[iwave-1]['max_x'] - #maxY = psfSet[iwave-1]['max_y'] - #maxPix_X = npix/2 + maxX/pixsize - #maxPix_Y = npix/2-1 + maxY/pixsize - #plt.plot([maxPix_X-pixCutEdge],[maxPix_Y-pixCutEdge], 'r+', ms = 20) - - - #img = psfMat/np.sum(psfMat) - #y, x = ndimage.center_of_mass(img) - #print(x, y) - #print(cenPix_X, cenPix_Y) - #plt.plot([x-pixCutEdge],[y-pixCutEdge], 'wx', ms = 5, mew=1) - - plt.annotate('iccd={:}, iwave={:}, ipsf={:}'.format(iccd, iwave, ipsf), [0,(npix/2-pixCutEdge)*2-5], c='w', size=15) - - ax = plt.subplot(2,1,2) - cenPix = [cenPix_X, cenPix_Y] - img = myUtil.psfTailor(psfMat, apSizeInArcsec=2*r50, psfSampleSizeInMicrons=2.5, cenPix=cenPix) - plt.imshow(np.log10(1e-6+img[pixCutEdge:npix-pixCutEdge, pixCutEdge:npix-pixCutEdge]), origin='lower') - plt.plot([npix/2-pixCutEdge, npix/2-pixCutEdge],[0, (npix/2-pixCutEdge)*2-1],'w--') - plt.plot([0, (npix/2-pixCutEdge)*2-1],[npix/2-pixCutEdge, npix/2-pixCutEdge],'w--') - - - plt.savefig('figs/psf_{:}_{:}_2r50_log.pdf'.format(iccd, ipsf)) - - #print('psfSet has been loaded.') - #print('Usage: psfSet[i][keys]') - #print('psfSet.keys:', psfSet[0].keys()) - - -############################## -############################## -############################## -if __name__=='__main__': - iccd = 2 #[1, 30] - iwave= 2 #[1, 4] - ipsf = 46 #[1, 100] - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3' - - REE50 = np.loadtxt('REE50_w{:}.txt'.format(iwave)) - iipsf = [1, 15, 30, 450, 465, 480, 870, 885, 900] - for iccd in range(1, 31): - r50 = REE50[iccd-1] - print(r50) - for ipsf in iipsf: - test_psfPlot(iccd, iwave, ipsf, psfPath, r50) - - - diff --git a/ObservationSim/PSF/PSFInterp/test/plotPSFMats_centroid.py b/ObservationSim/PSF/PSFInterp/test/plotPSFMats_centroid.py deleted file mode 100644 index 9b4ef26b13d5f06d4770786c5e50bb28f76a929b..0000000000000000000000000000000000000000 --- a/ObservationSim/PSF/PSFInterp/test/plotPSFMats_centroid.py +++ /dev/null @@ -1,99 +0,0 @@ -import sys -from itertools import islice - -import mpi4py.MPI as MPI - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -mpl.use('Agg') - -import scipy.io -#import xlrd -from scipy import ndimage - -sys.path.append("/public/home/weichengliang/lnData/CSST_new_framwork/csstPSF_20210108") -import PSFConfig as myConfig -import PSFUtil as myUtil - -NPSF = 900 -############################## -############################## -############################## -def test_psfPlot(iccd, ipsf, psfPath): - plt.cla() - plt.close('all') - #psf质心位置检查,图像切片程序检查 - fig = plt.figure(figsize=(4,16)) - plt.subplots_adjust(wspace=0.1, hspace=0.1) - - psfSet = [] - psfSetX= [] - for iwave in range(1, 5): - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=False) - psfSet.append(psfInfo) - - psfInfo = myConfig.LoadPSF(iccd, iwave, ipsf, psfPath, InputMaxPixelPos=True, PSFCentroidWgt=True) - psfSetX.append(psfInfo) - - ax = plt.subplot(4,1,iwave) - psfMat = psfSetX[iwave-1]['psfMat'] - pixsize = psfSet[iwave-1]['pixsize']*1e-3 #microns -> mm - print('psfMat-shape:', psfMat.shape) - - npix = psfMat.shape[0] - pixCutEdge= int(npix/2-15) - plt.imshow((psfMat[pixCutEdge:npix-pixCutEdge, pixCutEdge:npix-pixCutEdge]), origin='lower') - plt.plot([npix/2-pixCutEdge, npix/2-pixCutEdge],[0, (npix/2-pixCutEdge)*2-1],'w--') - plt.plot([0, (npix/2-pixCutEdge)*2-1],[npix/2-pixCutEdge, npix/2-pixCutEdge],'w--') - - imgX = psfSet[iwave-1]['image_x'] #in mm - imgY = psfSet[iwave-1]['image_y'] #in mm - #cenX = imgX +deltX - #cenY = imgY -deltY - - deltX= psfSet[iwave-1]['centroid_x'] #in mm - deltY= psfSet[iwave-1]['centroid_y'] #in mm - cenPix_X = npix/2 + deltX/pixsize - cenPix_Y = npix/2 + deltY/pixsize - plt.plot([cenPix_X-pixCutEdge],[cenPix_Y-pixCutEdge], 'rx', ms = 20) - - deltX= psfSetX[iwave-1]['centroid_x'] #in mm - deltY= psfSetX[iwave-1]['centroid_y'] #in mm - cenPix_X = npix/2 + deltX/pixsize - cenPix_Y = npix/2 + deltY/pixsize - plt.plot([cenPix_X-pixCutEdge],[cenPix_Y-pixCutEdge], 'bx', ms = 10, mew=2) - - maxX = psfSet[iwave-1]['max_x'] - maxY = psfSet[iwave-1]['max_y'] - maxPix_X = npix/2 + maxX/pixsize - maxPix_Y = npix/2 + maxY/pixsize - plt.plot([maxPix_X-pixCutEdge],[maxPix_Y-pixCutEdge], 'r+', ms = 20) - - - img = psfMat/np.sum(psfMat) - y, x = ndimage.center_of_mass(img) - print(x, y) - print(cenPix_X, cenPix_Y) - plt.plot([x-pixCutEdge],[y-pixCutEdge], 'wx', ms = 5, mew=1) - plt.annotate('iccd={:}, iwave={:}, ipsf={:}'.format(iccd, iwave, ipsf), [0,(npix/2-pixCutEdge)*2-5], c='w', size=15) - plt.savefig('figs/psf_{:}_{:}.pdf'.format(iccd, ipsf)) - - print('psfSet has been loaded.') - print('Usage: psfSet[i][keys]') - print('psfSet.keys:', psfSet[0].keys()) - - -############################## -############################## -############################## -if __name__=='__main__': - iccd = 2 #[1, 30] - iwave= 2 #[1, 4] - ipsf = 46 #[1, 100] - psfPath = '/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90' - - iipsf = [1, 15, 30, 450, 465, 480, 870, 885, 900] - for iccd in range(1, 31): - for ipsf in iipsf: - test_psfPlot(iccd, ipsf, psfPath) diff --git a/ObservationSim/PSF/__init__.py b/ObservationSim/PSF/__init__.py index e8823072b0f52b720d37229253a3924c4c7a5e81..d0ea11850ebb2728337a2b2ce76d714b4591fb5a 100755 --- a/ObservationSim/PSF/__init__.py +++ b/ObservationSim/PSF/__init__.py @@ -1,4 +1,5 @@ from .PSFModel import PSFModel from .PSFGauss import PSFGauss -from .PSFInterp.PSFInterp import PSFInterp +# from .PSFInterp.PSFInterp import PSFInterp +from .PSFInterp import PSFInterp from .FieldDistortion import FieldDistortion \ No newline at end of file diff --git a/config/config_C3.yaml b/config/config_C3.yaml index 419f4650f2900077ea87003f9439321c81761320..e845f48e0c1824427cefb224e75e991d90d48b51 100644 --- a/config/config_C3.yaml +++ b/config/config_C3.yaml @@ -10,9 +10,9 @@ # Can add some of the command-line arguments here as well; # OK to pass either way or both, as long as they are consistent # work_dir: "/public/home/fangyuedong/sim_code_release/CSST/test/" -work_dir: "/public/home/fangyuedong/test/CSST/workplace/" +work_dir: "/public/home/fangyuedong/current_csst/CSST/workplace/" data_dir: "/data/simudata/CSSOSDataProductsSims/data/" -run_name: "TEST_astrometry_FD_30s" +run_name: "TEST_importlib" # (Optional) a file of point list # if you just want to run default pointing: @@ -35,7 +35,7 @@ run_option: out_cat_only: NO # Only simulate stars? - star_only: NO + star_only: YES # Only simulate galaxies? galaxy_only: NO @@ -52,7 +52,7 @@ obs_setting: survey_type: "All" # Exposure time [seconds] - exp_time: 30. + exp_time: 150. # Observation starting date & time # (Subject to change) @@ -75,7 +75,7 @@ obs_setting: # - give a list of indexes of pointings: [ip_1, ip_2...] # - run all pointings: null # Note: only valid when a pointing list is specified - run_pointings: [1, 2, 3] + run_pointings: [1] # Run specific chip(s): # - give a list of indexes of chips: [ip_1, ip_2...] @@ -84,7 +84,7 @@ obs_setting: run_chips: [1, 26, 29, 6, 7, 22, 23, 19, 20] # Whether to enable astrometric modeling - astrometric_lib: "libshao.so" + # astrometric_lib: "libshao.so" enable_astrometric_model: True ############################################### @@ -102,17 +102,17 @@ SED_templates_path: galaxy_SED: "Templates/Galaxy/" # TODO: should the following path settings be made hidden from user? -Efficiency_curve_path: - filter_eff: "Filters/" - ccd_eff: "Filter_CCD_Mirror/ccd/" - mirror_eff: "Filter_CCD_Mirror/mirror_ccdnote.txt" +# Efficiency_curve_path: +# filter_eff: "Filters/" +# ccd_eff: "Filter_CCD_Mirror/ccd/" +# mirror_eff: "Filter_CCD_Mirror/mirror_ccdnote.txt" -CR_data_path: "CRdata/" -sky_data_path: "skybackground/sky_emiss_hubble_50_50_A.dat" +# CR_data_path: "CRdata/" +# sky_data_path: "skybackground/sky_emiss_hubble_50_50_A.dat" -SLS_path: - SLS_conf: "CONF" - SLS_norm: "normalize_filter" +# SLS_path: +# SLS_conf: "CONF" +# SLS_norm: "normalize_filter" ############################################### @@ -132,7 +132,8 @@ psf_setting: # path to PSF data # NOTE: only valid for "Interp" PSF - psf_dir: "csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90" + # psf_dir: "csstPSFdata/CSSOS_psf_20210108/CSST_psf_ciomp_2p5um_cycle3_ccr90" + psf_dir: "/data/simudata/CSSOSDataProductsSims/data/csstPSFdata/psfCube" # path to field-distortion model # Note: only valid when ins_effects: field_dist is "ON" diff --git a/run_C3.pbs b/run_C3.pbs index 4a0bfab832e03529266563ae3b7c437d5cf8b503..97f8972c1d72043341ac88643fab75653a0d3461 100755 --- a/run_C3.pbs +++ b/run_C3.pbs @@ -16,4 +16,4 @@ NP=80 date echo $NP -mpirun -np $NP python /public/home/fangyuedong/test/CSST/run_sim.py config_C3.yaml -c /public/home/fangyuedong/test/CSST/config +mpirun -np $NP python /public/home/fangyuedong/current_csst/CSST/run_sim.py config_C3.yaml -c /public/home/fangyuedong/current_csst/CSST/config diff --git a/setup.py b/setup.py index 5162fa91a410aa42c8ea6c665e0547dceb9371a4..605ed281f11f5f71cb0d08aa0b3a9c4e81432b5f 100644 --- a/setup.py +++ b/setup.py @@ -41,5 +41,14 @@ setup(name='CSSTSim', # 'Cython>=0.29.21' # 'numba>=0.50.1' # ] + package_data = { + 'ObservationSim.Astrometry.lib': ['libshao.so'], + 'ObservationSim.MockObject.data': ['*.dat'], + 'ObservationSim.Instrument.data': ['*.txt', '*.dat'], + 'ObservationSim.Instrument.data.ccd': ['*.txt'], + 'ObservationSim.Instrument.data.filters': ['*.txt', '*.list', '*.dat'], + 'ObservationSim.Instrument.data.sls_conf': ['*.conf', '*.fits'], + 'Catalog.data': ['*.fits'], + }, ext_modules = cythonize(extensions), ) \ No newline at end of file