diff --git a/sirepo_bluesky/sirepo_bluesky.py b/sirepo_bluesky/sirepo_bluesky.py index 9c771f5e..17e33f91 100644 --- a/sirepo_bluesky/sirepo_bluesky.py +++ b/sirepo_bluesky/sirepo_bluesky.py @@ -146,15 +146,7 @@ def compute_crystal_init(self, crystal_element): return res def compute_crystal_orientation(self, crystal_element): - res_init = self._post_json( - "stateless-compute", - { - "method": "crystal_init", - "optical_element": crystal_element, - "simulationId": self.sim_id, - "simulationType": self.sim_type, - }, - ) + res_init = self.compute_crystal_init(crystal_element) if res_init.pop("state") != "completed": raise SirepoBlueskyClientException("crystal_init returned error state") res = self._post_json( @@ -211,6 +203,40 @@ def get_datafile(self, file_index=-1): self._assert_success(response, url) return response.content + def process_beam_parameters(self): + res = self._post_json( + "stateless-compute", + { + "ebeam": self.data["models"]["electronBeam"], + "ebeam_position": self.data["models"]["electronBeamPosition"], + "method": "process_beam_parameters", + "simulationId": self.sim_id, + "simulationType": self.sim_type, + "source_type": self.data["models"]["simulation"]["sourceType"], + "undulator_length": self.data["models"]["undulator"]["length"], + "undulator_period": self.data["models"]["undulator"]["period"] / 1000.0, + "undulator_type": self.data["models"]["tabulatedUndulator"]["undulatorType"], + }, + ) + return res + + def process_undulator_definition(self): + res = self._post_json( + "stateless-compute", + { + "amplitude": self.data["models"]["undulator"]["verticalAmplitude"], + "method": "process_undulator_definition", + "methodSignature": "process_undulator_definitionverticalDeflectingParameter", + "simulationId": self.sim_id, + "simulationType": self.sim_type, + # Could not locate undulator_definition in source code, using "B" as a placeholder + "undulator_definition": "B", + "undulator_parameter": self.data["models"]["undulator"]["horizontalDeflectingParameter"], + "undulator_period": self.data["models"]["undulator"]["period"] / 1000.0, + }, + ) + return res + def simulation_list(self): """Returns a list of simulations for the authenticated user.""" return self._post_json("simulation-list", dict(simulationType=self.sim_type)) diff --git a/sirepo_bluesky/sirepo_ophyd.py b/sirepo_bluesky/sirepo_ophyd.py index 1df3874f..a522ada8 100644 --- a/sirepo_bluesky/sirepo_ophyd.py +++ b/sirepo_bluesky/sirepo_ophyd.py @@ -311,6 +311,46 @@ def set(self, value): return NullStatus() +class SirepoSignalCRL(SirepoSignal): + def set(self, value): + super().set(value) + ret = self.parent.connection.compute_crl_characteristics(self._sirepo_dict) + # State is added to the ret dict from compute_crl_characteristics and we + # want to make sure the crl element is updated properly when parameters are changed. + ret.pop("state") + # Update crl element + for cpt in ["absoluteFocusPosition", "focalDistance"]: + getattr(self.parent, cpt).put(ret[cpt]) + return NullStatus() + + +class SirepoSignalCrystal(SirepoSignal): + def set(self, value): + super().set(value) + ret = self.parent.connection.compute_crystal_orientation(self._sirepo_dict) + # State is added to the ret dict from compute_crl_characteristics and we + # want to make sure the crl element is updated properly when parameters are changed. + ret.pop("state") + # Update crl element + for cpt in [ + "dSpacing", + "grazingAngle", + "nvx" "nvy", + "nvz", + "outframevx" "outframevy" "outoptvx" "outoptvy", + "outoptvz", + "psi0i", + "psi0r", + "psiHBi", + "psiHBr", + "psiHi", + "psiHr", + "tvx" "tvy", + ]: + getattr(self.parent, cpt).put(ret[cpt]) + return NullStatus() + + def create_classes(sirepo_data, connection, create_objects=True, extra_model_fields=[]): classes = {} objects = {} diff --git a/sirepo_bluesky/tests/test_stateless_compute.py b/sirepo_bluesky/tests/test_stateless_compute.py index 95c65d36..8753bb5b 100644 --- a/sirepo_bluesky/tests/test_stateless_compute.py +++ b/sirepo_bluesky/tests/test_stateless_compute.py @@ -1,16 +1,20 @@ import json +import os import pprint import bluesky.plan_stubs as bps import dictdiffer import numpy as np +import vcr -from sirepo_bluesky.sirepo_bluesky import SirepoBluesky +import sirepo_bluesky.tests from sirepo_bluesky.sirepo_ophyd import create_classes from sirepo_bluesky.utils.json_yaml_converter import dict_to_file +cassette_location = os.path.join(os.path.dirname(sirepo_bluesky.tests.__file__), "vcr_cassettes") -def test_stateless_compute_basic(srw_chx_simulation, RE): + +def test_stateless_compute_crl_characteristics_basic(srw_chx_simulation, RE): browser_request = { "absoluteFocusPosition": -8.7725, "attenuationLength": 0.007313, @@ -84,65 +88,109 @@ def test_stateless_compute_basic(srw_chx_simulation, RE): assert np.allclose(newresponse1, newresponse2) -def test_stateless_compute_advanced(srw_chx_simulation, tmp_path): +@vcr.use_cassette(f"{cassette_location}/test_crl_characteristics.yml") +def test_stateless_compute_crl_characteristics_advanced(srw_chx_simulation, tmp_path): classes, objects = create_classes(srw_chx_simulation.data, connection=srw_chx_simulation) - fname = tmp_path / "test.json" - - _generate_test_file(fname) + _generate_test_crl_file(tmp_path / "test_crl_characteristics.json", objects["crl1"], srw_chx_simulation) - with open(fname, "r") as fp: + with open(tmp_path / "test_crl_characteristics.json", "r") as fp: combined_dict = json.load(fp) assert combined_dict for key in combined_dict["request"]: actual_response = srw_chx_simulation.compute_crl_characteristics(combined_dict["request"][key]) expected_response = combined_dict["response"][key] - assert actual_response.pop("state") == "completed" + actual_response.pop("state") assert np.allclose(_remove_dict_strings(actual_response), _remove_dict_strings(expected_response)) print(f"{key} passed") +@vcr.use_cassette(f"{cassette_location}/test_crystal_characteristics.yml") +def test_stateless_compute_crystal(srw_tes_simulation, tmp_path): + classes, objects = create_classes(srw_tes_simulation.data, connection=srw_tes_simulation) + + _generate_test_crystal_file( + tmp_path / "test_compute_crystal.json", objects["mono_crystal1"], srw_tes_simulation + ) + + with open(tmp_path / "test_compute_crystal.json", "r") as fp: + combined_dict = json.load(fp) + assert combined_dict + + for key in combined_dict["request"]: + actual_init = srw_tes_simulation.compute_crystal_init(combined_dict["request"][key]) + expected_init = combined_dict["init"][key] + actual_init.pop("state") + assert np.allclose(_remove_dict_strings(actual_init), _remove_dict_strings(expected_init)) + + actual_orientation = srw_tes_simulation.compute_crystal_orientation(combined_dict["request"][key]) + expected_orientation = combined_dict["orientation"][key] + actual_orientation.pop("state") + assert np.allclose(_remove_dict_strings(actual_orientation), _remove_dict_strings(expected_orientation)) + print(f"{key} passed") + + def _remove_dict_strings(dict): newarr = np.array([], dtype=np.float64) for key in dict: - try: - newarr = np.append(newarr, np.float64(dict[key])) - except ValueError: - pass + if dict[key] is not None: + try: + newarr = np.append(newarr, np.float64(dict[key])) + except ValueError: + pass return newarr -def _generate_test_file(fname): - srw_chx_simulation = SirepoBluesky("http://localhost:8000") - data, _ = srw_chx_simulation.auth("srw", "HXV1JQ5c") - classes, objects = create_classes(srw_chx_simulation.data, connection=srw_chx_simulation) - crl1 = objects["crl1"] - +def _generate_test_crl_file(fname, crl, simulation): combined_dict = {"request": {}, "response": {}} for radius in range(1, 201): - crl1.id._sirepo_dict["tipRadius"] = radius - expected_response = srw_chx_simulation.compute_crl_characteristics(crl1.id._sirepo_dict) - combined_dict["request"][f"radius{radius}"] = crl1.id._sirepo_dict.copy() + crl.id._sirepo_dict["tipRadius"] = radius + expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) + combined_dict["request"][f"radius{radius}"] = crl.id._sirepo_dict.copy() combined_dict["response"][f"radius{radius}"] = expected_response print(f"Radius {radius} added") - crl1.id._sirepo_dict["tipRadius"] = 1500 + crl.id._sirepo_dict["tipRadius"] = 1500 for lenses in range(1, 201): - crl1.id._sirepo_dict["numberOfLenses"] = lenses - expected_response = srw_chx_simulation.compute_crl_characteristics(crl1.id._sirepo_dict) - combined_dict["request"][f"lenses{lenses}"] = crl1.id._sirepo_dict.copy() + crl.id._sirepo_dict["numberOfLenses"] = lenses + expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) + combined_dict["request"][f"lenses{lenses}"] = crl.id._sirepo_dict.copy() combined_dict["response"][f"lenses{lenses}"] = expected_response print(f"Lenses {lenses} added") - crl1.id._sirepo_dict["numberOfLenses"] = 1 + crl.id._sirepo_dict["numberOfLenses"] = 1 for thickness in range(1, 201): - crl1.id._sirepo_dict["wallThickness"] = thickness - expected_response = srw_chx_simulation.compute_crl_characteristics(crl1.id._sirepo_dict) - combined_dict["request"][f"thickness{thickness}"] = crl1.id._sirepo_dict.copy() + crl.id._sirepo_dict["wallThickness"] = thickness + expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) + combined_dict["request"][f"thickness{thickness}"] = crl.id._sirepo_dict.copy() combined_dict["response"][f"thickness{thickness}"] = expected_response print(f"Thickness {thickness} added") - crl1.id._sirepo_dict["wallThickness"] = 80 + crl.id._sirepo_dict["wallThickness"] = 80 + + dict_to_file(combined_dict, fname) + + +def _generate_test_crystal_file(fname, crystal, simulation): + combined_dict = {"request": {}, "init": {}, "orientation": {}} + + for energy in range(1, 101): + crystal.id._sirepo_dict["energy"] = energy + combined_dict["request"][f"Si energy{energy}"] = crystal.id._sirepo_dict.copy() + combined_dict["init"][f"Si energy{energy}"] = simulation.compute_crystal_init(crystal.id._sirepo_dict) + combined_dict["orientation"][f"Si energy{energy}"] = simulation.compute_crystal_orientation( + crystal.id._sirepo_dict + ) + print(f"Si Energy {energy} added") + crystal.id._sirepo_dict["material"] = "Germanium (X0h)" + for energy in range(1, 21): + crystal.id._sirepo_dict["energy"] = energy + combined_dict["request"][f"Ge energy{energy}"] = crystal.id._sirepo_dict.copy() + combined_dict["init"][f"Ge energy{energy}"] = simulation.compute_crystal_init(crystal.id._sirepo_dict) + combined_dict["orientation"][f"Ge energy{energy}"] = simulation.compute_crystal_orientation( + crystal.id._sirepo_dict + ) + print(f"Ge Energy {energy} added") dict_to_file(combined_dict, fname) diff --git a/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml b/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml new file mode 100644 index 00000000..659a65ea --- /dev/null +++ b/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml @@ -0,0 +1,51602 @@ +interactions: +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.51923374558695,"attenuationLength":"0.007313","focalDistance":0.1188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 2, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.63927340825541,"attenuationLength":"0.007313","focalDistance":0.237666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":2,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 3, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.76012718666786,"attenuationLength":"0.007313","focalDistance":0.35650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":3,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 4, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.88180339107272,"attenuationLength":"0.007313","focalDistance":0.475333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":4,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 5, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.004310445209285,"attenuationLength":"0.007313","focalDistance":0.5941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":5,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 6, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.1276568882517,"attenuationLength":"0.007313","focalDistance":0.7130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":6,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 7, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.251851376793134,"attenuationLength":"0.007313","focalDistance":0.8318344468823795,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":7,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 8, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.37690268687094,"attenuationLength":"0.007313","focalDistance":0.950667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":8,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 9, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.50281971603393,"attenuationLength":"0.007313","focalDistance":1.0695014317059166,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":9,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 10, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.6296114854527,"attenuationLength":"0.007313","focalDistance":1.188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":10,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 11, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.757287142074105,"attenuationLength":"0.007313","focalDistance":1.3071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":11,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 12, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":12,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 13, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.015327346837985,"attenuationLength":"0.007313","focalDistance":1.5448354013529906,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":13,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 14, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.14571083778542,"attenuationLength":"0.007313","focalDistance":1.663668893764759,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":14,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 15, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":15,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 16, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.40925296179211,"attenuationLength":"0.007313","focalDistance":1.901335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":16,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 17, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.54243135407859,"attenuationLength":"0.007313","focalDistance":2.0201693710000646,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":17,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 18, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.676561374688426,"attenuationLength":"0.007313","focalDistance":2.139002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":18,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 19, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.81165326000676,"attenuationLength":"0.007313","focalDistance":2.2578363558236014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":19,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 20, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.37666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":20,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 21, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.08476430967676,"attenuationLength":"0.007313","focalDistance":2.4955033406471383,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":21,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 22, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.22280469420561,"attenuationLength":"0.007313","focalDistance":2.614336833058907,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":22,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 23, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.361849389293575,"attenuationLength":"0.007313","focalDistance":2.7331703254706756,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":23,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 24, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.5019093952244,"attenuationLength":"0.007313","focalDistance":2.8520038178824443,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":24,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 25, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.9708373102942125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":25,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 26, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.785120149904,"attenuationLength":"0.007313","focalDistance":3.089670802705981,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":26,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '487' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 27, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.928293717335485,"attenuationLength":"0.007313","focalDistance":3.2085042951177494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":27,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 28, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.0725282391041,"attenuationLength":"0.007313","focalDistance":3.327337787529518,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":28,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 29, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.21783555199883,"attenuationLength":"0.007313","focalDistance":3.4461712799412867,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":29,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 30, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.565004772353055,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":30,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 31, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.51171678531951,"attenuationLength":"0.007313","focalDistance":3.683838264764824,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":31,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 32, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.66031527632802,"attenuationLength":"0.007313","focalDistance":3.802671757176592,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":32,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 33, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.81003570647585,"attenuationLength":"0.007313","focalDistance":3.92150524958836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":33,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 34, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.9608908301048,"attenuationLength":"0.007313","focalDistance":4.040338742000129,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":34,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 35, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.11289359561595,"attenuationLength":"0.007313","focalDistance":4.159172234411897,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":35,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 36, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.26605714917451,"attenuationLength":"0.007313","focalDistance":4.278005726823666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":36,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 37, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.420394838499945,"attenuationLength":"0.007313","focalDistance":4.396839219235434,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":37,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 38, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.57592021674359,"attenuationLength":"0.007313","focalDistance":4.515672711647203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":38,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 39, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.73264704645607,"attenuationLength":"0.007313","focalDistance":4.6345062040589715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":39,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 40, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.890589303647104,"attenuationLength":"0.007313","focalDistance":4.75333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":40,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 41, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.04976118194006,"attenuationLength":"0.007313","focalDistance":4.872173188882509,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":41,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 42, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.210177096823976,"attenuationLength":"0.007313","focalDistance":4.991006681294277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":42,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 43, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.37185169000562,"attenuationLength":"0.007313","focalDistance":5.109840173706045,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":43,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 44, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.534799833864454,"attenuationLength":"0.007313","focalDistance":5.228673666117814,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":44,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 45, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.69903663601322,"attenuationLength":"0.007313","focalDistance":5.347507158529583,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":45,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 46, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.86457744396724,"attenuationLength":"0.007313","focalDistance":5.466340650941351,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":46,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 47, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.031437849925325,"attenuationLength":"0.007313","focalDistance":5.585174143353119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":47,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 48, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.199633695665455,"attenuationLength":"0.007313","focalDistance":5.704007635764889,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":48,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 49, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.36918107755853,"attenuationLength":"0.007313","focalDistance":5.822841128176656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":49,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 50, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":50,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 51, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.712396139187035,"attenuationLength":"0.007313","focalDistance":6.060508113000194,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":51,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 52, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.8860973314721,"attenuationLength":"0.007313","focalDistance":6.179341605411962,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":52,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 53, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.061217095917826,"attenuationLength":"0.007313","focalDistance":6.298175097823731,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":53,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 54, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.23777288143572,"attenuationLength":"0.007313","focalDistance":6.417008590235499,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":54,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 55, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.41578242428536,"attenuationLength":"0.007313","focalDistance":6.535842082647267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":55,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 56, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.59526375401393,"attenuationLength":"0.007313","focalDistance":6.654675575059036,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":56,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 57, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.77623519954359,"attenuationLength":"0.007313","focalDistance":6.773509067470805,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":57,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 58, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.95871539541125,"attenuationLength":"0.007313","focalDistance":6.892342559882573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":58,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 59, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.1427232881649,"attenuationLength":"0.007313","focalDistance":7.011176052294341,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":59,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 60, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.32827814292137,"attenuationLength":"0.007313","focalDistance":7.13000954470611,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":60,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 61, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.51539955009015,"attenuationLength":"0.007313","focalDistance":7.2488430371178785,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":61,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 62, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.7041074322682,"attenuationLength":"0.007313","focalDistance":7.367676529529648,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":62,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 63, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.89442205131093,"attenuationLength":"0.007313","focalDistance":7.486510021941416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":63,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 64, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.086364015584536,"attenuationLength":"0.007313","focalDistance":7.605343514353184,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":64,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 65, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.279954287405175,"attenuationLength":"0.007313","focalDistance":7.724177006764952,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":65,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 66, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.47521419067061,"attenuationLength":"0.007313","focalDistance":7.84301049917672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":66,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 67, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.67216541869024,"attenuationLength":"0.007313","focalDistance":7.96184399158849,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":67,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 68, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.87083004221933,"attenuationLength":"0.007313","focalDistance":8.080677484000258,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":68,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 69, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.07123051770404,"attenuationLength":"0.007313","focalDistance":8.199510976412027,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":69,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 70, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.27338969574335,"attenuationLength":"0.007313","focalDistance":8.318344468823794,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":70,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 71, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.47733082977488,"attenuationLength":"0.007313","focalDistance":8.437177961235562,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":71,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 72, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.683077584991324,"attenuationLength":"0.007313","focalDistance":8.556011453647333,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":72,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 73, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.890654047494806,"attenuationLength":"0.007313","focalDistance":8.674844946059102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":73,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 74, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.10008473369656,"attenuationLength":"0.007313","focalDistance":8.793678438470868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":74,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 75, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":75,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 76, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.52460905256264,"attenuationLength":"0.007313","focalDistance":9.031345423294406,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":76,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 77, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.73975395778255,"attenuationLength":"0.007313","focalDistance":9.150178915706174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":77,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 78, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.956855652455744,"attenuationLength":"0.007313","focalDistance":9.269012408117943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":78,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 79, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.17594095467547,"attenuationLength":"0.007313","focalDistance":9.387845900529712,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":79,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 80, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.39703717484534,"attenuationLength":"0.007313","focalDistance":9.50667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":80,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 81, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.62017212702837,"attenuationLength":"0.007313","focalDistance":9.625512885353247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":81,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 82, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.845374140611405,"attenuationLength":"0.007313","focalDistance":9.744346377765018,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":82,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 83, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.07267207229514,"attenuationLength":"0.007313","focalDistance":9.863179870176786,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":83,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 84, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.30209531842059,"attenuationLength":"0.007313","focalDistance":9.982013362588553,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":84,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 85, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.53367382764289,"attenuationLength":"0.007313","focalDistance":10.100846855000322,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":85,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 86, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.76743811396399,"attenuationLength":"0.007313","focalDistance":10.21968034741209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":86,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 87, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.003419270136064,"attenuationLength":"0.007313","focalDistance":10.33851383982386,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":87,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 88, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.24164898144819,"attenuationLength":"0.007313","focalDistance":10.457347332235628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":88,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 89, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.482159539908906,"attenuationLength":"0.007313","focalDistance":10.576180824647397,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":89,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 90, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.724983858838094,"attenuationLength":"0.007313","focalDistance":10.695014317059165,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":90,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 91, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.97015548788211,"attenuationLength":"0.007313","focalDistance":10.813847809470932,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":91,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 92, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.21770862846641,"attenuationLength":"0.007313","focalDistance":10.932681301882702,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":92,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 93, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.467678149700646,"attenuationLength":"0.007313","focalDistance":11.051514794294471,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":93,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:03 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 94, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.720099604751866,"attenuationLength":"0.007313","focalDistance":11.170348286706238,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":94,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 95, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.975009247701855,"attenuationLength":"0.007313","focalDistance":11.289181779118007,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":95,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 96, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":52.2324440509055,"attenuationLength":"0.007313","focalDistance":11.408015271529777,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":96,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 97, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":52.49244172286747,"attenuationLength":"0.007313","focalDistance":11.526848763941546,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":97,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 98, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":52.75504072665565,"attenuationLength":"0.007313","focalDistance":11.645682256353313,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":98,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 99, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.02028029886988,"attenuationLength":"0.007313","focalDistance":11.764515748765081,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":99,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 100, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.28820046918587,"attenuationLength":"0.007313","focalDistance":11.88334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":100,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 101, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.55884208049473,"attenuationLength":"0.007313","focalDistance":12.002182733588619,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":101,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 102, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.83224680965924,"attenuationLength":"0.007313","focalDistance":12.121016226000387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":102,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 103, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.108457188909235,"attenuationLength":"0.007313","focalDistance":12.239849718412156,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":103,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 104, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.387516627898904,"attenuationLength":"0.007313","focalDistance":12.358683210823925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":104,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 105, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.66946943645035,"attenuationLength":"0.007313","focalDistance":12.477516703235692,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":105,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 106, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.95436084800816,"attenuationLength":"0.007313","focalDistance":12.596350195647462,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":106,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 107, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.24223704383117,"attenuationLength":"0.007313","focalDistance":12.71518368805923,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":107,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 108, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.53314517794869,"attenuationLength":"0.007313","focalDistance":12.834017180470997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":108,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 109, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.827133402909325,"attenuationLength":"0.007313","focalDistance":12.952850672882766,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":109,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 110, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":56.12425089635205,"attenuationLength":"0.007313","focalDistance":13.071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":110,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 111, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":56.424547888430396,"attenuationLength":"0.007313","focalDistance":13.190517657706303,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":111,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 112, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":56.728075690121614,"attenuationLength":"0.007313","focalDistance":13.309351150118072,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":112,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 113, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.03488672245465,"attenuationLength":"0.007313","focalDistance":13.42818464252984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":113,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 114, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.34503454669167,"attenuationLength":"0.007313","focalDistance":13.54701813494161,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":114,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 115, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.65857389549971,"attenuationLength":"0.007313","focalDistance":13.665851627353376,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":115,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 116, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.97556070515056,"attenuationLength":"0.007313","focalDistance":13.784685119765147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":116,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 117, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":58.29605214878869,"attenuationLength":"0.007313","focalDistance":13.903518612176915,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":117,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 118, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":58.62010667080868,"attenuationLength":"0.007313","focalDistance":14.022352104588682,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":118,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 119, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":58.947784022385704,"attenuationLength":"0.007313","focalDistance":14.141185597000451,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":119,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 120, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":59.279145298204384,"attenuationLength":"0.007313","focalDistance":14.26001908941222,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":120,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 121, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":59.614252974433285,"attenuationLength":"0.007313","focalDistance":14.378852581823988,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":121,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 122, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":59.95317094799499,"attenuationLength":"0.007313","focalDistance":14.497686074235757,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":122,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 123, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.29596457718315,"attenuationLength":"0.007313","focalDistance":14.616519566647524,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":123,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 124, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.64270072368114,"attenuationLength":"0.007313","focalDistance":14.735353059059296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":124,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 125, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":125,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 126, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":61.34827579466647,"attenuationLength":"0.007313","focalDistance":14.973020043882832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":126,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 127, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":61.70725635840967,"attenuationLength":"0.007313","focalDistance":15.0918535362946,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":127,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 128, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":62.07046281276721,"attenuationLength":"0.007313","focalDistance":15.210687028706367,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":128,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 129, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":62.43797021982327,"attenuationLength":"0.007313","focalDistance":15.329520521118136,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":129,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 130, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":62.80985542996359,"attenuationLength":"0.007313","focalDistance":15.448354013529904,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":130,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 131, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":63.186197135450755,"attenuationLength":"0.007313","focalDistance":15.567187505941673,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":131,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 132, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":63.56707592593728,"attenuationLength":"0.007313","focalDistance":15.68602099835344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":132,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 133, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":63.952574345998684,"attenuationLength":"0.007313","focalDistance":15.804854490765212,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":133,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 134, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":64.34277695477256,"attenuationLength":"0.007313","focalDistance":15.92368798317698,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":134,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 135, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":64.73777038779457,"attenuationLength":"0.007313","focalDistance":16.04252147558875,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":135,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 136, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.13764342112603,"attenuationLength":"0.007313","focalDistance":16.161354968000516,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":136,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 137, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.54248703787286,"attenuationLength":"0.007313","focalDistance":16.280188460412283,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":137,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 138, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.9523944972008,"attenuationLength":"0.007313","focalDistance":16.399021952824054,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":138,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 139, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":66.36746140595632,"attenuationLength":"0.007313","focalDistance":16.51785544523582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":139,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 140, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":66.78778579300958,"attenuationLength":"0.007313","focalDistance":16.636688937647587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":140,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 141, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":67.21346818644002,"attenuationLength":"0.007313","focalDistance":16.755522430059358,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":141,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 142, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":67.64461169369277,"attenuationLength":"0.007313","focalDistance":16.874355922471125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":142,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 143, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":68.08132208484001,"attenuationLength":"0.007313","focalDistance":16.993189414882895,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":143,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 144, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":68.52370787908836,"attenuationLength":"0.007313","focalDistance":17.112022907294666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":144,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 145, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":68.97188043468114,"attenuationLength":"0.007313","focalDistance":17.230856399706433,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":145,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 146, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":69.4259540423518,"attenuationLength":"0.007313","focalDistance":17.349689892118203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":146,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 147, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":69.88604602249325,"attenuationLength":"0.007313","focalDistance":17.46852338452997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":147,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 148, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":70.3522768262167,"attenuationLength":"0.007313","focalDistance":17.587356876941737,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":148,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 149, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":70.82477014048287,"attenuationLength":"0.007313","focalDistance":17.706190369353507,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":149,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 150, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":71.3036529974982,"attenuationLength":"0.007313","focalDistance":17.825023861765274,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":150,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 151, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":71.78905588857947,"attenuationLength":"0.007313","focalDistance":17.94385735417704,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":151,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 152, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":72.28111288270102,"attenuationLength":"0.007313","focalDistance":18.06269084658881,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":152,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 153, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":72.779961749951,"attenuationLength":"0.007313","focalDistance":18.181524339000582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":153,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 154, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":73.28574409013524,"attenuationLength":"0.007313","focalDistance":18.30035783141235,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":154,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 155, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":73.79860546678125,"attenuationLength":"0.007313","focalDistance":18.41919132382412,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":155,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 156, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":74.31869554680817,"attenuationLength":"0.007313","focalDistance":18.538024816235886,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":156,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 157, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":74.84616824614484,"attenuationLength":"0.007313","focalDistance":18.656858308647653,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":157,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 158, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":75.38118188159316,"attenuationLength":"0.007313","focalDistance":18.775691801059423,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":158,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 159, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":75.92389932925147,"attenuationLength":"0.007313","focalDistance":18.89452529347119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":159,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 160, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":76.47448818983152,"attenuationLength":"0.007313","focalDistance":19.01335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":160,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 161, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":77.03312096122056,"attenuationLength":"0.007313","focalDistance":19.132192278294728,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":161,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 162, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":77.59997521866279,"attenuationLength":"0.007313","focalDistance":19.251025770706494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":162,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 163, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":78.17523380295484,"attenuationLength":"0.007313","focalDistance":19.36985926311827,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":163,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 164, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":78.75908501707428,"attenuationLength":"0.007313","focalDistance":19.488692755530035,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":164,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 165, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":79.3517228316861,"attenuationLength":"0.007313","focalDistance":19.607526247941802,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":165,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 166, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":79.95334709999713,"attenuationLength":"0.007313","focalDistance":19.726359740353573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":166,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 167, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":80.56416378245933,"attenuationLength":"0.007313","focalDistance":19.84519323276534,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":167,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 168, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":81.1843851818523,"attenuationLength":"0.007313","focalDistance":19.964026725177106,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":168,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 169, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":81.8142301893086,"attenuationLength":"0.007313","focalDistance":20.082860217588877,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":169,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 170, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":82.45392454188085,"attenuationLength":"0.007313","focalDistance":20.201693710000644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":170,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 171, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":83.10370109228754,"attenuationLength":"0.007313","focalDistance":20.32052720241241,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":171,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 172, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":83.76380009151438,"attenuationLength":"0.007313","focalDistance":20.43936069482418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":172,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 173, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":84.43446948499181,"attenuationLength":"0.007313","focalDistance":20.55819418723595,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":173,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 174, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":85.1159652231157,"attenuationLength":"0.007313","focalDistance":20.67702767964772,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":174,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 175, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":85.80855158692857,"attenuationLength":"0.007313","focalDistance":20.79586117205949,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":175,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 176, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":86.51250152983101,"attenuationLength":"0.007313","focalDistance":20.914694664471256,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":176,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 177, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":87.22809703625273,"attenuationLength":"0.007313","focalDistance":21.033528156883026,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":177,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 178, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":87.95562949827212,"attenuationLength":"0.007313","focalDistance":21.152361649294793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":178,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 179, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":88.69540011124224,"attenuationLength":"0.007313","focalDistance":21.27119514170656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":179,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 180, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":89.44772028955083,"attenuationLength":"0.007313","focalDistance":21.39002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":180,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 181, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":90.21291210372027,"attenuationLength":"0.007313","focalDistance":21.508862126530097,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":181,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 182, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":90.99130874013683,"attenuationLength":"0.007313","focalDistance":21.627695618941864,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":182,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 183, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":91.78325498478733,"attenuationLength":"0.007313","focalDistance":21.746529111353638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":183,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 184, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":92.58910773247871,"attenuationLength":"0.007313","focalDistance":21.865362603765405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":184,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 185, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":93.40923652312125,"attenuationLength":"0.007313","focalDistance":21.984196096177172,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":185,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 186, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":94.24402410676765,"attenuationLength":"0.007313","focalDistance":22.103029588588942,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":186,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 187, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":95.09386703922343,"attenuationLength":"0.007313","focalDistance":22.22186308100071,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":187,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 188, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":95.95917631017616,"attenuationLength":"0.007313","focalDistance":22.340696573412476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":188,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 189, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":96.8403780059337,"attenuationLength":"0.007313","focalDistance":22.459530065824246,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":189,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 190, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":97.73791400901644,"attenuationLength":"0.007313","focalDistance":22.578363558236013,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":190,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 191, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":98.65224273701777,"attenuationLength":"0.007313","focalDistance":22.697197050647784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":191,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 192, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":99.5838399233275,"attenuationLength":"0.007313","focalDistance":22.816030543059554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":192,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 193, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":100.53319944251271,"attenuationLength":"0.007313","focalDistance":22.93486403547132,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":193,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 194, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":101.50083418336436,"attenuationLength":"0.007313","focalDistance":23.05369752788309,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":194,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 195, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":102.48727697285224,"attenuationLength":"0.007313","focalDistance":23.17253102029486,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":195,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 196, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":103.49308155448628,"attenuationLength":"0.007313","focalDistance":23.291364512706625,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":196,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 197, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":104.5188236248579,"attenuationLength":"0.007313","focalDistance":23.410198005118396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":197,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 198, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":105.56510193243889,"attenuationLength":"0.007313","focalDistance":23.529031497530163,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":198,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 199, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":106.63253944304438,"attenuationLength":"0.007313","focalDistance":23.64786498994193,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":199,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 200, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":107.72178457672646,"attenuationLength":"0.007313","focalDistance":23.7666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":200,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 2, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-23.325401899928792,"attenuationLength":"0.007313","focalDistance":89.12511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":2,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 3, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-52.178591939859366,"attenuationLength":"0.007313","focalDistance":59.41674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":3,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:04 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 4, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-136.76964159206418,"attenuationLength":"0.007313","focalDistance":44.56255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":4,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 5, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-5011.683299115805,"attenuationLength":"0.007313","focalDistance":35.650047723530555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":5,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 6, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":220.17606260308207,"attenuationLength":"0.007313","focalDistance":29.708373102942126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":6,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 7, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":126.12724796819347,"attenuationLength":"0.007313","focalDistance":25.46431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":7,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 8, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":95.5245621138332,"attenuationLength":"0.007313","focalDistance":22.281279827206596,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":8,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 9, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":80.35952387033105,"attenuationLength":"0.007313","focalDistance":19.805582068628084,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":9,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 10, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":71.30365299749822,"attenuationLength":"0.007313","focalDistance":17.825023861765278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":10,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 11, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.28427931793271,"attenuationLength":"0.007313","focalDistance":16.204567147059343,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":11,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 12, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":12,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 13, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.780080820525846,"attenuationLength":"0.007313","focalDistance":13.71155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":13,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 14, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.28360860767267,"attenuationLength":"0.007313","focalDistance":12.73215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":14,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 15, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.288200469185874,"attenuationLength":"0.007313","focalDistance":11.883349241176852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":15,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 16, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.65676240168851,"attenuationLength":"0.007313","focalDistance":11.140639913603298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":16,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 17, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.29803329476719,"attenuationLength":"0.007313","focalDistance":10.485308153979574,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":17,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 18, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.148908874163354,"attenuationLength":"0.007313","focalDistance":9.902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":18,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 19, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.16436025663314,"attenuationLength":"0.007313","focalDistance":9.381591506192251,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":19,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 20, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882639,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":20,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 21, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.56528551941808,"attenuationLength":"0.007313","focalDistance":8.488106600840608,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":21,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 22, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.90713671509984,"attenuationLength":"0.007313","focalDistance":8.102283573529672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":22,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 23, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.32225932021564,"attenuationLength":"0.007313","focalDistance":7.750010374680555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":23,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 24, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.79906261986619,"attenuationLength":"0.007313","focalDistance":7.4270932757355315,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":24,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 25, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.32827814292138,"attenuationLength":"0.007313","focalDistance":7.130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":25,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 26, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.902405815386416,"attenuationLength":"0.007313","focalDistance":6.85577840837126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":26,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 27, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.515311405724994,"attenuationLength":"0.007313","focalDistance":6.601860689542695,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":27,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 28, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.161929145947745,"attenuationLength":"0.007313","focalDistance":6.366079950630455,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":28,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 29, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.838038806992714,"attenuationLength":"0.007313","focalDistance":6.146559952332853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":29,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 30, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588426,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":30,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 31, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.265103721046444,"attenuationLength":"0.007313","focalDistance":5.750007697343637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":31,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 32, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.01050759462439,"attenuationLength":"0.007313","focalDistance":5.570319956801649,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":32,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 33, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.774119872763706,"attenuationLength":"0.007313","focalDistance":5.4015223823531135,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":33,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 34, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.554054630644146,"attenuationLength":"0.007313","focalDistance":5.242654076989787,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":34,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 35, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.348677696464215,"attenuationLength":"0.007313","focalDistance":5.092863960504364,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":35,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 36, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.15656599980219,"attenuationLength":"0.007313","focalDistance":4.951395517157021,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":36,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 37, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.976474550581216,"attenuationLength":"0.007313","focalDistance":4.817574016693317,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":37,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 38, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.80730942829118,"attenuationLength":"0.007313","focalDistance":4.6907957530961255,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":38,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 39, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.648105542775006,"attenuationLength":"0.007313","focalDistance":4.570518938914174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":39,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 40, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.49800821130249,"attenuationLength":"0.007313","focalDistance":4.456255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":40,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 41, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.356257809147,"attenuationLength":"0.007313","focalDistance":4.347566795552506,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":41,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 42, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.22217691163612,"attenuationLength":"0.007313","focalDistance":4.244053300420304,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":42,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 43, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.095159468293346,"attenuationLength":"0.007313","focalDistance":4.145354386457041,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":43,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 44, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.97466164400618,"attenuationLength":"0.007313","focalDistance":4.051141786764836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":44,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 45, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.860194035233036,"attenuationLength":"0.007313","focalDistance":3.961116413725617,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":45,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 46, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.75131502628382,"attenuationLength":"0.007313","focalDistance":3.8750051873402773,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":46,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 47, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.647625095502164,"attenuationLength":"0.007313","focalDistance":3.792558268460697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":47,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 48, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.54876191658683,"attenuationLength":"0.007313","focalDistance":3.7135466378677657,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":48,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 49, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.454396128451435,"attenuationLength":"0.007313","focalDistance":3.637759971788832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":49,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 50, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.5650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":50,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 51, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.277982590676956,"attenuationLength":"0.007313","focalDistance":3.4951027179931913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":51,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 52, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.19541027500935,"attenuationLength":"0.007313","focalDistance":3.42788920418563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":52,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 53, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.11628100582182,"attenuationLength":"0.007313","focalDistance":3.363212049389675,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":53,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 54, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.04038383230436,"attenuationLength":"0.007313","focalDistance":3.3009303447713476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":54,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 55, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.96752469164058,"attenuationLength":"0.007313","focalDistance":3.240913429411868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":55,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 56, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.89752475217474,"attenuationLength":"0.007313","focalDistance":3.1830399753152276,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":56,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 57, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.830218947881654,"attenuationLength":"0.007313","focalDistance":3.12719716873075,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":57,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 58, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.7654546788564,"attenuationLength":"0.007313","focalDistance":3.0732799761664267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":58,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 59, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.70309065628845,"attenuationLength":"0.007313","focalDistance":3.0211904850449622,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":59,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 60, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.970837310294213,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":60,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 61, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.585048687415764,"attenuationLength":"0.007313","focalDistance":2.922135059305783,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":61,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 62, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.529135996495,"attenuationLength":"0.007313","focalDistance":2.8750038486718186,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":62,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 63, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.4751525041305,"attenuationLength":"0.007313","focalDistance":2.829368866946869,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":63,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 64, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.423000056725556,"attenuationLength":"0.007313","focalDistance":2.7851599784008245,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":64,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 65, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.37258704811054,"attenuationLength":"0.007313","focalDistance":2.742311363348504,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":65,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 66, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.32382788255768,"attenuationLength":"0.007313","focalDistance":2.7007611911765568,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":66,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 67, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.2766424897917,"attenuationLength":"0.007313","focalDistance":2.6604513226515336,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":67,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 68, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.23095588621591,"attenuationLength":"0.007313","focalDistance":2.6213270384948935,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":68,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 69, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.186697777296,"attenuationLength":"0.007313","focalDistance":2.583336791560185,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":69,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 70, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.14380219666683,"attenuationLength":"0.007313","focalDistance":2.546431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":70,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 71, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.10220717806532,"attenuationLength":"0.007313","focalDistance":2.510566741093701,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":71,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 72, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.06185445665789,"attenuationLength":"0.007313","focalDistance":2.4756977585785105,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":72,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 73, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.022689196735115,"attenuationLength":"0.007313","focalDistance":2.4417840906527775,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":73,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 74, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.9846597430972,"attenuationLength":"0.007313","focalDistance":2.4087870083466587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":74,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 75, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.3766698482353705,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":75,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 76, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.911816191878906,"attenuationLength":"0.007313","focalDistance":2.3453978765480628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":76,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 77, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.87691273501992,"attenuationLength":"0.007313","focalDistance":2.3149381638656203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":77,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 78, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.842966000116036,"attenuationLength":"0.007313","focalDistance":2.285259469457087,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":78,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 79, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.80993718262206,"attenuationLength":"0.007313","focalDistance":2.256332134400668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":79,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 80, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.77778954854356,"attenuationLength":"0.007313","focalDistance":2.2281279827206597,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":80,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 81, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.74648829815311,"attenuationLength":"0.007313","focalDistance":2.2006202298475652,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":81,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 82, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.71600044033088,"attenuationLength":"0.007313","focalDistance":2.173783397776253,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":82,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 83, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.68629467657573,"attenuationLength":"0.007313","focalDistance":2.1475932363572623,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":83,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 84, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.65734129382953,"attenuationLength":"0.007313","focalDistance":2.122026650210152,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":84,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 85, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.62911206534324,"attenuationLength":"0.007313","focalDistance":2.0970616307959147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":85,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 86, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.60158015888938,"attenuationLength":"0.007313","focalDistance":2.0726771932285204,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":86,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 87, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.574720051693575,"attenuationLength":"0.007313","focalDistance":2.0488533174442844,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":87,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 88, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.54850745151831,"attenuationLength":"0.007313","focalDistance":2.025570893382418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":88,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 89, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.52291922338584,"attenuationLength":"0.007313","focalDistance":2.002811669861267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":89,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 90, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.4979333214758,"attenuationLength":"0.007313","focalDistance":1.9805582068628085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":90,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 91, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.47352872577608,"attenuationLength":"0.007313","focalDistance":1.9587938309632171,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":91,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 92, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.44968538310439,"attenuationLength":"0.007313","focalDistance":1.9375025936701387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":92,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 93, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.42638415215271,"attenuationLength":"0.007313","focalDistance":1.9166692324478791,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":93,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 94, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.40360675223803,"attenuationLength":"0.007313","focalDistance":1.8962791342303484,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":94,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 95, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.381335715471096,"attenuationLength":"0.007313","focalDistance":1.87631830123845,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":95,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 96, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.359554342080074,"attenuationLength":"0.007313","focalDistance":1.8567733189338829,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":96,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 97, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.338246658649005,"attenuationLength":"0.007313","focalDistance":1.8376313259551833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":97,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 98, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.31739737905157,"attenuationLength":"0.007313","focalDistance":1.818879985894416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":98,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 99, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.2969918678794,"attenuationLength":"0.007313","focalDistance":1.8005074607843714,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":99,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 100, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":100,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 101, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.257456659342935,"attenuationLength":"0.007313","focalDistance":1.7648538476995324,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":101,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 102, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.23830064695806,"attenuationLength":"0.007313","focalDistance":1.7475513589965956,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":102,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 103, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.21953571453978,"attenuationLength":"0.007313","focalDistance":1.730584840948085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":103,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 104, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.201150006950805,"attenuationLength":"0.007313","focalDistance":1.713944602092815,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":104,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 105, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.18313214342683,"attenuationLength":"0.007313","focalDistance":1.6976213201681216,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":105,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 106, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.1654711940846,"attenuationLength":"0.007313","focalDistance":1.6816060246948374,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":106,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 107, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.14815665781217,"attenuationLength":"0.007313","focalDistance":1.6658900805388108,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":107,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 108, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.13117844144766,"attenuationLength":"0.007313","focalDistance":1.6504651723856738,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":108,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 109, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.11452684015957,"attenuationLength":"0.007313","focalDistance":1.6353232900702088,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":109,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 110, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.09819251894869,"attenuationLength":"0.007313","focalDistance":1.620456714705934,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":110,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 111, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.08216649519735,"attenuationLength":"0.007313","focalDistance":1.6058580055644391,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":111,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:05 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 112, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.0664401221975,"attenuationLength":"0.007313","focalDistance":1.5915199876576138,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":112,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 113, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.05100507359433,"attenuationLength":"0.007313","focalDistance":1.5774357399792278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":113,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 114, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.03585332868637,"attenuationLength":"0.007313","focalDistance":1.563598584365375,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":114,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 115, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.02097715852769,"attenuationLength":"0.007313","focalDistance":1.550002074936111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":115,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 116, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.00636911278157,"attenuationLength":"0.007313","focalDistance":1.5366399880832133,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":116,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 117, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.99202200727869,"attenuationLength":"0.007313","focalDistance":1.5235063129713913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":117,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 118, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.97792891223611,"attenuationLength":"0.007313","focalDistance":1.5105952425224811,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":118,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 119, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.96408314109652,"attenuationLength":"0.007313","focalDistance":1.4979011648542249,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":119,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 120, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.950478239949966,"attenuationLength":"0.007313","focalDistance":1.4854186551471065,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":120,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 121, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.93710797750289,"attenuationLength":"0.007313","focalDistance":1.4731424679144858,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":121,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 122, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.923966335561744,"attenuationLength":"0.007313","focalDistance":1.4610675296528914,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":122,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 123, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.9110475000006,"attenuationLength":"0.007313","focalDistance":1.4491889318508355,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":123,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 124, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.89834585218438,"attenuationLength":"0.007313","focalDistance":1.4375019243359093,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":124,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 125, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":125,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 126, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.87357257421747,"attenuationLength":"0.007313","focalDistance":1.4146844334734345,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":126,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 127, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.86149061291759,"attenuationLength":"0.007313","focalDistance":1.4035451859657697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":127,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 128, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.849605162698005,"attenuationLength":"0.007313","focalDistance":1.3925799892004123,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":128,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 129, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.83791146790387,"attenuationLength":"0.007313","focalDistance":1.3817847954856803,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":129,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 130, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.826404925104335,"attenuationLength":"0.007313","focalDistance":1.371155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":130,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 131, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.81508107705016,"attenuationLength":"0.007313","focalDistance":1.360688844409563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":131,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 132, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.80393560691698,"attenuationLength":"0.007313","focalDistance":1.3503805955882784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":132,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 133, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.792964332818414,"attenuationLength":"0.007313","focalDistance":1.3402273580274644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":133,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 134, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.78216320257449,"attenuationLength":"0.007313","focalDistance":1.3302256613257668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":134,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 135, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.77152828872157,"attenuationLength":"0.007313","focalDistance":1.320372137908539,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":135,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 136, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.76105578375092,"attenuationLength":"0.007313","focalDistance":1.3106635192474467,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":136,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 137, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.750741995563736,"attenuationLength":"0.007313","focalDistance":1.3010966322456405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":137,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 138, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.74058334313128,"attenuationLength":"0.007313","focalDistance":1.2916683957800925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":138,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 139, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.730576352349345,"attenuationLength":"0.007313","focalDistance":1.2823758173931852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":139,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 140, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.72071765207712,"attenuationLength":"0.007313","focalDistance":1.273215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":140,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 141, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.711003970350724,"attenuationLength":"0.007313","focalDistance":1.264186089486899,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":141,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 142, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.70143213076272,"attenuationLength":"0.007313","focalDistance":1.2552833705468505,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":142,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 143, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.691999048999,"attenuationLength":"0.007313","focalDistance":1.246505165158411,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":143,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 144, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.68270172952528,"attenuationLength":"0.007313","focalDistance":1.2378488792892552,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":144,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 145, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.673537262415536,"attenuationLength":"0.007313","focalDistance":1.2293119904665706,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":145,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 146, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.66450282031554,"attenuationLength":"0.007313","focalDistance":1.2208920453263887,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":146,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 147, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.655595655534654,"attenuationLength":"0.007313","focalDistance":1.2125866572629438,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":147,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 148, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.64681309725971,"attenuationLength":"0.007313","focalDistance":1.2043935041733294,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":148,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 149, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.638152548884975,"attenuationLength":"0.007313","focalDistance":1.1963103262929715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":149,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 150, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.629611485452706,"attenuationLength":"0.007313","focalDistance":1.1883349241176853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":150,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 151, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.62118745119878,"attenuationLength":"0.007313","focalDistance":1.1804651564082964,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":151,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 152, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.612878057198685,"attenuationLength":"0.007313","focalDistance":1.1726989382740314,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":152,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 153, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.60468097910882,"attenuationLength":"0.007313","focalDistance":1.165034239331064,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":153,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 154, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.59659395499888,"attenuationLength":"0.007313","focalDistance":1.1574690819328102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":154,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 155, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.5886147832709,"attenuationLength":"0.007313","focalDistance":1.1500015394687275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":155,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 156, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.580741320661026,"attenuationLength":"0.007313","focalDistance":1.1426297347285435,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":156,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 157, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.57297148032021,"attenuationLength":"0.007313","focalDistance":1.1353518383289984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":157,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 158, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.56530322997014,"attenuationLength":"0.007313","focalDistance":1.128166067200334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":158,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 159, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.557734590131055,"attenuationLength":"0.007313","focalDistance":1.1210706831298916,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":159,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 160, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.55026363241819,"attenuationLength":"0.007313","focalDistance":1.1140639913603299,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":160,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 161, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.542888477903745,"attenuationLength":"0.007313","focalDistance":1.1071443392400793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":161,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 162, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.53560729554145,"attenuationLength":"0.007313","focalDistance":1.1003101149237826,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":162,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 163, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.52841830065101,"attenuationLength":"0.007313","focalDistance":1.093559746120569,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":163,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 164, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.52131975345973,"attenuationLength":"0.007313","focalDistance":1.0868916988881265,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":164,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 165, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.514309957698806,"attenuationLength":"0.007313","focalDistance":1.0803044764706229,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":165,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 166, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.50738725925205,"attenuationLength":"0.007313","focalDistance":1.0737966181786311,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":166,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 167, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.500550044854506,"attenuationLength":"0.007313","focalDistance":1.067366698309298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":167,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 168, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.493796740839166,"attenuationLength":"0.007313","focalDistance":1.061013325105076,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":168,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 169, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.48712581192938,"attenuationLength":"0.007313","focalDistance":1.0547351397494247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":169,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 170, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.48053576007531,"attenuationLength":"0.007313","focalDistance":1.0485308153979573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":170,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 171, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.47402512333238,"attenuationLength":"0.007313","focalDistance":1.0423990562435834,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":171,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 172, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.46759247478006,"attenuationLength":"0.007313","focalDistance":1.0363385966142602,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":172,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 173, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.46123642147926,"attenuationLength":"0.007313","focalDistance":1.030348200102039,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":173,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 174, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.454955603466765,"attenuationLength":"0.007313","focalDistance":1.0244266587221422,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":174,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 175, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.44874869278512,"attenuationLength":"0.007313","focalDistance":1.018572792100873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":175,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 176, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.44261439254663,"attenuationLength":"0.007313","focalDistance":1.012785446691209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":176,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 177, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.43655143602999,"attenuationLength":"0.007313","focalDistance":1.0070634950149873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":177,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 178, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.43055858580821,"attenuationLength":"0.007313","focalDistance":1.0014058349306334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":178,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 179, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.424634632906674,"attenuationLength":"0.007313","focalDistance":0.9958113889254344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":179,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 180, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.41877839599005,"attenuationLength":"0.007313","focalDistance":0.9902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":180,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 181, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.41298872057695,"attenuationLength":"0.007313","focalDistance":0.9848079481638273,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":181,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 182, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.40726447828112,"attenuationLength":"0.007313","focalDistance":0.9793969154816086,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":182,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 183, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.40160456607837,"attenuationLength":"0.007313","focalDistance":0.9740450197685943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":183,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 184, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.39600790559795,"attenuationLength":"0.007313","focalDistance":0.9687512968350693,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":184,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 185, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.3904734424376,"attenuationLength":"0.007313","focalDistance":0.9635148033386636,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":185,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 186, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.38500014550132,"attenuationLength":"0.007313","focalDistance":0.9583346162239396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":186,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 187, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.379587006358975,"attenuationLength":"0.007313","focalDistance":0.9532098321799612,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":187,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 188, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.37423303862684,"attenuationLength":"0.007313","focalDistance":0.9481395671151742,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":188,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 189, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.36893727736845,"attenuationLength":"0.007313","focalDistance":0.9431229556489563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":189,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 190, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.363698778514824,"attenuationLength":"0.007313","focalDistance":0.938159150619225,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":190,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 191, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.358516618303376,"attenuationLength":"0.007313","focalDistance":0.9332473226055118,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":191,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 192, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.353389892734896,"attenuationLength":"0.007313","focalDistance":0.9283866594669414,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":192,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 193, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.348317717047806,"attenuationLength":"0.007313","focalDistance":0.9235763658945739,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":193,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 194, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.34329922520914,"attenuationLength":"0.007313","focalDistance":0.9188156629775917,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":194,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 195, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.33833356942159,"attenuationLength":"0.007313","focalDistance":0.9141037877828347,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":195,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 196, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.33341991964607,"attenuationLength":"0.007313","focalDistance":0.909439992947208,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":196,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 197, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.32855746313913,"attenuationLength":"0.007313","focalDistance":0.9048235462825014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":197,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 198, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.32374540400484,"attenuationLength":"0.007313","focalDistance":0.9002537303921857,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":198,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 199, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.31898296276049,"attenuationLength":"0.007313","focalDistance":0.8957298422997626,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":199,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 200, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.31426937591563,"attenuationLength":"0.007313","focalDistance":0.8912511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":200,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 1}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":1,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 2}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":2,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 3}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":3,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 4}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":4,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 5}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":5,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 6}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":6,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 7}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":7,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 8}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":8,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 9}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":9,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 10}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":10,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 11}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":11,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 12}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":12,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 13}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":13,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 14}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":14,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 15}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":15,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 16}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":16,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:06 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 17}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":17,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 18}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":18,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 19}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":19,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 20}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":20,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 21}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":21,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 22}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":22,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 23}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":23,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 24}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":24,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 25}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":25,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 26}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":26,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 27}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":27,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 28}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":28,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 29}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":29,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 30}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":30,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 31}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":31,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 32}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":32,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 33}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":33,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 34}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":34,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 35}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":35,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 36}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":36,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 37}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":37,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 38}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":38,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 39}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":39,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 40}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":40,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 41}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":41,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 42}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":42,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 43}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":43,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 44}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":44,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 45}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":45,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 46}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":46,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 47}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":47,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 48}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":48,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 49}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":49,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 50}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":50,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 51}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":51,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 52}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":52,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 53}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":53,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 54}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":54,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 55}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":55,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 56}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":56,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 57}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":57,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 58}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":58,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 59}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":59,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 60}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":60,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 61}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":61,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 62}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":62,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 63}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":63,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 64}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":64,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 65}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":65,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 66}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":66,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 67}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":67,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 68}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":68,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 69}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":69,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 70}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":70,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 71}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":71,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 72}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":72,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 73}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":73,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 74}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":74,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 75}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":75,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 76}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":76,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 77}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":77,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 78}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":78,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 79}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":79,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 80}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":80,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 81}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":81,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 82}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":82,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 83}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":83,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 84}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":84,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 85}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":85,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 86}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":86,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 87}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":87,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 88}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":88,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 89}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":89,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 90}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":90,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 91}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":91,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 92}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":92,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 93}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":93,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 94}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":94,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 95}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":95,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 96}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":96,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 97}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":97,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 98}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":98,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 99}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":99,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 100}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":100,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 101}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":101,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 102}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":102,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 103}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":103,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 104}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":104,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 105}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":105,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 106}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":106,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 107}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":107,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 108}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":108,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 109}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":109,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 110}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":110,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 111}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":111,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 112}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":112,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 113}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":113,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 114}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":114,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 115}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":115,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 116}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":116,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 117}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":117,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 118}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":118,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 119}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":119,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:07 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 120}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":120,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 121}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":121,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 122}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":122,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 123}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":123,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 124}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":124,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 125}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":125,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 126}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":126,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 127}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":127,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 128}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":128,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 129}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":129,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 130}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":130,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 131}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":131,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 132}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":132,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 133}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":133,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 134}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":134,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 135}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":135,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 136}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":136,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 137}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":137,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 138}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":138,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 139}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":139,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 140}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":140,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 141}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":141,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 142}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":142,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 143}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":143,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 144}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":144,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 145}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":145,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 146}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":146,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 147}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":147,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 148}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":148,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 149}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":149,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 150}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":150,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 151}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":151,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 152}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":152,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 153}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":153,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 154}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":154,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 155}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":155,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 156}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":156,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 157}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":157,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 158}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":158,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 159}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":159,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 160}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":160,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 161}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":161,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 162}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":162,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 163}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":163,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 164}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":164,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 165}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":165,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 166}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":166,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 167}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":167,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 168}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":168,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 169}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":169,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 170}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":170,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 171}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":171,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 172}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":172,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 173}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":173,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 174}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":174,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 175}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":175,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 176}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":176,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 177}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":177,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 178}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":178,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 179}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":179,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 180}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":180,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 181}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":181,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 182}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":182,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 183}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":183,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 184}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":184,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 185}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":185,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 186}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":186,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 187}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":187,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 188}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":188,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 189}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":189,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 190}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":190,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 191}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":191,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 192}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":192,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 193}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":193,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 194}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":194,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 195}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":195,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 196}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":196,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 197}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":197,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 198}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":198,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 199}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":199,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 200}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":200,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.51923374558695,"attenuationLength":"0.007313","focalDistance":0.1188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 2, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.63927340825541,"attenuationLength":"0.007313","focalDistance":0.237666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":2,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 3, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.76012718666786,"attenuationLength":"0.007313","focalDistance":0.35650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":3,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 4, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":35.88180339107272,"attenuationLength":"0.007313","focalDistance":0.475333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":4,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 5, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.004310445209285,"attenuationLength":"0.007313","focalDistance":0.5941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":5,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 6, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.1276568882517,"attenuationLength":"0.007313","focalDistance":0.7130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":6,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 7, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.251851376793134,"attenuationLength":"0.007313","focalDistance":0.8318344468823795,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":7,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 8, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.37690268687094,"attenuationLength":"0.007313","focalDistance":0.950667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":8,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 9, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '626' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.50281971603393,"attenuationLength":"0.007313","focalDistance":1.0695014317059166,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":9,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 10, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.6296114854527,"attenuationLength":"0.007313","focalDistance":1.188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":10,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 11, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.757287142074105,"attenuationLength":"0.007313","focalDistance":1.3071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":11,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 12, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":12,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 13, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.015327346837985,"attenuationLength":"0.007313","focalDistance":1.5448354013529906,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":13,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 14, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.14571083778542,"attenuationLength":"0.007313","focalDistance":1.663668893764759,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":14,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 15, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":15,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 16, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.40925296179211,"attenuationLength":"0.007313","focalDistance":1.901335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":16,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 17, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.54243135407859,"attenuationLength":"0.007313","focalDistance":2.0201693710000646,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":17,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 18, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.676561374688426,"attenuationLength":"0.007313","focalDistance":2.139002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":18,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 19, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.81165326000676,"attenuationLength":"0.007313","focalDistance":2.2578363558236014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":19,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 20, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.37666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":20,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 21, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.08476430967676,"attenuationLength":"0.007313","focalDistance":2.4955033406471383,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":21,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 22, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.22280469420561,"attenuationLength":"0.007313","focalDistance":2.614336833058907,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":22,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 23, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.361849389293575,"attenuationLength":"0.007313","focalDistance":2.7331703254706756,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":23,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 24, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.5019093952244,"attenuationLength":"0.007313","focalDistance":2.8520038178824443,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":24,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 25, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.9708373102942125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":25,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:08 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 26, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.785120149904,"attenuationLength":"0.007313","focalDistance":3.089670802705981,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":26,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '487' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 27, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.928293717335485,"attenuationLength":"0.007313","focalDistance":3.2085042951177494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":27,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 28, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.0725282391041,"attenuationLength":"0.007313","focalDistance":3.327337787529518,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":28,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 29, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.21783555199883,"attenuationLength":"0.007313","focalDistance":3.4461712799412867,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":29,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 30, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.565004772353055,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":30,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 31, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.51171678531951,"attenuationLength":"0.007313","focalDistance":3.683838264764824,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":31,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 32, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.66031527632802,"attenuationLength":"0.007313","focalDistance":3.802671757176592,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":32,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 33, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.81003570647585,"attenuationLength":"0.007313","focalDistance":3.92150524958836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":33,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 34, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.9608908301048,"attenuationLength":"0.007313","focalDistance":4.040338742000129,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":34,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 35, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.11289359561595,"attenuationLength":"0.007313","focalDistance":4.159172234411897,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":35,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 36, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.26605714917451,"attenuationLength":"0.007313","focalDistance":4.278005726823666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":36,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 37, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.420394838499945,"attenuationLength":"0.007313","focalDistance":4.396839219235434,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":37,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 38, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.57592021674359,"attenuationLength":"0.007313","focalDistance":4.515672711647203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":38,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 39, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.73264704645607,"attenuationLength":"0.007313","focalDistance":4.6345062040589715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":39,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 40, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.890589303647104,"attenuationLength":"0.007313","focalDistance":4.75333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":40,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 41, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.04976118194006,"attenuationLength":"0.007313","focalDistance":4.872173188882509,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":41,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 42, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.210177096823976,"attenuationLength":"0.007313","focalDistance":4.991006681294277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":42,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 43, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.37185169000562,"attenuationLength":"0.007313","focalDistance":5.109840173706045,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":43,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 44, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.534799833864454,"attenuationLength":"0.007313","focalDistance":5.228673666117814,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":44,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 45, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.69903663601322,"attenuationLength":"0.007313","focalDistance":5.347507158529583,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":45,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 46, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.86457744396724,"attenuationLength":"0.007313","focalDistance":5.466340650941351,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":46,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 47, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.031437849925325,"attenuationLength":"0.007313","focalDistance":5.585174143353119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":47,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 48, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.199633695665455,"attenuationLength":"0.007313","focalDistance":5.704007635764889,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":48,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 49, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.36918107755853,"attenuationLength":"0.007313","focalDistance":5.822841128176656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":49,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 50, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":50,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 51, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.712396139187035,"attenuationLength":"0.007313","focalDistance":6.060508113000194,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":51,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 52, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.8860973314721,"attenuationLength":"0.007313","focalDistance":6.179341605411962,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":52,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 53, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.061217095917826,"attenuationLength":"0.007313","focalDistance":6.298175097823731,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":53,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 54, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.23777288143572,"attenuationLength":"0.007313","focalDistance":6.417008590235499,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":54,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 55, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.41578242428536,"attenuationLength":"0.007313","focalDistance":6.535842082647267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":55,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 56, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.59526375401393,"attenuationLength":"0.007313","focalDistance":6.654675575059036,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":56,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 57, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.77623519954359,"attenuationLength":"0.007313","focalDistance":6.773509067470805,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":57,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 58, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.95871539541125,"attenuationLength":"0.007313","focalDistance":6.892342559882573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":58,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 59, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.1427232881649,"attenuationLength":"0.007313","focalDistance":7.011176052294341,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":59,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 60, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.32827814292137,"attenuationLength":"0.007313","focalDistance":7.13000954470611,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":60,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 61, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.51539955009015,"attenuationLength":"0.007313","focalDistance":7.2488430371178785,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":61,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 62, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.7041074322682,"attenuationLength":"0.007313","focalDistance":7.367676529529648,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":62,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 63, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.89442205131093,"attenuationLength":"0.007313","focalDistance":7.486510021941416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":63,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 64, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.086364015584536,"attenuationLength":"0.007313","focalDistance":7.605343514353184,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":64,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 65, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.279954287405175,"attenuationLength":"0.007313","focalDistance":7.724177006764952,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":65,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 66, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.47521419067061,"attenuationLength":"0.007313","focalDistance":7.84301049917672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":66,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 67, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.67216541869024,"attenuationLength":"0.007313","focalDistance":7.96184399158849,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":67,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 68, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.87083004221933,"attenuationLength":"0.007313","focalDistance":8.080677484000258,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":68,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 69, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.07123051770404,"attenuationLength":"0.007313","focalDistance":8.199510976412027,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":69,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 70, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.27338969574335,"attenuationLength":"0.007313","focalDistance":8.318344468823794,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":70,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 71, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.47733082977488,"attenuationLength":"0.007313","focalDistance":8.437177961235562,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":71,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 72, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.683077584991324,"attenuationLength":"0.007313","focalDistance":8.556011453647333,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":72,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 73, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.890654047494806,"attenuationLength":"0.007313","focalDistance":8.674844946059102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":73,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 74, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.10008473369656,"attenuationLength":"0.007313","focalDistance":8.793678438470868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":74,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 75, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":75,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 76, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.52460905256264,"attenuationLength":"0.007313","focalDistance":9.031345423294406,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":76,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 77, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.73975395778255,"attenuationLength":"0.007313","focalDistance":9.150178915706174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":77,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 78, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.956855652455744,"attenuationLength":"0.007313","focalDistance":9.269012408117943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":78,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 79, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.17594095467547,"attenuationLength":"0.007313","focalDistance":9.387845900529712,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":79,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 80, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.39703717484534,"attenuationLength":"0.007313","focalDistance":9.50667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":80,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 81, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.62017212702837,"attenuationLength":"0.007313","focalDistance":9.625512885353247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":81,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 82, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.845374140611405,"attenuationLength":"0.007313","focalDistance":9.744346377765018,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":82,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 83, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.07267207229514,"attenuationLength":"0.007313","focalDistance":9.863179870176786,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":83,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 84, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.30209531842059,"attenuationLength":"0.007313","focalDistance":9.982013362588553,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":84,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 85, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.53367382764289,"attenuationLength":"0.007313","focalDistance":10.100846855000322,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":85,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 86, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.76743811396399,"attenuationLength":"0.007313","focalDistance":10.21968034741209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":86,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 87, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.003419270136064,"attenuationLength":"0.007313","focalDistance":10.33851383982386,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":87,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 88, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.24164898144819,"attenuationLength":"0.007313","focalDistance":10.457347332235628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":88,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 89, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.482159539908906,"attenuationLength":"0.007313","focalDistance":10.576180824647397,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":89,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 90, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.724983858838094,"attenuationLength":"0.007313","focalDistance":10.695014317059165,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":90,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 91, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.97015548788211,"attenuationLength":"0.007313","focalDistance":10.813847809470932,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":91,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 92, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.21770862846641,"attenuationLength":"0.007313","focalDistance":10.932681301882702,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":92,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 93, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.467678149700646,"attenuationLength":"0.007313","focalDistance":11.051514794294471,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":93,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 94, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.720099604751866,"attenuationLength":"0.007313","focalDistance":11.170348286706238,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":94,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 95, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.975009247701855,"attenuationLength":"0.007313","focalDistance":11.289181779118007,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":95,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 96, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":52.2324440509055,"attenuationLength":"0.007313","focalDistance":11.408015271529777,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":96,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 97, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":52.49244172286747,"attenuationLength":"0.007313","focalDistance":11.526848763941546,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":97,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 98, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":52.75504072665565,"attenuationLength":"0.007313","focalDistance":11.645682256353313,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":98,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 99, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.02028029886988,"attenuationLength":"0.007313","focalDistance":11.764515748765081,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":99,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 100, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.28820046918587,"attenuationLength":"0.007313","focalDistance":11.88334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":100,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 101, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.55884208049473,"attenuationLength":"0.007313","focalDistance":12.002182733588619,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":101,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 102, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.83224680965924,"attenuationLength":"0.007313","focalDistance":12.121016226000387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":102,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 103, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.108457188909235,"attenuationLength":"0.007313","focalDistance":12.239849718412156,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":103,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 104, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.387516627898904,"attenuationLength":"0.007313","focalDistance":12.358683210823925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":104,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 105, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.66946943645035,"attenuationLength":"0.007313","focalDistance":12.477516703235692,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":105,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 106, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":54.95436084800816,"attenuationLength":"0.007313","focalDistance":12.596350195647462,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":106,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 107, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.24223704383117,"attenuationLength":"0.007313","focalDistance":12.71518368805923,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":107,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 108, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.53314517794869,"attenuationLength":"0.007313","focalDistance":12.834017180470997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":108,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 109, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.827133402909325,"attenuationLength":"0.007313","focalDistance":12.952850672882766,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":109,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 110, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":56.12425089635205,"attenuationLength":"0.007313","focalDistance":13.071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":110,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 111, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":56.424547888430396,"attenuationLength":"0.007313","focalDistance":13.190517657706303,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":111,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 112, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":56.728075690121614,"attenuationLength":"0.007313","focalDistance":13.309351150118072,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":112,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 113, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.03488672245465,"attenuationLength":"0.007313","focalDistance":13.42818464252984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":113,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 114, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.34503454669167,"attenuationLength":"0.007313","focalDistance":13.54701813494161,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":114,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 115, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.65857389549971,"attenuationLength":"0.007313","focalDistance":13.665851627353376,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":115,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 116, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.97556070515056,"attenuationLength":"0.007313","focalDistance":13.784685119765147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":116,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 117, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":58.29605214878869,"attenuationLength":"0.007313","focalDistance":13.903518612176915,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":117,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 118, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":58.62010667080868,"attenuationLength":"0.007313","focalDistance":14.022352104588682,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":118,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 119, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":58.947784022385704,"attenuationLength":"0.007313","focalDistance":14.141185597000451,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":119,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 120, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":59.279145298204384,"attenuationLength":"0.007313","focalDistance":14.26001908941222,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":120,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 121, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":59.614252974433285,"attenuationLength":"0.007313","focalDistance":14.378852581823988,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":121,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 122, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":59.95317094799499,"attenuationLength":"0.007313","focalDistance":14.497686074235757,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":122,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 123, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.29596457718315,"attenuationLength":"0.007313","focalDistance":14.616519566647524,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":123,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 124, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.64270072368114,"attenuationLength":"0.007313","focalDistance":14.735353059059296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":124,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 125, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":125,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 126, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":61.34827579466647,"attenuationLength":"0.007313","focalDistance":14.973020043882832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":126,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 127, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":61.70725635840967,"attenuationLength":"0.007313","focalDistance":15.0918535362946,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":127,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 128, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":62.07046281276721,"attenuationLength":"0.007313","focalDistance":15.210687028706367,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":128,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 129, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":62.43797021982327,"attenuationLength":"0.007313","focalDistance":15.329520521118136,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":129,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:09 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 130, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":62.80985542996359,"attenuationLength":"0.007313","focalDistance":15.448354013529904,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":130,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 131, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":63.186197135450755,"attenuationLength":"0.007313","focalDistance":15.567187505941673,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":131,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 132, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":63.56707592593728,"attenuationLength":"0.007313","focalDistance":15.68602099835344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":132,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 133, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":63.952574345998684,"attenuationLength":"0.007313","focalDistance":15.804854490765212,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":133,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 134, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":64.34277695477256,"attenuationLength":"0.007313","focalDistance":15.92368798317698,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":134,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 135, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":64.73777038779457,"attenuationLength":"0.007313","focalDistance":16.04252147558875,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":135,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 136, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.13764342112603,"attenuationLength":"0.007313","focalDistance":16.161354968000516,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":136,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 137, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.54248703787286,"attenuationLength":"0.007313","focalDistance":16.280188460412283,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":137,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 138, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.9523944972008,"attenuationLength":"0.007313","focalDistance":16.399021952824054,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":138,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 139, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":66.36746140595632,"attenuationLength":"0.007313","focalDistance":16.51785544523582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":139,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 140, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":66.78778579300958,"attenuationLength":"0.007313","focalDistance":16.636688937647587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":140,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 141, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":67.21346818644002,"attenuationLength":"0.007313","focalDistance":16.755522430059358,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":141,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 142, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":67.64461169369277,"attenuationLength":"0.007313","focalDistance":16.874355922471125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":142,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 143, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":68.08132208484001,"attenuationLength":"0.007313","focalDistance":16.993189414882895,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":143,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 144, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":68.52370787908836,"attenuationLength":"0.007313","focalDistance":17.112022907294666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":144,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 145, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":68.97188043468114,"attenuationLength":"0.007313","focalDistance":17.230856399706433,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":145,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 146, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":69.4259540423518,"attenuationLength":"0.007313","focalDistance":17.349689892118203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":146,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 147, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":69.88604602249325,"attenuationLength":"0.007313","focalDistance":17.46852338452997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":147,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 148, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":70.3522768262167,"attenuationLength":"0.007313","focalDistance":17.587356876941737,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":148,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 149, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":70.82477014048287,"attenuationLength":"0.007313","focalDistance":17.706190369353507,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":149,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 150, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":71.3036529974982,"attenuationLength":"0.007313","focalDistance":17.825023861765274,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":150,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 151, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":71.78905588857947,"attenuationLength":"0.007313","focalDistance":17.94385735417704,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":151,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 152, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":72.28111288270102,"attenuationLength":"0.007313","focalDistance":18.06269084658881,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":152,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 153, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":72.779961749951,"attenuationLength":"0.007313","focalDistance":18.181524339000582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":153,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 154, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":73.28574409013524,"attenuationLength":"0.007313","focalDistance":18.30035783141235,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":154,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 155, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":73.79860546678125,"attenuationLength":"0.007313","focalDistance":18.41919132382412,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":155,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 156, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":74.31869554680817,"attenuationLength":"0.007313","focalDistance":18.538024816235886,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":156,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 157, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":74.84616824614484,"attenuationLength":"0.007313","focalDistance":18.656858308647653,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":157,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 158, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":75.38118188159316,"attenuationLength":"0.007313","focalDistance":18.775691801059423,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":158,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 159, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":75.92389932925147,"attenuationLength":"0.007313","focalDistance":18.89452529347119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":159,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 160, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":76.47448818983152,"attenuationLength":"0.007313","focalDistance":19.01335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":160,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 161, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":77.03312096122056,"attenuationLength":"0.007313","focalDistance":19.132192278294728,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":161,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 162, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":77.59997521866279,"attenuationLength":"0.007313","focalDistance":19.251025770706494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":162,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 163, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":78.17523380295484,"attenuationLength":"0.007313","focalDistance":19.36985926311827,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":163,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 164, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":78.75908501707428,"attenuationLength":"0.007313","focalDistance":19.488692755530035,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":164,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 165, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":79.3517228316861,"attenuationLength":"0.007313","focalDistance":19.607526247941802,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":165,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 166, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":79.95334709999713,"attenuationLength":"0.007313","focalDistance":19.726359740353573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":166,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 167, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":80.56416378245933,"attenuationLength":"0.007313","focalDistance":19.84519323276534,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":167,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 168, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":81.1843851818523,"attenuationLength":"0.007313","focalDistance":19.964026725177106,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":168,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 169, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":81.8142301893086,"attenuationLength":"0.007313","focalDistance":20.082860217588877,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":169,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 170, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":82.45392454188085,"attenuationLength":"0.007313","focalDistance":20.201693710000644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":170,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 171, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":83.10370109228754,"attenuationLength":"0.007313","focalDistance":20.32052720241241,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":171,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 172, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":83.76380009151438,"attenuationLength":"0.007313","focalDistance":20.43936069482418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":172,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 173, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":84.43446948499181,"attenuationLength":"0.007313","focalDistance":20.55819418723595,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":173,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 174, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":85.1159652231157,"attenuationLength":"0.007313","focalDistance":20.67702767964772,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":174,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 175, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":85.80855158692857,"attenuationLength":"0.007313","focalDistance":20.79586117205949,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":175,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 176, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":86.51250152983101,"attenuationLength":"0.007313","focalDistance":20.914694664471256,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":176,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 177, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":87.22809703625273,"attenuationLength":"0.007313","focalDistance":21.033528156883026,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":177,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 178, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":87.95562949827212,"attenuationLength":"0.007313","focalDistance":21.152361649294793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":178,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 179, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":88.69540011124224,"attenuationLength":"0.007313","focalDistance":21.27119514170656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":179,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 180, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":89.44772028955083,"attenuationLength":"0.007313","focalDistance":21.39002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":180,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 181, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":90.21291210372027,"attenuationLength":"0.007313","focalDistance":21.508862126530097,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":181,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 182, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":90.99130874013683,"attenuationLength":"0.007313","focalDistance":21.627695618941864,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":182,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 183, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":91.78325498478733,"attenuationLength":"0.007313","focalDistance":21.746529111353638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":183,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 184, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":92.58910773247871,"attenuationLength":"0.007313","focalDistance":21.865362603765405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":184,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 185, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":93.40923652312125,"attenuationLength":"0.007313","focalDistance":21.984196096177172,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":185,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 186, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":94.24402410676765,"attenuationLength":"0.007313","focalDistance":22.103029588588942,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":186,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 187, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":95.09386703922343,"attenuationLength":"0.007313","focalDistance":22.22186308100071,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":187,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 188, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":95.95917631017616,"attenuationLength":"0.007313","focalDistance":22.340696573412476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":188,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 189, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":96.8403780059337,"attenuationLength":"0.007313","focalDistance":22.459530065824246,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":189,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 190, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":97.73791400901644,"attenuationLength":"0.007313","focalDistance":22.578363558236013,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":190,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 191, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":98.65224273701777,"attenuationLength":"0.007313","focalDistance":22.697197050647784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":191,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 192, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":99.5838399233275,"attenuationLength":"0.007313","focalDistance":22.816030543059554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":192,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 193, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":100.53319944251271,"attenuationLength":"0.007313","focalDistance":22.93486403547132,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":193,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 194, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":101.50083418336436,"attenuationLength":"0.007313","focalDistance":23.05369752788309,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":194,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 195, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":102.48727697285224,"attenuationLength":"0.007313","focalDistance":23.17253102029486,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":195,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 196, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":103.49308155448628,"attenuationLength":"0.007313","focalDistance":23.291364512706625,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":196,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 197, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":104.5188236248579,"attenuationLength":"0.007313","focalDistance":23.410198005118396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":197,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 198, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":105.56510193243889,"attenuationLength":"0.007313","focalDistance":23.529031497530163,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":198,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 199, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":106.63253944304438,"attenuationLength":"0.007313","focalDistance":23.64786498994193,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":199,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 200, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":107.72178457672646,"attenuationLength":"0.007313","focalDistance":23.7666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":200,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 2, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-23.325401899928792,"attenuationLength":"0.007313","focalDistance":89.12511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":2,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 3, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-52.178591939859366,"attenuationLength":"0.007313","focalDistance":59.41674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":3,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 4, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-136.76964159206418,"attenuationLength":"0.007313","focalDistance":44.56255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":4,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 5, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-5011.683299115805,"attenuationLength":"0.007313","focalDistance":35.650047723530555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":5,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 6, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":220.17606260308207,"attenuationLength":"0.007313","focalDistance":29.708373102942126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":6,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 7, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":126.12724796819347,"attenuationLength":"0.007313","focalDistance":25.46431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":7,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 8, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":95.5245621138332,"attenuationLength":"0.007313","focalDistance":22.281279827206596,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":8,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 9, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":80.35952387033105,"attenuationLength":"0.007313","focalDistance":19.805582068628084,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":9,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 10, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":71.30365299749822,"attenuationLength":"0.007313","focalDistance":17.825023861765278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":10,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 11, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":65.28427931793271,"attenuationLength":"0.007313","focalDistance":16.204567147059343,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":11,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 12, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":12,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 13, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":57.780080820525846,"attenuationLength":"0.007313","focalDistance":13.71155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":13,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 14, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":55.28360860767267,"attenuationLength":"0.007313","focalDistance":12.73215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":14,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 15, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":53.288200469185874,"attenuationLength":"0.007313","focalDistance":11.883349241176852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":15,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 16, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":51.65676240168851,"attenuationLength":"0.007313","focalDistance":11.140639913603298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":16,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 17, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":50.29803329476719,"attenuationLength":"0.007313","focalDistance":10.485308153979574,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":17,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 18, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":49.148908874163354,"attenuationLength":"0.007313","focalDistance":9.902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":18,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 19, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":48.16436025663314,"attenuationLength":"0.007313","focalDistance":9.381591506192251,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":19,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 20, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882639,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":20,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 21, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":46.56528551941808,"attenuationLength":"0.007313","focalDistance":8.488106600840608,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":21,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 22, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.90713671509984,"attenuationLength":"0.007313","focalDistance":8.102283573529672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":22,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 23, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":45.32225932021564,"attenuationLength":"0.007313","focalDistance":7.750010374680555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":23,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 24, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.79906261986619,"attenuationLength":"0.007313","focalDistance":7.4270932757355315,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":24,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 25, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":44.32827814292138,"attenuationLength":"0.007313","focalDistance":7.130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":25,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:10 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 26, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.902405815386416,"attenuationLength":"0.007313","focalDistance":6.85577840837126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":26,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 27, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.515311405724994,"attenuationLength":"0.007313","focalDistance":6.601860689542695,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":27,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 28, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":43.161929145947745,"attenuationLength":"0.007313","focalDistance":6.366079950630455,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":28,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 29, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.838038806992714,"attenuationLength":"0.007313","focalDistance":6.146559952332853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":29,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 30, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588426,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":30,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 31, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.265103721046444,"attenuationLength":"0.007313","focalDistance":5.750007697343637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":31,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 32, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":42.01050759462439,"attenuationLength":"0.007313","focalDistance":5.570319956801649,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":32,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 33, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.774119872763706,"attenuationLength":"0.007313","focalDistance":5.4015223823531135,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":33,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 34, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.554054630644146,"attenuationLength":"0.007313","focalDistance":5.242654076989787,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":34,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 35, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.348677696464215,"attenuationLength":"0.007313","focalDistance":5.092863960504364,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":35,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 36, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":41.15656599980219,"attenuationLength":"0.007313","focalDistance":4.951395517157021,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":36,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 37, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.976474550581216,"attenuationLength":"0.007313","focalDistance":4.817574016693317,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":37,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 38, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.80730942829118,"attenuationLength":"0.007313","focalDistance":4.6907957530961255,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":38,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 39, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.648105542775006,"attenuationLength":"0.007313","focalDistance":4.570518938914174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":39,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 40, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.49800821130249,"attenuationLength":"0.007313","focalDistance":4.456255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":40,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 41, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.356257809147,"attenuationLength":"0.007313","focalDistance":4.347566795552506,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":41,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 42, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.22217691163612,"attenuationLength":"0.007313","focalDistance":4.244053300420304,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":42,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 43, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":40.095159468293346,"attenuationLength":"0.007313","focalDistance":4.145354386457041,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":43,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 44, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.97466164400618,"attenuationLength":"0.007313","focalDistance":4.051141786764836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":44,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 45, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.860194035233036,"attenuationLength":"0.007313","focalDistance":3.961116413725617,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":45,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 46, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.75131502628382,"attenuationLength":"0.007313","focalDistance":3.8750051873402773,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":46,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 47, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.647625095502164,"attenuationLength":"0.007313","focalDistance":3.792558268460697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":47,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 48, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.54876191658683,"attenuationLength":"0.007313","focalDistance":3.7135466378677657,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":48,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 49, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.454396128451435,"attenuationLength":"0.007313","focalDistance":3.637759971788832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":49,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 50, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.5650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":50,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 51, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.277982590676956,"attenuationLength":"0.007313","focalDistance":3.4951027179931913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":51,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 52, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.19541027500935,"attenuationLength":"0.007313","focalDistance":3.42788920418563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":52,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 53, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.11628100582182,"attenuationLength":"0.007313","focalDistance":3.363212049389675,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":53,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 54, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":39.04038383230436,"attenuationLength":"0.007313","focalDistance":3.3009303447713476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":54,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 55, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.96752469164058,"attenuationLength":"0.007313","focalDistance":3.240913429411868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":55,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 56, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.89752475217474,"attenuationLength":"0.007313","focalDistance":3.1830399753152276,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":56,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 57, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.830218947881654,"attenuationLength":"0.007313","focalDistance":3.12719716873075,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":57,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 58, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.7654546788564,"attenuationLength":"0.007313","focalDistance":3.0732799761664267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":58,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 59, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.70309065628845,"attenuationLength":"0.007313","focalDistance":3.0211904850449622,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":59,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 60, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.970837310294213,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":60,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 61, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.585048687415764,"attenuationLength":"0.007313","focalDistance":2.922135059305783,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":61,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 62, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.529135996495,"attenuationLength":"0.007313","focalDistance":2.8750038486718186,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":62,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 63, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.4751525041305,"attenuationLength":"0.007313","focalDistance":2.829368866946869,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":63,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 64, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.423000056725556,"attenuationLength":"0.007313","focalDistance":2.7851599784008245,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":64,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 65, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.37258704811054,"attenuationLength":"0.007313","focalDistance":2.742311363348504,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":65,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 66, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.32382788255768,"attenuationLength":"0.007313","focalDistance":2.7007611911765568,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":66,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 67, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.2766424897917,"attenuationLength":"0.007313","focalDistance":2.6604513226515336,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":67,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 68, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.23095588621591,"attenuationLength":"0.007313","focalDistance":2.6213270384948935,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":68,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 69, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.186697777296,"attenuationLength":"0.007313","focalDistance":2.583336791560185,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":69,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '488' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 70, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.14380219666683,"attenuationLength":"0.007313","focalDistance":2.546431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":70,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 71, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.10220717806532,"attenuationLength":"0.007313","focalDistance":2.510566741093701,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":71,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 72, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.06185445665789,"attenuationLength":"0.007313","focalDistance":2.4756977585785105,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":72,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 73, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":38.022689196735115,"attenuationLength":"0.007313","focalDistance":2.4417840906527775,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":73,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 74, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.9846597430972,"attenuationLength":"0.007313","focalDistance":2.4087870083466587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":74,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 75, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.3766698482353705,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":75,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 76, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.911816191878906,"attenuationLength":"0.007313","focalDistance":2.3453978765480628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":76,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 77, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.87691273501992,"attenuationLength":"0.007313","focalDistance":2.3149381638656203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":77,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 78, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.842966000116036,"attenuationLength":"0.007313","focalDistance":2.285259469457087,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":78,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 79, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.80993718262206,"attenuationLength":"0.007313","focalDistance":2.256332134400668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":79,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 80, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.77778954854356,"attenuationLength":"0.007313","focalDistance":2.2281279827206597,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":80,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 81, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.74648829815311,"attenuationLength":"0.007313","focalDistance":2.2006202298475652,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":81,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 82, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.71600044033088,"attenuationLength":"0.007313","focalDistance":2.173783397776253,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":82,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 83, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.68629467657573,"attenuationLength":"0.007313","focalDistance":2.1475932363572623,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":83,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 84, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.65734129382953,"attenuationLength":"0.007313","focalDistance":2.122026650210152,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":84,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 85, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.62911206534324,"attenuationLength":"0.007313","focalDistance":2.0970616307959147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":85,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 86, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.60158015888938,"attenuationLength":"0.007313","focalDistance":2.0726771932285204,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":86,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 87, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.574720051693575,"attenuationLength":"0.007313","focalDistance":2.0488533174442844,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":87,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 88, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.54850745151831,"attenuationLength":"0.007313","focalDistance":2.025570893382418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":88,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 89, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.52291922338584,"attenuationLength":"0.007313","focalDistance":2.002811669861267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":89,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 90, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.4979333214758,"attenuationLength":"0.007313","focalDistance":1.9805582068628085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":90,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 91, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.47352872577608,"attenuationLength":"0.007313","focalDistance":1.9587938309632171,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":91,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 92, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.44968538310439,"attenuationLength":"0.007313","focalDistance":1.9375025936701387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":92,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 93, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.42638415215271,"attenuationLength":"0.007313","focalDistance":1.9166692324478791,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":93,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 94, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.40360675223803,"attenuationLength":"0.007313","focalDistance":1.8962791342303484,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":94,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 95, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.381335715471096,"attenuationLength":"0.007313","focalDistance":1.87631830123845,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":95,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 96, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.359554342080074,"attenuationLength":"0.007313","focalDistance":1.8567733189338829,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":96,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 97, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.338246658649005,"attenuationLength":"0.007313","focalDistance":1.8376313259551833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":97,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 98, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.31739737905157,"attenuationLength":"0.007313","focalDistance":1.818879985894416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":98,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 99, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '628' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.2969918678794,"attenuationLength":"0.007313","focalDistance":1.8005074607843714,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":99,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '490' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 100, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":100,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 101, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.257456659342935,"attenuationLength":"0.007313","focalDistance":1.7648538476995324,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":101,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 102, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.23830064695806,"attenuationLength":"0.007313","focalDistance":1.7475513589965956,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":102,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 103, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.21953571453978,"attenuationLength":"0.007313","focalDistance":1.730584840948085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":103,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 104, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.201150006950805,"attenuationLength":"0.007313","focalDistance":1.713944602092815,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":104,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 105, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.18313214342683,"attenuationLength":"0.007313","focalDistance":1.6976213201681216,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":105,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 106, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.1654711940846,"attenuationLength":"0.007313","focalDistance":1.6816060246948374,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":106,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 107, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.14815665781217,"attenuationLength":"0.007313","focalDistance":1.6658900805388108,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":107,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 108, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.13117844144766,"attenuationLength":"0.007313","focalDistance":1.6504651723856738,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":108,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 109, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.11452684015957,"attenuationLength":"0.007313","focalDistance":1.6353232900702088,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":109,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 110, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.09819251894869,"attenuationLength":"0.007313","focalDistance":1.620456714705934,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":110,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 111, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.08216649519735,"attenuationLength":"0.007313","focalDistance":1.6058580055644391,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":111,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 112, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.0664401221975,"attenuationLength":"0.007313","focalDistance":1.5915199876576138,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":112,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 113, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.05100507359433,"attenuationLength":"0.007313","focalDistance":1.5774357399792278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":113,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 114, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.03585332868637,"attenuationLength":"0.007313","focalDistance":1.563598584365375,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":114,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 115, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.02097715852769,"attenuationLength":"0.007313","focalDistance":1.550002074936111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":115,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 116, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":37.00636911278157,"attenuationLength":"0.007313","focalDistance":1.5366399880832133,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":116,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 117, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.99202200727869,"attenuationLength":"0.007313","focalDistance":1.5235063129713913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":117,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 118, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.97792891223611,"attenuationLength":"0.007313","focalDistance":1.5105952425224811,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":118,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 119, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.96408314109652,"attenuationLength":"0.007313","focalDistance":1.4979011648542249,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":119,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 120, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.950478239949966,"attenuationLength":"0.007313","focalDistance":1.4854186551471065,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":120,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 121, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.93710797750289,"attenuationLength":"0.007313","focalDistance":1.4731424679144858,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":121,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 122, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.923966335561744,"attenuationLength":"0.007313","focalDistance":1.4610675296528914,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":122,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 123, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.9110475000006,"attenuationLength":"0.007313","focalDistance":1.4491889318508355,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":123,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 124, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.89834585218438,"attenuationLength":"0.007313","focalDistance":1.4375019243359093,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":124,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 125, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":125,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 126, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.87357257421747,"attenuationLength":"0.007313","focalDistance":1.4146844334734345,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":126,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 127, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.86149061291759,"attenuationLength":"0.007313","focalDistance":1.4035451859657697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":127,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 128, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.849605162698005,"attenuationLength":"0.007313","focalDistance":1.3925799892004123,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":128,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 129, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.83791146790387,"attenuationLength":"0.007313","focalDistance":1.3817847954856803,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":129,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 130, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.826404925104335,"attenuationLength":"0.007313","focalDistance":1.371155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":130,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 131, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.81508107705016,"attenuationLength":"0.007313","focalDistance":1.360688844409563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":131,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 132, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.80393560691698,"attenuationLength":"0.007313","focalDistance":1.3503805955882784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":132,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 133, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.792964332818414,"attenuationLength":"0.007313","focalDistance":1.3402273580274644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":133,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 134, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.78216320257449,"attenuationLength":"0.007313","focalDistance":1.3302256613257668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":134,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 135, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.77152828872157,"attenuationLength":"0.007313","focalDistance":1.320372137908539,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":135,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:11 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 136, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.76105578375092,"attenuationLength":"0.007313","focalDistance":1.3106635192474467,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":136,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 137, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.750741995563736,"attenuationLength":"0.007313","focalDistance":1.3010966322456405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":137,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 138, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.74058334313128,"attenuationLength":"0.007313","focalDistance":1.2916683957800925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":138,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 139, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.730576352349345,"attenuationLength":"0.007313","focalDistance":1.2823758173931852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":139,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 140, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.72071765207712,"attenuationLength":"0.007313","focalDistance":1.273215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":140,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 141, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.711003970350724,"attenuationLength":"0.007313","focalDistance":1.264186089486899,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":141,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 142, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.70143213076272,"attenuationLength":"0.007313","focalDistance":1.2552833705468505,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":142,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 143, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.691999048999,"attenuationLength":"0.007313","focalDistance":1.246505165158411,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":143,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '489' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 144, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.68270172952528,"attenuationLength":"0.007313","focalDistance":1.2378488792892552,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":144,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 145, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.673537262415536,"attenuationLength":"0.007313","focalDistance":1.2293119904665706,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":145,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 146, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.66450282031554,"attenuationLength":"0.007313","focalDistance":1.2208920453263887,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":146,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 147, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.655595655534654,"attenuationLength":"0.007313","focalDistance":1.2125866572629438,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":147,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 148, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.64681309725971,"attenuationLength":"0.007313","focalDistance":1.2043935041733294,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":148,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 149, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.638152548884975,"attenuationLength":"0.007313","focalDistance":1.1963103262929715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":149,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 150, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.629611485452706,"attenuationLength":"0.007313","focalDistance":1.1883349241176853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":150,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 151, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.62118745119878,"attenuationLength":"0.007313","focalDistance":1.1804651564082964,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":151,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 152, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.612878057198685,"attenuationLength":"0.007313","focalDistance":1.1726989382740314,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":152,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 153, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.60468097910882,"attenuationLength":"0.007313","focalDistance":1.165034239331064,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":153,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 154, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.59659395499888,"attenuationLength":"0.007313","focalDistance":1.1574690819328102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":154,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 155, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.5886147832709,"attenuationLength":"0.007313","focalDistance":1.1500015394687275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":155,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 156, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.580741320661026,"attenuationLength":"0.007313","focalDistance":1.1426297347285435,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":156,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 157, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.57297148032021,"attenuationLength":"0.007313","focalDistance":1.1353518383289984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":157,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 158, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.56530322997014,"attenuationLength":"0.007313","focalDistance":1.128166067200334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":158,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 159, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.557734590131055,"attenuationLength":"0.007313","focalDistance":1.1210706831298916,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":159,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 160, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.55026363241819,"attenuationLength":"0.007313","focalDistance":1.1140639913603299,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":160,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 161, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.542888477903745,"attenuationLength":"0.007313","focalDistance":1.1071443392400793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":161,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 162, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.53560729554145,"attenuationLength":"0.007313","focalDistance":1.1003101149237826,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":162,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 163, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.52841830065101,"attenuationLength":"0.007313","focalDistance":1.093559746120569,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":163,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 164, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.52131975345973,"attenuationLength":"0.007313","focalDistance":1.0868916988881265,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":164,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 165, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.514309957698806,"attenuationLength":"0.007313","focalDistance":1.0803044764706229,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":165,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 166, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.50738725925205,"attenuationLength":"0.007313","focalDistance":1.0737966181786311,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":166,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 167, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.500550044854506,"attenuationLength":"0.007313","focalDistance":1.067366698309298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":167,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 168, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.493796740839166,"attenuationLength":"0.007313","focalDistance":1.061013325105076,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":168,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 169, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.48712581192938,"attenuationLength":"0.007313","focalDistance":1.0547351397494247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":169,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 170, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.48053576007531,"attenuationLength":"0.007313","focalDistance":1.0485308153979573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":170,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 171, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.47402512333238,"attenuationLength":"0.007313","focalDistance":1.0423990562435834,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":171,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 172, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.46759247478006,"attenuationLength":"0.007313","focalDistance":1.0363385966142602,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":172,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 173, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.46123642147926,"attenuationLength":"0.007313","focalDistance":1.030348200102039,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":173,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 174, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.454955603466765,"attenuationLength":"0.007313","focalDistance":1.0244266587221422,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":174,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 175, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.44874869278512,"attenuationLength":"0.007313","focalDistance":1.018572792100873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":175,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 176, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.44261439254663,"attenuationLength":"0.007313","focalDistance":1.012785446691209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":176,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 177, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.43655143602999,"attenuationLength":"0.007313","focalDistance":1.0070634950149873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":177,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 178, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.43055858580821,"attenuationLength":"0.007313","focalDistance":1.0014058349306334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":178,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 179, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.424634632906674,"attenuationLength":"0.007313","focalDistance":0.9958113889254344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":179,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 180, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.41877839599005,"attenuationLength":"0.007313","focalDistance":0.9902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":180,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 181, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.41298872057695,"attenuationLength":"0.007313","focalDistance":0.9848079481638273,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":181,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 182, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.40726447828112,"attenuationLength":"0.007313","focalDistance":0.9793969154816086,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":182,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 183, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.40160456607837,"attenuationLength":"0.007313","focalDistance":0.9740450197685943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":183,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 184, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.39600790559795,"attenuationLength":"0.007313","focalDistance":0.9687512968350693,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":184,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 185, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.3904734424376,"attenuationLength":"0.007313","focalDistance":0.9635148033386636,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":185,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 186, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.38500014550132,"attenuationLength":"0.007313","focalDistance":0.9583346162239396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":186,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 187, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.379587006358975,"attenuationLength":"0.007313","focalDistance":0.9532098321799612,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":187,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 188, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.37423303862684,"attenuationLength":"0.007313","focalDistance":0.9481395671151742,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":188,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 189, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.36893727736845,"attenuationLength":"0.007313","focalDistance":0.9431229556489563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":189,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 190, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.363698778514824,"attenuationLength":"0.007313","focalDistance":0.938159150619225,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":190,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 191, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.358516618303376,"attenuationLength":"0.007313","focalDistance":0.9332473226055118,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":191,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 192, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.353389892734896,"attenuationLength":"0.007313","focalDistance":0.9283866594669414,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":192,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 193, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.348317717047806,"attenuationLength":"0.007313","focalDistance":0.9235763658945739,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":193,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '493' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 194, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.34329922520914,"attenuationLength":"0.007313","focalDistance":0.9188156629775917,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":194,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 195, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.33833356942159,"attenuationLength":"0.007313","focalDistance":0.9141037877828347,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":195,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 196, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.33341991964607,"attenuationLength":"0.007313","focalDistance":0.909439992947208,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":196,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '491' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 197, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.32855746313913,"attenuationLength":"0.007313","focalDistance":0.9048235462825014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":197,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 198, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.32374540400484,"attenuationLength":"0.007313","focalDistance":0.9002537303921857,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":198,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 199, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.31898296276049,"attenuationLength":"0.007313","focalDistance":0.8957298422997626,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":199,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 200, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '629' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":36.31426937591563,"attenuationLength":"0.007313","focalDistance":0.8912511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":200,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '492' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 1}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":1,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 2}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":2,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 3}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":3,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 4}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":4,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 5}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":5,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 6}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":6,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 7}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":7,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 8}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":8,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 9}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":9,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '482' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 10}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":10,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 11}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":11,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 12}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":12,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 13}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":13,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 14}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":14,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 15}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":15,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 16}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":16,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 17}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":17,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 18}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":18,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 19}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":19,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 20}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":20,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 21}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":21,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 22}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":22,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 23}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":23,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 24}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":24,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 25}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":25,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 26}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":26,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 27}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":27,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 28}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":28,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 29}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":29,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 30}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":30,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 31}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":31,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 32}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":32,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 33}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":33,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 34}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":34,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 35}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":35,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 36}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":36,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 37}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":37,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 38}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":38,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 39}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":39,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 40}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":40,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 41}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":41,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 42}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":42,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 43}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":43,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 44}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":44,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 45}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":45,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 46}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":46,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 47}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":47,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:12 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 48}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":48,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 49}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":49,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 50}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":50,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 51}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":51,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 52}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":52,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 53}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":53,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 54}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":54,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 55}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":55,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 56}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":56,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 57}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":57,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 58}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":58,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 59}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":59,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 60}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":60,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 61}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":61,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 62}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":62,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 63}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":63,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 64}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":64,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 65}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":65,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 66}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":66,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 67}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":67,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 68}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":68,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 69}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":69,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 70}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":70,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 71}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":71,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 72}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":72,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 73}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":73,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 74}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":74,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 75}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":75,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 76}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":76,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 77}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":77,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 78}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":78,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 79}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":79,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 80}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":80,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 81}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":81,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 82}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":82,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 83}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":83,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 84}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":84,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 85}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":85,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 86}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":86,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 87}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":87,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 88}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":88,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 89}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":89,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 90}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":90,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 91}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":91,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 92}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":92,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 93}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":93,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 94}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":94,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 95}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":95,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 96}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":96,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 97}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":97,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 98}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":98,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 99}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '620' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":99,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '483' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 100}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":100,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 101}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":101,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 102}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":102,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 103}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":103,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 104}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":104,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 105}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":105,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 106}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":106,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 107}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":107,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 108}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":108,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 109}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":109,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 110}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":110,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 111}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":111,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 112}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":112,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 113}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":113,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 114}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":114,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 115}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":115,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 116}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":116,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 117}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":117,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 118}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":118,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 119}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":119,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 120}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":120,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 121}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":121,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 122}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":122,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 123}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":123,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 124}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":124,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 125}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":125,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 126}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":126,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 127}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":127,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 128}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":128,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 129}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":129,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 130}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":130,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 131}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":131,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 132}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":132,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 133}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":133,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 134}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":134,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 135}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":135,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 136}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":136,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 137}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":137,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 138}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":138,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 139}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":139,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 140}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":140,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 141}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":141,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 142}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":142,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 143}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":143,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 144}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":144,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 145}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":145,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 146}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":146,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 147}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":147,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 148}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":148,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 149}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":149,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 150}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":150,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 151}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":151,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 152}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":152,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 153}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":153,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 154}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":154,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 155}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":155,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 156}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":156,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 157}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":157,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 158}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":158,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 159}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":159,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 160}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":160,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:13 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 161}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":161,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 162}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":162,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 163}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":163,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 164}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":164,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 165}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":165,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 166}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":166,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 167}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":167,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 168}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":168,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 169}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":169,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 170}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":170,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 171}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":171,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 172}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":172,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 173}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":173,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 174}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":174,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 175}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":175,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 176}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":176,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 177}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":177,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 178}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":178,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 179}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":179,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 180}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":180,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 181}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":181,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 182}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":182,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 183}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":183,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 184}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":184,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 185}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":185,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 186}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":186,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 187}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":187,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 188}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":188,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 189}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":189,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 190}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":190,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 191}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":191,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 192}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":192,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 193}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":193,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 194}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":194,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 195}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":195,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 196}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":196,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 197}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":197,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 198}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":198,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 199}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":199,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": + "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": + "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 200}, "photon_energy": "9000", + "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":200,"state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '484' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:46:14 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +version: 1 diff --git a/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml b/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml new file mode 100644 index 00000000..3f93c092 --- /dev/null +++ b/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml @@ -0,0 +1,34844 @@ +interactions: +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 21, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 22, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 23, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 24, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:34 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 25, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 26, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 27, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 28, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 29, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 30, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 31, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 32, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 33, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 34, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 35, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 36, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 37, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 38, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 39, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 40, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 41, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 42, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 43, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 44, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 45, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 46, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 47, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 48, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 49, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 50, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 51, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 52, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 53, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 54, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 55, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 56, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 57, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 58, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 59, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 60, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 61, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 62, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:35 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 63, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 64, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 65, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 66, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 67, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 68, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 69, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 70, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 71, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 72, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 73, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 74, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 75, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 76, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 77, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 78, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 79, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 80, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 81, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 82, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 83, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 84, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 85, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 86, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 87, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 88, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 89, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 90, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 91, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 92, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 93, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 94, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 95, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 96, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 97, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 98, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 99, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '935' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '663' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '935' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '663' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '844' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '663' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:36 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:37 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:37 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:37 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:37 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:37 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:37 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:38 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:39 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:40 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:40 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:40 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:40 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:40 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:40 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:41 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:42 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:42 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:42 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:42 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:42 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:42 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:43 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:44 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:44 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:44 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:44 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:44 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:45 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '933' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '842' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '661' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 21, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 22, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 23, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 24, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 25, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 26, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 27, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 28, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 29, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 30, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 31, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 32, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 33, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 34, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 35, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 36, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 37, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 38, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 39, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 40, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 41, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 42, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 43, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 44, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 45, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 46, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 47, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:46 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 48, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 49, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 50, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 51, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 52, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 53, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 54, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 55, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 56, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 57, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 58, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 59, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 60, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 61, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 62, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 63, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 64, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 65, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 66, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 67, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 68, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 69, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 70, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 71, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 72, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 73, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 74, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 75, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 76, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 77, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 78, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 79, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 80, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 81, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 82, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 83, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 84, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 85, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:47 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 86, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 87, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 88, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 89, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 90, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 91, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 92, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 93, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 94, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 95, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 96, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 97, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 98, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '934' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 99, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, + "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", + "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '843' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '662' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '935' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '663' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, + "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": + 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, + "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, + "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": + 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, + "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '935' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '663' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '844' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '663' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:48 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:49 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:49 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:49 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:49 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:49 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:49 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:50 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '849' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '668' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:51 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:52 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:53 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:54 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:54 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:54 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:54 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": + "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '941' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:54 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +- request: + body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": + 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": + 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": + null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": + "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": + "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", + "simulationType": "srw"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '850' + Content-Type: + - application/json + Cookie: + - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + User-Agent: + - python-requests/2.31.0 + method: POST + uri: http://localhost:8000/stateless-compute + response: + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + headers: + Access-Control-Allow-Origin: + - '*' + Content-Length: + - '669' + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 14:45:54 GMT + Server: + - Werkzeug/2.0.3 Python/3.9.15 + status: + code: 200 + message: OK +version: 1