diff --git a/channels/bs_channels.py b/channels/bs_channels.py index 0e6981a..46e8553 100644 --- a/channels/bs_channels.py +++ b/channels/bs_channels.py @@ -22,16 +22,28 @@ detectors = [ # downsample = tuple, # factor = Number, # geometry = bool, -# remove_raw_files = bool, -# roi = dict, #TODO: check on contents of the dict? +# remove_raw_files = bool, +# roi = dict, # TODO: test with these definitions: {'beam': [1775, 1875, 1070, 1170]} achtung: doesnt work with geometry = True # save_dap_results = bool # ) -detectors_with_config = DetectorConfig(detectors) +detectors = DetectorConfig(detectors) # detectors_with_config["JF16T03V01"]['save_dap_results'] = True # detectors_with_config["JF16T03V01"]['remove_raw_files'] = True # detectors_with_config["JF16T03V01"]['disabled_modules'] = [0, 1] # bottom module:0, middle module:1, top module:2 +detectors["JF17T16V01"]['disabled_modules'] = [0, 1, 2, 3, + 9, 10, 11, + 12, 13, 14, 15] # bottom module:0, middle module:1, top module:2 + + +detectors["JF17T16V01"]['remove_raw_files'] = True # We switched off quite a few modules, let's not keep all the raw data. +detectors["JF17T16V01"]['compression'] = True +detectors["JF17T16V01"]['adc_to_energy'] = True # We switched off quite a few modules, let's not keep all the raw data. +detectors["JF17T16V01"]['factor'] = 0.2 # Some useful compromise to save space. +detectors["JF17T16V01"]['save_dap_results'] = False +detectors["JF17T16V01"]['geometry'] = False + detectors_MX = DetectorConfig() detectors_MX.add("JF17T16V01", adc_to_energy=True, compression=True, crystfel_lists_laser=True, double_pixels_action="mask", factor=12.08, remove_raw_files=True, save_dap_results=True, geometry=False) @@ -166,7 +178,7 @@ channels_PSSS059 = [ "SARFE10-PSSS059:SPECTRUM_Y_SUM", "SARFE10-PSSS059:SPECTRUM_X", "SARFE10-PSSS059:SPECTRUM_Y", - "SARFE10-PSSS059:FPICTURE", + # "SARFE10-PSSS059:FPICTURE", "SARFE10-PSSS059:processing_parameters", ] diff --git a/cristallina.py b/cristallina.py index 2ceede6..f0df7b6 100644 --- a/cristallina.py +++ b/cristallina.py @@ -68,7 +68,7 @@ from slic.devices.timing.events import CTASequencer from channels.bs_channels import ( detectors, - detectors_with_config, + detectors, detectors_MX, bs_channels, camera_channels, diff --git a/devices/dilsc.py b/devices/dilsc.py index b1f5f0c..708452b 100644 --- a/devices/dilsc.py +++ b/devices/dilsc.py @@ -54,12 +54,35 @@ class Thermometer(Adjustable): @_check_connection def set_target_value(self, value): self.dilsc.setParameter(f'{self.name}', 'target', value) + + @_check_connection + def get_target_value(self): + cacheitem = self.dilsc.getParameter(f'{self.name}', 'target', trycache=False) + return cacheitem.value + @_check_connection def is_moving(self): response = self.dilsc.getParameter(f'{self.name}','status', trycache=False) return response[0][0] > StatusType.PREPARED - + + @_check_connection + def get_PID_parameters(self): + """ Returns the current PID parameters associated with the control loop for + this thermometer. + """ + response = self.dilsc.getParameter(f'{self.name}','ctrlpars', trycache=False) + return response + + @_check_connection + def set_PID_parameters(self, p, i, d): + """ Sets the PID parameters for the associated control loop. + TODO: + - This still returns a timeout error but sets the correct values. + - The range is limited to less than the Lakeshore range allows, this needs + to be fixed in frappy. + """ + self.dilsc.setParameter(f'{self.name}', 'ctrlpars', {'p': p, 'i': i, 'd': d}) class MagnetCoil(Adjustable): diff --git a/log/cristallina.log b/log/cristallina.log index 6621b44..d1131a4 100644 --- a/log/cristallina.log +++ b/log/cristallina.log @@ -1,855 +1,417 @@ -2023-09-13 at 17:47:59 | INFO | Connected to stand server -2023-09-13 at 17:48:00 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-13 at 17:48:00 | INFO | Running at cristallina with pgroup p19150. -2023-09-13 at 17:48:00 | INFO | Loading finished. -2023-09-13 at 17:59:12 | INFO | Connected to stand server -2023-09-13 at 17:59:13 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-13 at 17:59:13 | INFO | Running at cristallina with pgroup p19150. -2023-09-13 at 17:59:13 | INFO | Loading finished. -2023-09-13 at 23:23:54 | INFO | Connected to stand server -2023-09-13 at 23:23:54 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-13 at 23:23:55 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-13 at 23:23:56 | INFO | Running at cristallina with pgroup p19150. -2023-09-13 at 23:23:56 | INFO | Loading finished. -2023-09-23 at 18:20:47 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-23 at 18:20:47 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-23 at 18:20:48 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-23 at 18:20:51 | INFO | Running at cristallina with pgroup p19150. -2023-09-23 at 18:20:51 | INFO | Loading finished. -2023-09-23 at 18:33:46 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-23 at 18:33:47 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-23 at 18:33:47 | INFO | Running at cristallina with pgroup p19150. -2023-09-23 at 18:33:47 | INFO | Loading finished. -2023-09-25 at 12:57:37 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 12:57:37 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-25 at 12:57:38 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 12:57:38 | INFO | Running at cristallina with pgroup p19150. -2023-09-25 at 12:57:38 | INFO | Loading finished. -2023-09-25 at 13:25:29 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 13:25:29 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-25 at 13:25:31 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 13:25:31 | INFO | Running at cristallina with pgroup p19150. -2023-09-25 at 13:25:31 | INFO | Loading finished. -2023-09-25 at 17:16:41 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 17:16:41 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-25 at 17:16:43 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 17:16:43 | INFO | Running at cristallina with pgroup p19150. -2023-09-25 at 17:16:43 | INFO | Loading finished. -2023-09-25 at 21:12:24 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 21:12:24 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-25 at 21:12:25 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 21:12:26 | INFO | Running at cristallina with pgroup p21516. -2023-09-25 at 21:12:26 | INFO | Loading finished. -2023-09-25 at 21:14:20 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 21:14:21 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 21:14:21 | INFO | Running at cristallina with pgroup p21516. -2023-09-25 at 21:14:21 | INFO | Loading finished. -2023-09-25 at 21:14:48 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 21:14:49 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 21:14:49 | INFO | Running at cristallina with pgroup p21516. -2023-09-25 at 21:14:49 | INFO | Loading finished. -2023-09-25 at 21:14:57 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 21:14:58 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 21:14:58 | INFO | Running at cristallina with pgroup p21516. -2023-09-25 at 21:14:58 | INFO | Loading finished. -2023-09-25 at 21:21:52 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-09-25 at 21:21:53 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 21:21:53 | INFO | Running at cristallina with pgroup p21516. -2023-09-25 at 21:21:53 | INFO | Loading finished. -2023-09-25 at 21:23:35 | INFO | Connected to stand server -2023-09-25 at 21:23:36 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-25 at 21:23:36 | INFO | Running at cristallina with pgroup p21516. -2023-09-25 at 21:23:36 | INFO | Loading finished. -2023-09-25 at 21:28:02 | INFO | Simple acquisition started. -2023-09-25 at 21:28:05 | DEBUG | Simple acquisition complete: {'run_number': 1, 'time': 'Mon Sep 25 21:28:03 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': '', 'parameters': ''} -2023-09-25 at 22:06:08 | INFO | Simple acquisition started. -2023-09-25 at 22:06:09 | DEBUG | Simple acquisition complete: {'run_number': 2, 'time': 'Mon Sep 25 22:06:09 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': '', 'parameters': ''} -2023-09-25 at 22:59:49 | INFO | Simple acquisition started. -2023-09-25 at 22:59:50 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:50 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.990000'} -2023-09-25 at 22:59:52 | INFO | Simple acquisition started. -2023-09-25 at 22:59:52 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:52 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.000000'} -2023-09-25 at 22:59:53 | INFO | Simple acquisition started. -2023-09-25 at 22:59:54 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:53 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.100000'} -2023-09-25 at 22:59:54 | INFO | Simple acquisition started. -2023-09-25 at 22:59:55 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:54 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.200000'} -2023-09-25 at 22:59:55 | INFO | Simple acquisition started. -2023-09-25 at 22:59:56 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:55 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.300000'} -2023-09-25 at 22:59:56 | INFO | Simple acquisition started. -2023-09-25 at 22:59:57 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:56 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.400000'} -2023-09-25 at 22:59:57 | INFO | Simple acquisition started. -2023-09-25 at 22:59:58 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:57 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.500000'} -2023-09-25 at 22:59:58 | INFO | Simple acquisition started. -2023-09-25 at 22:59:58 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:58 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.600000'} -2023-09-25 at 22:59:59 | INFO | Simple acquisition started. -2023-09-25 at 22:59:59 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 22:59:59 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.700000'} -2023-09-25 at 23:00:00 | INFO | Simple acquisition started. -2023-09-25 at 23:00:00 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:00 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.800000'} -2023-09-25 at 23:00:01 | INFO | Simple acquisition started. -2023-09-25 at 23:00:01 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:01 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:5.900000'} -2023-09-25 at 23:00:02 | INFO | Simple acquisition started. -2023-09-25 at 23:00:02 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:02 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.000000'} -2023-09-25 at 23:00:03 | INFO | Simple acquisition started. -2023-09-25 at 23:00:03 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:03 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.100000'} -2023-09-25 at 23:00:04 | INFO | Simple acquisition started. -2023-09-25 at 23:00:05 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:04 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.200000'} -2023-09-25 at 23:00:05 | INFO | Simple acquisition started. -2023-09-25 at 23:00:06 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:05 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.300000'} -2023-09-25 at 23:00:06 | INFO | Simple acquisition started. -2023-09-25 at 23:00:06 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:06 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.400000'} -2023-09-25 at 23:00:07 | INFO | Simple acquisition started. -2023-09-25 at 23:00:07 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:07 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.500000'} -2023-09-25 at 23:00:08 | INFO | Simple acquisition started. -2023-09-25 at 23:00:08 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:08 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.600000'} -2023-09-25 at 23:00:09 | INFO | Simple acquisition started. -2023-09-25 at 23:00:09 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:09 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.700000'} -2023-09-25 at 23:00:10 | INFO | Simple acquisition started. -2023-09-25 at 23:00:10 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:10 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.800000'} -2023-09-25 at 23:00:11 | INFO | Simple acquisition started. -2023-09-25 at 23:00:11 | DEBUG | Simple acquisition complete: {'run_number': 3, 'time': 'Mon Sep 25 23:00:11 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'Smaract movement test', 'parameters': 'x:6.900000'} -2023-09-26 at 10:58:09 | INFO | Simple acquisition started. -2023-09-26 at 10:58:10 | DEBUG | Simple acquisition complete: {'run_number': 4, 'time': 'Tue Sep 26 10:58:09 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'testing the CTA acquisition', 'parameters': ''} -2023-09-26 at 11:02:35 | INFO | Retrieve images starting from pid 19120266900. -2023-09-26 at 11:02:35 | DEBUG | {'run_number': 4, 'acq_number': 2, 'total_acq_number': 25, 'filenames': ['/sf/cristallina/data/p21516/raw/run0004/data/acq0002.PVDATA.h5', '/sf/cristallina/data/p21516/raw/run0004/data/acq0002.BSDATA.h5', '/sf/cristallina/data/p21516/raw/run0004/data/acq0002.JF16T03V01.h5']} -2023-09-26 at 11:42:56 | INFO | Connected to stand server -2023-09-26 at 11:42:57 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 11:42:57 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 11:42:57 | INFO | Loading finished. -2023-09-26 at 11:43:22 | INFO | Simple acquisition started. -2023-09-26 at 11:43:23 | DEBUG | Simple acquisition complete: {'run_number': 5, 'time': 'Tue Sep 26 11:43:22 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'testing the CTA acquisition', 'parameters': ''} -2023-09-26 at 11:44:29 | INFO | Retrieve images starting from pid 19120518800. -2023-09-26 at 11:44:29 | DEBUG | {'run_number': 5, 'acq_number': 2, 'total_acq_number': 27, 'filenames': ['/sf/cristallina/data/p21516/raw/run0005/data/acq0002.PVDATA.h5', '/sf/cristallina/data/p21516/raw/run0005/data/acq0002.BSDATA.h5', '/sf/cristallina/data/p21516/raw/run0005/data/acq0002.JF16T03V01.h5']} -2023-09-26 at 11:47:45 | INFO | Connected to stand server -2023-09-26 at 11:47:46 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 11:47:46 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 11:47:46 | INFO | Loading finished. -2023-09-26 at 11:49:08 | INFO | Simple acquisition started. -2023-09-26 at 11:49:08 | DEBUG | Simple acquisition complete: {'run_number': 6, 'time': 'Tue Sep 26 11:49:08 2023', 'topic': 'Beamline commissioning', 'sample': '--', 'comment': 'testing the CTA acquisition, only one module', 'parameters': ''} -2023-09-26 at 11:50:18 | INFO | Retrieve images starting from pid 19120553700. -2023-09-26 at 11:50:18 | DEBUG | {'run_number': 6, 'acq_number': 2, 'total_acq_number': 29, 'filenames': ['/sf/cristallina/data/p21516/raw/run0006/data/acq0002.PVDATA.h5', '/sf/cristallina/data/p21516/raw/run0006/data/acq0002.BSDATA.h5', '/sf/cristallina/data/p21516/raw/run0006/data/acq0002.JF16T03V01.h5']} -2023-09-26 at 13:49:08 | INFO | Connected to stand server -2023-09-26 at 13:49:09 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 13:49:09 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 13:49:09 | INFO | Loading finished. -2023-09-26 at 13:59:23 | INFO | Connected to stand server -2023-09-26 at 13:59:24 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 13:59:24 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 13:59:24 | INFO | Loading finished. -2023-09-26 at 13:59:46 | INFO | Connected to stand server -2023-09-26 at 13:59:47 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 13:59:47 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 13:59:47 | INFO | Loading finished. -2023-09-26 at 14:00:49 | INFO | Connected to stand server -2023-09-26 at 14:00:49 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-26 at 14:00:50 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 14:00:50 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 14:00:50 | INFO | Loading finished. -2023-09-26 at 14:01:34 | INFO | Connected to stand server -2023-09-26 at 14:01:34 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-26 at 14:01:35 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 14:01:35 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 14:01:35 | INFO | Loading finished. -2023-09-26 at 18:04:51 | INFO | Connected to stand server -2023-09-26 at 18:04:51 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-26 at 18:04:52 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 18:04:52 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 18:04:52 | INFO | Loading finished. -2023-09-26 at 18:16:04 | INFO | Connected to stand server -2023-09-26 at 18:16:05 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 18:16:05 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 18:16:05 | INFO | Loading finished. -2023-09-26 at 18:35:39 | INFO | Connected to stand server -2023-09-26 at 18:35:40 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 18:35:40 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 18:35:40 | INFO | Loading finished. -2023-09-26 at 18:47:48 | INFO | Connected to stand server -2023-09-26 at 18:47:49 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-26 at 18:47:49 | INFO | Running at cristallina with pgroup p21516. -2023-09-26 at 18:47:49 | INFO | Loading finished. -2023-09-27 at 17:19:18 | INFO | Connected to stand server -2023-09-27 at 17:19:18 | INFO | Connected to stand server -2023-09-27 at 17:19:18 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-27 at 17:19:18 | WARNING | No transmission value reported from {attenuator.ID} -2023-09-27 at 17:19:19 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-27 at 17:19:19 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-09-27 at 17:19:20 | INFO | Running at cristallina with pgroup p19150. -2023-09-27 at 17:19:20 | INFO | Loading finished. -2023-09-27 at 17:19:20 | INFO | Running at cristallina with pgroup p19150. -2023-09-27 at 17:19:20 | INFO | Loading finished. -2023-10-02 at 18:28:14 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-02 at 18:28:14 | WARNING | No transmission value reported from {attenuator.ID} -2023-10-02 at 18:28:15 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-02 at 18:28:16 | INFO | Running at cristallina with pgroup p19150. -2023-10-02 at 18:28:16 | INFO | Loading finished. -2023-10-02 at 18:46:27 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-02 at 18:47:04 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-02 at 18:47:17 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-02 at 18:47:36 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-02 at 18:50:01 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-03 at 11:58:41 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-03 at 11:58:41 | WARNING | No transmission value reported from {attenuator.ID} -2023-10-03 at 11:58:42 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-03 at 11:58:42 | INFO | Running at cristallina with pgroup p19150. -2023-10-03 at 11:58:42 | INFO | Loading finished. -2023-10-09 at 16:15:27 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:15:27 | WARNING | No transmission value reported from {attenuator.ID} -2023-10-09 at 16:15:28 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-09 at 16:15:30 | INFO | Running at cristallina with pgroup p21516. -2023-10-09 at 16:15:30 | INFO | Loading finished. -2023-10-09 at 16:17:44 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:17:44 | WARNING | No transmission value reported from {attenuator.ID} -2023-10-09 at 16:17:45 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-09 at 16:17:45 | INFO | Running at cristallina with pgroup p21516. -2023-10-09 at 16:17:45 | INFO | Loading finished. -2023-10-09 at 16:28:40 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:28:40 | WARNING | No transmission value reported from {attenuator.ID} -2023-10-09 at 16:28:41 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-09 at 16:28:41 | INFO | Running at cristallina with pgroup p21516. -2023-10-09 at 16:28:41 | INFO | Loading finished. -2023-10-09 at 16:31:13 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:31:20 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:31:39 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:31:40 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-09 at 16:31:40 | INFO | Running at cristallina with pgroup p21516. -2023-10-09 at 16:31:40 | INFO | Loading finished. -2023-10-09 at 16:33:27 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:33:28 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-09 at 16:33:28 | INFO | Running at cristallina with pgroup p21516. -2023-10-09 at 16:33:28 | INFO | Loading finished. -2023-10-09 at 16:34:19 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-09 at 16:34:20 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-09 at 16:34:20 | INFO | Running at cristallina with pgroup p21516. -2023-10-09 at 16:34:20 | INFO | Loading finished. -2023-10-12 at 16:59:37 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-12 at 16:59:38 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-12 at 16:59:39 | INFO | Running at cristallina with pgroup p21516. -2023-10-12 at 16:59:39 | INFO | Loading finished. -2023-10-16 at 18:53:14 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Caught HTTPConnectionPool(host='saresc-vcons-02.psi.ch', port=9090): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')). -2023-10-16 at 18:53:15 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-16 at 18:53:16 | INFO | Running at cristallina with pgroup p21516. -2023-10-16 at 18:53:16 | INFO | Loading finished. -2023-10-16 at 18:56:36 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. -2023-10-16 at 18:56:37 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-16 at 18:56:37 | INFO | Running at cristallina with pgroup p21516. -2023-10-16 at 18:56:37 | INFO | Loading finished. -2023-10-20 at 17:48:03 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. -2023-10-20 at 17:48:04 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-20 at 17:48:07 | INFO | Running at cristallina with pgroup p21563. -2023-10-20 at 17:48:07 | INFO | Loading finished. -2023-10-20 at 17:48:50 | INFO | Connected to stand server -2023-10-20 at 17:48:51 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-20 at 17:48:51 | INFO | Running at cristallina with pgroup p21563. -2023-10-20 at 17:48:51 | INFO | Loading finished. -2023-10-20 at 21:47:23 | INFO | Connected to stand server -2023-10-20 at 21:47:24 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-20 at 21:47:26 | INFO | Running at cristallina with pgroup p21563. -2023-10-20 at 21:47:26 | INFO | Loading finished. -2023-10-21 at 01:34:59 | INFO | Connected to stand server -2023-10-21 at 01:35:01 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-21 at 01:35:01 | INFO | Running at cristallina with pgroup p21563. -2023-10-21 at 01:35:01 | INFO | Loading finished. -2023-10-23 at 18:24:05 | INFO | Connected to stand server -2023-10-23 at 18:24:06 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-23 at 18:24:07 | INFO | Running at cristallina with pgroup p21563. -2023-10-23 at 18:24:07 | INFO | Loading finished. -2023-10-23 at 18:51:10 | INFO | Connected to stand server -2023-10-23 at 18:51:11 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-23 at 18:51:12 | WARNING | Cannot write log file to pgroup p21563. -2023-10-23 at 18:51:12 | INFO | Running at cristallina with pgroup p21563. -2023-10-23 at 18:51:12 | INFO | Loading finished. -2023-10-23 at 18:59:21 | INFO | Connected to stand server -2023-10-23 at 18:59:22 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-23 at 18:59:22 | WARNING | Cannot write log file to pgroup p21563. -2023-10-23 at 18:59:22 | INFO | Running at cristallina with pgroup p21563. -2023-10-23 at 18:59:22 | INFO | Loading finished. -2023-10-23 at 20:44:41 | INFO | Connected to stand server -2023-10-23 at 20:44:43 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-23 at 20:44:43 | INFO | Running at cristallina with pgroup p21563. -2023-10-23 at 20:44:43 | INFO | Loading finished. -2023-10-23 at 22:37:44 | INFO | Connected to stand server -2023-10-23 at 22:37:45 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-23 at 22:37:45 | INFO | Running at cristallina with pgroup p21563. -2023-10-23 at 22:37:45 | INFO | Loading finished. -2023-10-24 at 11:37:01 | INFO | Connected to stand server -2023-10-24 at 11:37:02 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-24 at 11:37:03 | WARNING | Cannot write log file to pgroup p21563. -2023-10-24 at 11:37:03 | INFO | Running at cristallina with pgroup p21563. -2023-10-24 at 11:37:03 | INFO | Loading finished. -2023-10-24 at 13:11:26 | INFO | Connected to stand server -2023-10-24 at 13:11:27 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-24 at 13:11:27 | WARNING | Cannot write log file to pgroup p21563. -2023-10-24 at 13:11:27 | INFO | Running at cristallina with pgroup p21563. -2023-10-24 at 13:11:27 | INFO | Loading finished. -2023-10-24 at 13:17:04 | INFO | Connected to stand server -2023-10-24 at 13:17:05 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-24 at 13:17:06 | WARNING | Cannot write log file to pgroup p21563. -2023-10-24 at 13:17:06 | INFO | Running at cristallina with pgroup p21563. -2023-10-24 at 13:17:06 | INFO | Loading finished. -2023-10-24 at 19:32:32 | INFO | Connected to stand server -2023-10-24 at 19:32:33 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-24 at 19:32:33 | INFO | Running at cristallina with pgroup p21563. -2023-10-24 at 19:32:33 | INFO | Loading finished. -2023-10-25 at 11:48:35 | INFO | Connected to stand server -2023-10-25 at 11:48:36 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-25 at 11:48:37 | INFO | Running at cristallina with pgroup p21563. -2023-10-25 at 11:48:37 | INFO | Loading finished. -2023-10-25 at 11:49:35 | INFO | Connected to stand server -2023-10-25 at 11:49:36 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-25 at 11:49:36 | INFO | Running at cristallina with pgroup p21563. -2023-10-25 at 11:49:36 | INFO | Loading finished. -2023-10-27 at 15:14:18 | INFO | Connected to stand server -2023-10-27 at 15:14:19 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-27 at 15:14:20 | WARNING | Cannot write log file to pgroup p21563. -2023-10-27 at 15:14:20 | INFO | Running at cristallina with pgroup p21563. -2023-10-27 at 15:14:20 | INFO | Loading finished. -2023-10-27 at 15:17:02 | INFO | Connected to stand server -2023-10-27 at 15:17:03 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-27 at 15:17:04 | WARNING | Cannot write log file to pgroup p21563. -2023-10-27 at 15:17:04 | INFO | Running at cristallina with pgroup p21563. -2023-10-27 at 15:17:04 | INFO | Loading finished. -2023-10-27 at 15:25:08 | INFO | Connected to stand server -2023-10-27 at 15:25:09 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-27 at 15:25:09 | INFO | Running at cristallina with pgroup p21563. -2023-10-27 at 15:25:09 | INFO | Loading finished. -2023-10-27 at 16:01:18 | INFO | Connected to stand server -2023-10-27 at 16:01:19 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-27 at 16:01:20 | WARNING | Cannot write log file to pgroup p21563. -2023-10-27 at 16:01:20 | INFO | Running at cristallina with pgroup p21563. -2023-10-27 at 16:01:20 | INFO | Loading finished. -2023-10-27 at 21:12:41 | INFO | Connected to stand server -2023-10-27 at 21:12:42 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-27 at 21:12:42 | WARNING | Cannot write log file to pgroup p21563. -2023-10-27 at 21:12:42 | INFO | Running at cristallina with pgroup p21563. -2023-10-27 at 21:12:42 | INFO | Loading finished. -2023-10-28 at 07:59:40 | INFO | Connected to stand server -2023-10-28 at 07:59:41 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 07:59:41 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 07:59:41 | INFO | Loading finished. -2023-10-28 at 08:06:20 | INFO | Connected to stand server -2023-10-28 at 08:06:21 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 08:06:21 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 08:06:21 | INFO | Loading finished. -2023-10-28 at 08:17:09 | INFO | Connected to stand server -2023-10-28 at 08:17:10 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 08:17:10 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 08:17:10 | INFO | Loading finished. -2023-10-28 at 08:38:00 | INFO | Connected to stand server -2023-10-28 at 08:38:01 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 08:38:01 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 08:38:01 | INFO | Loading finished. -2023-10-28 at 09:17:44 | INFO | Connected to stand server -2023-10-28 at 09:17:45 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 09:17:46 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 09:17:46 | INFO | Loading finished. -2023-10-28 at 11:04:55 | INFO | Connected to stand server -2023-10-28 at 11:04:57 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 11:04:57 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 11:04:57 | INFO | Loading finished. -2023-10-28 at 11:56:16 | INFO | Connected to stand server -2023-10-28 at 11:56:17 | INFO | Using undulator (Aramis) offset to PSSS energy of 0 eV. -2023-10-28 at 11:56:17 | INFO | Running at cristallina with pgroup p21563. -2023-10-28 at 11:56:17 | INFO | Loading finished. -2023-10-28 at 13:15:52 | INFO | Connected to stand server -2023-10-28 at 13:15:53 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-10-29 at 11:22:36 | INFO | Connected to stand server -2023-10-29 at 11:22:37 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-10-31 at 17:49:30 | INFO | Connected to stand server -2023-10-31 at 17:49:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-10-31 at 17:49:32 | INFO | Running at cristallina with pgroup p21563. -2023-10-31 at 17:49:32 | INFO | Loading finished. -2023-11-01 at 14:02:26 | INFO | Connected to stand server -2023-11-01 at 14:02:28 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-01 at 14:02:28 | INFO | Running at cristallina with pgroup p21563. -2023-11-01 at 14:02:28 | INFO | Loading finished. -2023-11-01 at 15:05:32 | INFO | Connected to stand server -2023-11-01 at 15:05:34 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-01 at 15:05:34 | INFO | Running at cristallina with pgroup p21563. -2023-11-01 at 15:05:34 | INFO | Loading finished. -2023-11-05 at 14:29:20 | INFO | Connected to stand server -2023-11-05 at 14:29:21 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 14:29:21 | INFO | Running at cristallina with pgroup p21563. -2023-11-05 at 14:29:21 | INFO | Loading finished. -2023-11-05 at 14:32:32 | INFO | Connected to stand server -2023-11-05 at 14:32:33 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 14:32:34 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 14:32:34 | INFO | Loading finished. -2023-11-05 at 14:55:32 | INFO | Connected to stand server -2023-11-05 at 14:55:33 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 14:55:33 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 14:55:33 | INFO | Loading finished. -2023-11-05 at 14:58:58 | INFO | Connected to stand server -2023-11-05 at 14:58:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 14:58:59 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 14:58:59 | INFO | Loading finished. -2023-11-05 at 15:16:28 | INFO | Connected to stand server -2023-11-05 at 15:16:29 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 15:16:30 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 15:16:30 | INFO | Loading finished. -2023-11-05 at 15:32:01 | INFO | Connected to stand server -2023-11-05 at 15:32:02 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 15:32:02 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 15:32:02 | INFO | Loading finished. -2023-11-05 at 15:38:13 | INFO | Connected to stand server -2023-11-05 at 15:38:14 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 15:38:14 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 15:38:14 | INFO | Loading finished. -2023-11-05 at 15:39:14 | INFO | Connected to stand server -2023-11-05 at 15:39:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 15:39:15 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 15:39:15 | INFO | Loading finished. -2023-11-05 at 15:41:06 | INFO | Connected to stand server -2023-11-05 at 15:41:08 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-05 at 15:41:08 | INFO | Running at cristallina with pgroup p19150. -2023-11-05 at 15:41:08 | INFO | Loading finished. -2023-11-06 at 17:40:45 | INFO | Connected to stand server -2023-11-06 at 17:40:46 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-06 at 17:40:47 | WARNING | Cannot write log file to pgroup p19150. -2023-11-06 at 17:40:47 | INFO | Running at cristallina with pgroup p19150. -2023-11-06 at 17:40:47 | INFO | Loading finished. -2023-11-07 at 10:41:37 | INFO | Connected to stand server -2023-11-07 at 10:41:38 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-07 at 10:41:38 | INFO | Running at cristallina with pgroup p19150. -2023-11-07 at 10:41:38 | INFO | Loading finished. -2023-11-07 at 10:56:40 | INFO | Connected to stand server -2023-11-07 at 10:56:41 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-07 at 10:56:41 | INFO | Running at cristallina with pgroup p21516. -2023-11-07 at 10:56:41 | INFO | Loading finished. -2023-11-07 at 13:43:12 | INFO | Connected to stand server -2023-11-07 at 13:43:13 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-07 at 13:43:14 | INFO | Running at cristallina with pgroup p21516. -2023-11-07 at 13:43:14 | INFO | Loading finished. -2023-11-07 at 18:15:56 | INFO | Connected to stand server -2023-11-07 at 18:15:58 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-07 at 18:15:59 | INFO | Running at cristallina with pgroup p21516. -2023-11-07 at 18:15:59 | INFO | Loading finished. -2023-11-07 at 21:52:45 | INFO | Connected to stand server -2023-11-07 at 21:52:46 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-07 at 21:52:47 | INFO | Running at cristallina with pgroup p21516. -2023-11-07 at 21:52:47 | INFO | Loading finished. -2023-11-11 at 17:55:50 | INFO | Connected to stand server -2023-11-11 at 17:55:51 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-11 at 17:55:52 | INFO | Running at cristallina with pgroup p21516. -2023-11-11 at 17:55:52 | INFO | Loading finished. -2023-11-11 at 18:25:19 | INFO | Connected to stand server -2023-11-11 at 18:25:20 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-11 at 18:25:20 | INFO | Running at cristallina with pgroup p21516. -2023-11-11 at 18:25:20 | INFO | Loading finished. -2023-11-11 at 18:27:32 | INFO | Connected to stand server -2023-11-11 at 18:27:33 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-11 at 18:27:33 | INFO | Running at cristallina with pgroup p21516. -2023-11-11 at 18:27:33 | INFO | Loading finished. -2023-11-11 at 18:33:10 | INFO | Connected to stand server -2023-11-11 at 18:33:11 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-11 at 18:33:11 | INFO | Running at cristallina with pgroup p21516. -2023-11-11 at 18:33:11 | INFO | Loading finished. -2023-11-11 at 18:33:52 | INFO | Connected to stand server -2023-11-11 at 18:33:53 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-11 at 18:33:53 | INFO | Running at cristallina with pgroup p21516. -2023-11-11 at 18:33:53 | INFO | Loading finished. -2023-11-13 at 08:19:30 | INFO | Connected to stand server -2023-11-13 at 08:19:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 08:19:32 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 08:19:32 | INFO | Loading finished. -2023-11-13 at 11:36:54 | INFO | Connected to stand server -2023-11-13 at 11:36:55 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 11:36:56 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 11:36:56 | INFO | Loading finished. -2023-11-13 at 11:48:02 | INFO | Connected to stand server -2023-11-13 at 11:48:03 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 11:48:04 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 11:48:04 | INFO | Loading finished. -2023-11-13 at 11:49:14 | INFO | Connected to stand server -2023-11-13 at 11:49:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 11:49:16 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 11:49:16 | INFO | Loading finished. -2023-11-13 at 11:51:26 | INFO | Connected to stand server -2023-11-13 at 11:51:27 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 11:51:27 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 11:51:27 | INFO | Loading finished. -2023-11-13 at 16:56:48 | INFO | Connected to stand server -2023-11-13 at 16:56:49 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 16:56:49 | WARNING | Cannot write log file to pgroup p21516. -2023-11-13 at 16:56:49 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 16:56:49 | INFO | Loading finished. -2023-11-13 at 17:29:58 | INFO | Connected to stand server -2023-11-13 at 17:29:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 17:29:59 | WARNING | Cannot write log file to pgroup p21516. -2023-11-13 at 17:29:59 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 17:29:59 | INFO | Loading finished. -2023-11-13 at 21:36:08 | INFO | Connected to stand server -2023-11-13 at 21:36:09 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 21:36:09 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 21:36:09 | INFO | Loading finished. -2023-11-13 at 21:37:34 | INFO | Connected to stand server -2023-11-13 at 21:37:35 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-13 at 21:37:35 | INFO | Running at cristallina with pgroup p21516. -2023-11-13 at 21:37:35 | INFO | Loading finished. -2023-11-14 at 08:42:12 | INFO | Connected to stand server -2023-11-14 at 08:42:13 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-14 at 08:42:14 | WARNING | Cannot write log file to pgroup p21516. -2023-11-14 at 08:42:14 | INFO | Running at cristallina with pgroup p21516. -2023-11-14 at 08:42:14 | INFO | Loading finished. -2023-11-14 at 09:32:52 | INFO | Connected to stand server -2023-11-14 at 09:32:54 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-14 at 09:32:54 | INFO | Running at cristallina with pgroup p21516. -2023-11-14 at 09:32:54 | INFO | Loading finished. -2023-11-14 at 17:59:03 | INFO | Connected to stand server -2023-11-14 at 17:59:04 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-14 at 17:59:05 | INFO | Running at cristallina with pgroup p21516. -2023-11-14 at 17:59:05 | INFO | Loading finished. -2023-11-14 at 18:00:27 | INFO | Connected to stand server -2023-11-14 at 18:00:28 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-14 at 18:00:28 | INFO | Running at cristallina with pgroup p21516. -2023-11-14 at 18:00:28 | INFO | Loading finished. -2023-11-14 at 18:01:13 | INFO | Connected to stand server -2023-11-14 at 18:01:14 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-14 at 18:01:14 | INFO | Running at cristallina with pgroup p21516. -2023-11-14 at 18:01:14 | INFO | Loading finished. -2023-11-14 at 18:01:57 | INFO | Connected to stand server -2023-11-14 at 18:01:58 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-14 at 18:01:58 | INFO | Running at cristallina with pgroup p21516. -2023-11-14 at 18:01:58 | INFO | Loading finished. -2023-11-17 at 10:25:58 | INFO | Connected to stand server -2023-11-17 at 10:25:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 10:26:00 | INFO | Running at cristallina with pgroup p21516. -2023-11-17 at 10:26:00 | INFO | Loading finished. -2023-11-17 at 11:49:59 | INFO | Connected to stand server -2023-11-17 at 11:50:00 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 11:50:02 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 11:50:02 | INFO | Loading finished. -2023-11-17 at 11:55:45 | INFO | Connected to stand server -2023-11-17 at 11:55:46 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 11:55:47 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 11:55:47 | INFO | Loading finished. -2023-11-17 at 13:51:41 | INFO | Connected to stand server -2023-11-17 at 13:51:42 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 13:51:43 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 13:51:43 | INFO | Loading finished. -2023-11-17 at 15:55:13 | INFO | Connected to stand server -2023-11-17 at 15:55:14 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 15:55:15 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 15:55:15 | INFO | Loading finished. -2023-11-17 at 16:04:20 | INFO | Connected to stand server -2023-11-17 at 16:04:21 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 16:04:21 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 16:04:21 | INFO | Loading finished. -2023-11-17 at 16:10:58 | INFO | Connected to stand server -2023-11-17 at 16:10:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 16:10:59 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 16:10:59 | INFO | Loading finished. -2023-11-17 at 16:59:50 | INFO | Connected to stand server -2023-11-17 at 16:59:51 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 16:59:51 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 16:59:51 | INFO | Loading finished. -2023-11-17 at 17:12:58 | INFO | Connected to stand server -2023-11-17 at 17:12:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 17:12:59 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 17:12:59 | INFO | Loading finished. -2023-11-17 at 17:18:44 | INFO | Connected to stand server -2023-11-17 at 17:18:45 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-17 at 17:18:45 | INFO | Running at cristallina with pgroup p21569. -2023-11-17 at 17:18:45 | INFO | Loading finished. -2023-11-18 at 12:56:50 | INFO | Connected to stand server -2023-11-18 at 12:56:51 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-18 at 12:56:51 | INFO | Running at cristallina with pgroup p21569. -2023-11-18 at 12:56:51 | INFO | Loading finished. -2023-11-18 at 13:52:36 | INFO | Connected to stand server -2023-11-18 at 13:52:37 | INFO | Using undulator (Aramis) offset to PSSS energy of -62 eV. -2023-11-18 at 13:52:37 | INFO | Running at cristallina with pgroup p21569. -2023-11-18 at 13:52:37 | INFO | Loading finished. -2023-11-18 at 13:54:23 | INFO | Connected to stand server -2023-11-18 at 13:54:25 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-18 at 13:54:25 | INFO | Running at cristallina with pgroup p21569. -2023-11-18 at 13:54:25 | INFO | Loading finished. -2023-11-18 at 15:36:50 | INFO | Connected to stand server -2023-11-18 at 15:36:51 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-18 at 15:36:52 | INFO | Running at cristallina with pgroup p21569. -2023-11-18 at 15:36:52 | INFO | Loading finished. -2023-11-19 at 04:23:27 | INFO | Connected to stand server -2023-11-19 at 04:23:28 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-19 at 04:23:29 | INFO | Running at cristallina with pgroup p21569. -2023-11-19 at 04:23:29 | INFO | Loading finished. -2023-11-20 at 17:34:26 | INFO | Connected to stand server -2023-11-20 at 17:34:27 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-20 at 17:45:46 | INFO | Connected to stand server -2023-11-20 at 17:45:47 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-20 at 17:46:06 | INFO | Connected to stand server -2023-11-20 at 17:46:07 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-20 at 17:46:07 | INFO | Running at cristallina with pgroup p21569. -2023-11-20 at 17:46:07 | INFO | Loading finished. -2023-11-20 at 22:05:21 | INFO | Connected to stand server -2023-11-20 at 22:05:22 | INFO | Using undulator (Aramis) offset to PSSS energy of -17 eV. -2023-11-20 at 22:05:22 | INFO | Running at cristallina with pgroup p21569. -2023-11-20 at 22:05:22 | INFO | Loading finished. -2023-11-21 at 19:21:58 | INFO | Connected to stand server -2023-11-21 at 19:21:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -76 eV. -2023-11-21 at 19:22:00 | INFO | Running at cristallina with pgroup p21569. -2023-11-21 at 19:22:00 | INFO | Loading finished. -2023-11-22 at 00:39:04 | INFO | Connected to stand server -2023-11-22 at 00:39:06 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-22 at 00:39:06 | INFO | Running at cristallina with pgroup p21569. -2023-11-22 at 00:39:06 | INFO | Loading finished. -2023-11-22 at 00:39:32 | INFO | Connected to stand server -2023-11-22 at 00:39:33 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-22 at 00:39:33 | INFO | Running at cristallina with pgroup p21569. -2023-11-22 at 00:39:33 | INFO | Loading finished. -2023-11-22 at 05:44:14 | INFO | Connected to stand server -2023-11-22 at 05:44:16 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-22 at 05:44:16 | INFO | Running at cristallina with pgroup p21569. -2023-11-22 at 05:44:16 | INFO | Loading finished. -2023-11-22 at 11:17:06 | INFO | Connected to stand server -2023-11-22 at 11:17:07 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-22 at 11:17:08 | INFO | Running at cristallina with pgroup p21569. -2023-11-22 at 11:17:08 | INFO | Loading finished. -2023-11-22 at 11:48:04 | INFO | Connected to stand server -2023-11-22 at 11:48:05 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-22 at 11:48:06 | INFO | Running at cristallina with pgroup p21569. -2023-11-22 at 11:48:06 | INFO | Loading finished. -2023-11-25 at 07:12:17 | INFO | Connected to stand server -2023-11-25 at 07:12:18 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-25 at 07:12:19 | INFO | Running at cristallina with pgroup p21569. -2023-11-25 at 07:12:19 | INFO | Loading finished. -2023-11-25 at 07:24:46 | INFO | Connected to stand server -2023-11-25 at 07:24:47 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-25 at 07:24:48 | INFO | Running at cristallina with pgroup p21569. -2023-11-25 at 07:24:48 | INFO | Loading finished. -2023-11-25 at 07:26:48 | INFO | Connected to stand server -2023-11-25 at 07:26:49 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-25 at 07:26:49 | INFO | Running at cristallina with pgroup p21569. -2023-11-25 at 07:26:49 | INFO | Loading finished. -2023-11-25 at 20:36:09 | INFO | Connected to stand server -2023-11-25 at 20:36:11 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-25 at 20:36:11 | INFO | Running at cristallina with pgroup p21569. -2023-11-25 at 20:36:11 | INFO | Loading finished. -2023-11-25 at 22:34:08 | INFO | Connected to stand server -2023-11-25 at 22:34:10 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-25 at 22:34:10 | INFO | Running at cristallina with pgroup p21569. -2023-11-25 at 22:34:10 | INFO | Loading finished. -2023-11-25 at 22:35:00 | INFO | Connected to stand server -2023-11-25 at 22:35:01 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-25 at 22:35:02 | INFO | Running at cristallina with pgroup p21569. -2023-11-25 at 22:35:02 | INFO | Loading finished. -2023-11-27 at 00:27:07 | INFO | Connected to stand server -2023-11-27 at 00:27:08 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-27 at 00:27:09 | INFO | Running at cristallina with pgroup p21569. -2023-11-27 at 00:27:09 | INFO | Loading finished. -2023-11-27 at 00:40:19 | INFO | Connected to stand server -2023-11-27 at 00:40:20 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-27 at 00:40:21 | INFO | Running at cristallina with pgroup p21569. -2023-11-27 at 00:40:21 | INFO | Loading finished. -2023-11-27 at 00:53:34 | INFO | Connected to stand server -2023-11-27 at 00:53:35 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-27 at 00:53:36 | INFO | Running at cristallina with pgroup p21569. -2023-11-27 at 00:53:36 | INFO | Loading finished. -2023-11-27 at 06:40:44 | INFO | Connected to stand server -2023-11-27 at 06:40:45 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-27 at 06:40:46 | INFO | Running at cristallina with pgroup p21569. -2023-11-27 at 06:40:46 | INFO | Loading finished. -2023-11-27 at 06:42:03 | INFO | Connected to stand server -2023-11-27 at 06:42:04 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-11-27 at 06:42:04 | INFO | Running at cristallina with pgroup p21569. -2023-11-27 at 06:42:04 | INFO | Loading finished. -2023-12-01 at 15:31:05 | INFO | Connected to stand server -2023-12-01 at 15:31:07 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-01 at 15:31:12 | INFO | Running at cristallina with pgroup p21569. -2023-12-01 at 15:31:12 | INFO | Loading finished. -2023-12-01 at 15:35:29 | INFO | Connected to stand server -2023-12-01 at 15:35:30 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-01 at 15:35:30 | INFO | Running at cristallina with pgroup p21569. -2023-12-01 at 15:35:30 | INFO | Loading finished. -2023-12-01 at 15:46:54 | INFO | Connected to stand server -2023-12-01 at 15:46:55 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-01 at 15:46:55 | WARNING | Cannot write log file to pgroup p21592. -2023-12-01 at 15:46:55 | INFO | Running at cristallina with pgroup p21592. -2023-12-01 at 15:46:55 | INFO | Loading finished. -2023-12-01 at 15:47:30 | INFO | Connected to stand server -2023-12-01 at 15:47:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-01 at 15:47:32 | WARNING | Cannot write log file to pgroup p21592. -2023-12-01 at 15:47:32 | INFO | Running at cristallina with pgroup p21592. -2023-12-01 at 15:47:32 | INFO | Loading finished. -2023-12-01 at 15:49:42 | INFO | Connected to stand server -2023-12-01 at 15:49:43 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-01 at 15:49:43 | WARNING | Cannot write log file to pgroup p21592. -2023-12-01 at 15:49:43 | INFO | Running at cristallina with pgroup p21592. -2023-12-01 at 15:49:43 | INFO | Loading finished. -2023-12-01 at 15:55:35 | INFO | Connected to stand server -2023-12-01 at 15:55:36 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-01 at 15:55:36 | WARNING | Cannot write log file to pgroup p21592. -2023-12-01 at 15:55:36 | INFO | Running at cristallina with pgroup p21592. -2023-12-01 at 15:55:36 | INFO | Loading finished. -2023-12-05 at 07:22:43 | INFO | Connected to stand server -2023-12-05 at 07:22:45 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-05 at 07:22:48 | INFO | Running at cristallina with pgroup p21592. -2023-12-05 at 07:22:48 | INFO | Loading finished. -2023-12-08 at 11:47:27 | INFO | Connected to stand server -2023-12-08 at 11:47:29 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 11:47:44 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 11:47:44 | INFO | Loading finished. -2023-12-08 at 12:07:28 | INFO | Connected to stand server -2023-12-08 at 12:07:29 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:07:30 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:07:30 | INFO | Loading finished. -2023-12-08 at 12:15:13 | INFO | Connected to stand server -2023-12-08 at 12:15:14 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:15:15 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:15:15 | INFO | Loading finished. -2023-12-08 at 12:29:46 | INFO | Connected to stand server -2023-12-08 at 12:29:47 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:29:47 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:29:47 | INFO | Loading finished. -2023-12-08 at 12:39:22 | INFO | Connected to stand server -2023-12-08 at 12:39:23 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:39:24 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:39:24 | INFO | Loading finished. -2023-12-08 at 12:43:30 | INFO | Connected to stand server -2023-12-08 at 12:43:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:43:31 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:43:31 | INFO | Loading finished. -2023-12-08 at 12:44:44 | INFO | Connected to stand server -2023-12-08 at 12:44:45 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:44:45 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:44:45 | INFO | Loading finished. -2023-12-08 at 12:48:36 | INFO | Connected to stand server -2023-12-08 at 12:48:37 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:48:37 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:48:37 | INFO | Loading finished. -2023-12-08 at 12:51:36 | INFO | Connected to stand server -2023-12-08 at 12:51:37 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:51:38 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:51:38 | INFO | Loading finished. -2023-12-08 at 12:56:14 | INFO | Connected to stand server -2023-12-08 at 12:56:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 12:56:16 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 12:56:16 | INFO | Loading finished. -2023-12-08 at 13:08:21 | INFO | Connected to stand server -2023-12-08 at 13:08:22 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:08:22 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:08:22 | INFO | Loading finished. -2023-12-08 at 13:22:18 | INFO | Connected to stand server -2023-12-08 at 13:22:19 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:22:20 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:22:20 | INFO | Loading finished. -2023-12-08 at 13:23:10 | INFO | Connected to stand server -2023-12-08 at 13:23:11 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:23:11 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:23:11 | INFO | Loading finished. -2023-12-08 at 13:25:03 | INFO | Connected to stand server -2023-12-08 at 13:25:05 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:25:05 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:25:05 | INFO | Loading finished. -2023-12-08 at 13:26:44 | INFO | Connected to stand server -2023-12-08 at 13:26:45 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:26:46 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:26:46 | INFO | Loading finished. -2023-12-08 at 13:36:29 | INFO | Connected to stand server -2023-12-08 at 13:36:30 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:36:31 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:36:31 | INFO | Loading finished. -2023-12-08 at 13:38:01 | INFO | Connected to stand server -2023-12-08 at 13:38:02 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 13:38:03 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 13:38:03 | INFO | Loading finished. -2023-12-08 at 14:15:24 | INFO | Connected to stand server -2023-12-08 at 14:15:25 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 14:15:25 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 14:15:25 | INFO | Loading finished. -2023-12-08 at 14:16:55 | INFO | Connected to stand server -2023-12-08 at 14:16:56 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 14:16:57 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 14:16:57 | INFO | Loading finished. -2023-12-08 at 14:26:23 | INFO | Connected to stand server -2023-12-08 at 14:26:24 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 14:26:25 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 14:26:25 | INFO | Loading finished. -2023-12-08 at 14:38:29 | INFO | Connected to stand server -2023-12-08 at 14:38:30 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 14:38:31 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 14:38:31 | INFO | Loading finished. -2023-12-08 at 16:22:56 | INFO | Connected to stand server -2023-12-08 at 16:22:58 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 16:22:58 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 16:22:58 | INFO | Loading finished. -2023-12-08 at 16:27:16 | INFO | Connected to stand server -2023-12-08 at 16:27:17 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 16:27:17 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 16:27:17 | INFO | Loading finished. -2023-12-08 at 16:28:39 | INFO | Connected to stand server -2023-12-08 at 16:28:40 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 16:28:40 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 16:28:40 | INFO | Loading finished. -2023-12-08 at 20:21:03 | INFO | Connected to stand server -2023-12-08 at 20:21:04 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 20:21:07 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 20:21:07 | INFO | Loading finished. -2023-12-08 at 20:26:12 | INFO | Connected to stand server -2023-12-08 at 20:26:13 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 20:26:13 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 20:26:13 | INFO | Loading finished. -2023-12-08 at 22:11:13 | INFO | Connected to stand server -2023-12-08 at 22:11:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-08 at 22:11:15 | INFO | Running at cristallina with pgroup p21592. -2023-12-08 at 22:11:15 | INFO | Loading finished. -2023-12-09 at 14:54:59 | INFO | Connected to stand server -2023-12-09 at 14:55:00 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-09 at 14:55:05 | INFO | Running at cristallina with pgroup p21592. -2023-12-09 at 14:55:05 | INFO | Loading finished. -2023-12-09 at 15:08:16 | INFO | Connected to stand server -2023-12-09 at 15:08:17 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-09 at 15:08:18 | INFO | Running at cristallina with pgroup p21592. -2023-12-09 at 15:08:18 | INFO | Loading finished. -2023-12-10 at 01:58:19 | INFO | Connected to stand server -2023-12-10 at 01:58:20 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-10 at 01:58:21 | INFO | Running at cristallina with pgroup p21592. -2023-12-10 at 01:58:21 | INFO | Loading finished. -2023-12-10 at 09:02:51 | INFO | Connected to stand server -2023-12-10 at 09:02:52 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-10 at 09:02:54 | INFO | Running at cristallina with pgroup p21592. -2023-12-10 at 09:02:54 | INFO | Loading finished. -2023-12-11 at 06:00:14 | INFO | Connected to stand server -2023-12-12 at 12:00:40 | INFO | Connected to stand server -2023-12-12 at 15:23:02 | INFO | Connected to stand server -2023-12-12 at 15:37:58 | INFO | Connected to stand server -2023-12-12 at 15:37:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 10:16:21 | INFO | Connected to stand server -2023-12-13 at 10:38:03 | INFO | Connected to stand server -2023-12-13 at 10:38:04 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 11:24:30 | INFO | Connected to stand server -2023-12-13 at 11:24:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 11:46:18 | INFO | Connected to stand server -2023-12-13 at 11:50:19 | INFO | Connected to stand server -2023-12-13 at 11:50:20 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 11:51:10 | INFO | Connected to stand server -2023-12-13 at 11:51:11 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 11:51:11 | WARNING | Cannot write log file to pgroup p21592. -2023-12-13 at 11:51:11 | INFO | Running at cristallina with pgroup p21592. -2023-12-13 at 11:51:11 | INFO | Loading finished. -2023-12-13 at 11:54:29 | INFO | Connected to stand server -2023-12-13 at 11:54:30 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 11:54:30 | INFO | Running at cristallina with pgroup p21592. -2023-12-13 at 11:54:30 | INFO | Loading finished. -2023-12-13 at 12:01:40 | INFO | Connected to stand server -2023-12-13 at 12:01:41 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 12:01:42 | INFO | Running at cristallina with pgroup p21592. -2023-12-13 at 12:01:42 | INFO | Loading finished. -2023-12-13 at 12:01:48 | INFO | Connected to stand server -2023-12-13 at 12:01:49 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 12:01:49 | WARNING | Cannot write log file to pgroup p21592. -2023-12-13 at 12:01:49 | INFO | Running at cristallina with pgroup p21592. -2023-12-13 at 12:01:49 | INFO | Loading finished. -2023-12-13 at 13:56:57 | INFO | Connected to stand server -2023-12-13 at 13:57:00 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 13:57:00 | WARNING | Cannot write log file to pgroup p21592. -2023-12-13 at 13:57:00 | INFO | Running at cristallina with pgroup p21592. -2023-12-13 at 13:57:00 | INFO | Loading finished. -2023-12-13 at 14:10:56 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 14:10:57 | INFO | Connected to stand server -2023-12-13 at 14:10:57 | WARNING | Cannot write log file to pgroup p21592. -2023-12-13 at 14:10:57 | INFO | Running at cristallina with pgroup p21592. -2023-12-13 at 14:10:57 | INFO | Loading finished. -2023-12-13 at 14:26:27 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 14:26:27 | INFO | Connected to stand server -2023-12-13 at 14:27:13 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 14:27:13 | INFO | Connected to stand server -2023-12-13 at 14:28:23 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 14:28:23 | INFO | Connected to stand server -2023-12-13 at 14:31:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. -2023-12-13 at 14:31:32 | INFO | Connected to stand server +2024-05-02 at 15:38:40 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-02 at 15:38:43 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-02 at 15:38:43 | WARNING | Cannot write log file to pgroup p21920. +2024-05-02 at 15:38:44 | INFO | Running at cristallina with pgroup p21920. +2024-05-02 at 15:38:44 | INFO | Loading finished. +2024-05-02 at 16:34:35 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-02 at 16:34:35 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-02 at 16:34:35 | WARNING | Cannot write log file to pgroup p21920. +2024-05-02 at 16:34:35 | INFO | Running at cristallina with pgroup p21920. +2024-05-02 at 16:34:35 | INFO | Loading finished. +2024-05-02 at 17:40:03 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-02 at 17:40:03 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-02 at 17:40:03 | INFO | Running at cristallina with pgroup p21741. +2024-05-02 at 17:40:03 | INFO | Loading finished. +2024-05-02 at 18:24:36 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-02 at 18:24:37 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-02 at 18:24:37 | INFO | Running at cristallina with pgroup p21741. +2024-05-02 at 18:24:37 | INFO | Loading finished. +2024-05-03 at 19:32:16 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-03 at 19:32:21 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-03 at 19:32:21 | INFO | Running at cristallina with pgroup p21741. +2024-05-03 at 19:32:21 | INFO | Loading finished. +2024-05-03 at 19:35:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-03 at 19:35:15 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-03 at 19:35:15 | WARNING | Cannot write log file to pgroup p19150. +2024-05-03 at 19:35:15 | INFO | Running at cristallina with pgroup p19150. +2024-05-03 at 19:35:15 | INFO | Loading finished. +2024-05-03 at 19:39:23 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-03 at 19:39:23 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-03 at 19:39:23 | WARNING | Cannot write log file to pgroup p19150. +2024-05-03 at 19:39:23 | INFO | Running at cristallina with pgroup p19150. +2024-05-03 at 19:39:23 | INFO | Loading finished. +2024-05-06 at 09:52:16 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 09:52:16 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-06 at 09:52:16 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 09:52:16 | INFO | Loading finished. +2024-05-06 at 10:37:46 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 10:37:46 | WARNING | Cannot connect to stand server on saresc-vcons-02.psi.ch. Disabling spreadsheet. +2024-05-06 at 10:37:46 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 10:37:46 | INFO | Loading finished. +2024-05-06 at 15:00:22 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 15:00:22 | INFO | Connected to stand server +2024-05-06 at 15:00:22 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 15:00:22 | INFO | Loading finished. +2024-05-06 at 16:03:54 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 16:03:54 | INFO | Connected to stand server +2024-05-06 at 16:03:54 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 16:03:54 | INFO | Loading finished. +2024-05-06 at 17:04:35 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 17:04:35 | INFO | Connected to stand server +2024-05-06 at 17:04:35 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 17:04:35 | INFO | Loading finished. +2024-05-06 at 17:27:39 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 17:27:39 | INFO | Connected to stand server +2024-05-06 at 17:27:39 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 17:27:39 | INFO | Loading finished. +2024-05-06 at 18:05:17 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 18:05:17 | INFO | Connected to stand server +2024-05-06 at 18:05:17 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 18:05:17 | INFO | Loading finished. +2024-05-06 at 18:26:25 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 18:26:25 | INFO | Connected to stand server +2024-05-06 at 18:26:25 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 18:26:25 | INFO | Loading finished. +2024-05-06 at 19:47:08 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 19:47:10 | INFO | Connected to stand server +2024-05-06 at 19:47:10 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 19:47:10 | INFO | Loading finished. +2024-05-06 at 19:48:00 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 19:48:00 | INFO | Connected to stand server +2024-05-06 at 19:48:00 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 19:48:00 | INFO | Loading finished. +2024-05-06 at 19:55:19 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 19:55:19 | INFO | Connected to stand server +2024-05-06 at 19:55:19 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 19:55:19 | INFO | Loading finished. +2024-05-06 at 19:57:05 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 19:57:05 | INFO | Connected to stand server +2024-05-06 at 19:57:05 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 19:57:05 | INFO | Loading finished. +2024-05-06 at 20:07:16 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:07:17 | INFO | Connected to stand server +2024-05-06 at 20:07:17 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:07:17 | INFO | Loading finished. +2024-05-06 at 20:18:32 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:18:32 | INFO | Connected to stand server +2024-05-06 at 20:18:32 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:18:32 | INFO | Loading finished. +2024-05-06 at 20:28:55 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:28:55 | INFO | Connected to stand server +2024-05-06 at 20:28:55 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:28:55 | INFO | Loading finished. +2024-05-06 at 20:35:29 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:35:29 | INFO | Connected to stand server +2024-05-06 at 20:35:29 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:35:29 | INFO | Loading finished. +2024-05-06 at 20:37:14 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:37:14 | INFO | Connected to stand server +2024-05-06 at 20:37:14 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:37:14 | INFO | Loading finished. +2024-05-06 at 20:38:00 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:38:00 | INFO | Connected to stand server +2024-05-06 at 20:38:00 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:38:00 | INFO | Loading finished. +2024-05-06 at 20:39:29 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:39:29 | INFO | Connected to stand server +2024-05-06 at 20:39:29 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:39:29 | INFO | Loading finished. +2024-05-06 at 20:39:37 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:39:38 | INFO | Connected to stand server +2024-05-06 at 20:39:38 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:39:38 | INFO | Loading finished. +2024-05-06 at 20:39:56 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:39:56 | INFO | Connected to stand server +2024-05-06 at 20:39:56 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:39:56 | INFO | Loading finished. +2024-05-06 at 20:41:21 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 20:41:21 | INFO | Connected to stand server +2024-05-06 at 20:41:21 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 20:41:21 | INFO | Loading finished. +2024-05-06 at 21:37:38 | INFO | Using undulator (Aramis) offset to PSSS energy of -59 eV. +2024-05-06 at 21:37:38 | INFO | Connected to stand server +2024-05-06 at 21:37:38 | INFO | Running at cristallina with pgroup p21741. +2024-05-06 at 21:37:38 | INFO | Loading finished. +2024-05-07 at 11:59:51 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-07 at 11:59:51 | INFO | Connected to stand server +2024-05-07 at 11:59:51 | INFO | Running at cristallina with pgroup p21741. +2024-05-07 at 11:59:51 | INFO | Loading finished. +2024-05-07 at 12:01:02 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-07 at 12:01:03 | INFO | Connected to stand server +2024-05-07 at 12:01:03 | INFO | Running at cristallina with pgroup p21741. +2024-05-07 at 12:01:03 | INFO | Loading finished. +2024-05-07 at 12:03:00 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-07 at 12:03:00 | INFO | Connected to stand server +2024-05-07 at 12:03:00 | INFO | Running at cristallina with pgroup p21741. +2024-05-07 at 12:03:00 | INFO | Loading finished. +2024-05-07 at 12:04:36 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-07 at 12:04:36 | INFO | Connected to stand server +2024-05-07 at 12:04:36 | INFO | Running at cristallina with pgroup p21741. +2024-05-07 at 12:04:36 | INFO | Loading finished. +2024-05-07 at 12:07:37 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-07 at 12:07:37 | INFO | Connected to stand server +2024-05-07 at 12:07:37 | INFO | Running at cristallina with pgroup p21741. +2024-05-07 at 12:07:37 | INFO | Loading finished. +2024-05-07 at 16:01:57 | INFO | BU/BD sent to start +2024-05-07 at 16:02:03 | INFO | BU to start: 0.800 +2024-05-07 at 16:02:03 | INFO | BD to start: 1.000 +2024-05-07 at 16:02:03 | INFO | +2024-05-07 at 16:02:13 | INFO | BU / BD positions = 1.100 / 1.300 +2024-05-07 at 16:02:14 | INFO | Aperture position = -0.300; Beam position = 24.755 +2024-05-07 at 16:02:17 | INFO | Aperture position = 0.000; Beam position = 57.076 +2024-05-07 at 16:02:20 | INFO | Aperture position = 0.300; Beam position = 90.790 +2024-05-07 at 16:02:26 | INFO | BU / BD positions = 1.100 / 1.400 +2024-05-07 at 16:02:27 | INFO | Aperture position = -0.300; Beam position = 34.631 +2024-05-07 at 16:02:30 | INFO | Aperture position = 0.000; Beam position = 53.326 +2024-05-07 at 16:02:33 | INFO | Aperture position = 0.300; Beam position = 74.874 +2024-05-07 at 16:02:39 | INFO | BU / BD positions = 1.100 / 1.500 +2024-05-07 at 16:02:40 | INFO | Aperture position = -0.300; Beam position = 42.768 +2024-05-07 at 16:02:43 | INFO | Aperture position = 0.000; Beam position = 48.769 +2024-05-07 at 16:02:46 | INFO | Aperture position = 0.300; Beam position = 59.833 +2024-05-07 at 16:03:01 | INFO | +2024-05-07 at 16:03:01 | INFO | BD to start: 1.000 +2024-05-07 at 16:03:02 | INFO | +2024-05-07 at 16:03:12 | INFO | BU / BD positions = 1.200 / 1.300 +2024-05-07 at 16:03:13 | INFO | Aperture position = -0.300; Beam position = 42.247 +2024-05-07 at 16:03:16 | INFO | Aperture position = 0.000; Beam position = 66.438 +2024-05-07 at 16:03:19 | INFO | Aperture position = 0.300; Beam position = 90.120 +2024-05-07 at 16:03:24 | INFO | BU / BD positions = 1.200 / 1.400 +2024-05-07 at 16:03:26 | INFO | Aperture position = -0.300; Beam position = 51.722 +2024-05-07 at 16:03:29 | INFO | Aperture position = 0.000; Beam position = 62.747 +2024-05-07 at 16:03:32 | INFO | Aperture position = 0.300; Beam position = 75.325 +2024-05-07 at 16:03:38 | INFO | BU / BD positions = 1.200 / 1.500 +2024-05-07 at 16:03:39 | INFO | Aperture position = -0.300; Beam position = 61.095 +2024-05-07 at 16:03:42 | INFO | Aperture position = 0.000; Beam position = 58.253 +2024-05-07 at 16:03:45 | INFO | Aperture position = 0.300; Beam position = 59.436 +2024-05-07 at 16:04:00 | INFO | +2024-05-07 at 16:04:00 | INFO | BD to start: 1.000 +2024-05-07 at 16:04:01 | INFO | +2024-05-07 at 16:04:11 | INFO | BU / BD positions = 1.300 / 1.300 +2024-05-07 at 16:04:12 | INFO | Aperture position = -0.300; Beam position = 61.065 +2024-05-07 at 16:04:15 | INFO | Aperture position = 0.000; Beam position = 76.489 +2024-05-07 at 16:04:18 | INFO | Aperture position = 0.300; Beam position = 88.647 +2024-05-07 at 16:04:24 | INFO | BU / BD positions = 1.300 / 1.400 +2024-05-07 at 16:04:25 | INFO | Aperture position = -0.300; Beam position = 68.412 +2024-05-07 at 16:04:28 | INFO | Aperture position = 0.000; Beam position = 71.782 +2024-05-07 at 16:04:31 | INFO | Aperture position = 0.300; Beam position = 74.033 +2024-05-07 at 16:04:36 | INFO | BU / BD positions = 1.300 / 1.500 +2024-05-07 at 16:04:38 | INFO | Aperture position = -0.300; Beam position = 78.083 +2024-05-07 at 16:04:41 | INFO | Aperture position = 0.000; Beam position = 68.389 +2024-05-07 at 16:04:44 | INFO | Aperture position = 0.300; Beam position = 59.105 +2024-05-07 at 16:04:58 | INFO | +2024-05-07 at 16:04:58 | INFO | BD to start: 1.000 +2024-05-07 at 16:04:59 | INFO | BU to start: 0.800 +2024-05-07 at 16:04:59 | INFO | Data saved to: /sf/cristallina/applications/beamline/snapshots/KBs/2024-05-07/C_2024-05-07T16:02_vertical.dat +2024-05-07 at 16:04:59 | INFO | Done +2024-05-07 at 16:09:15 | INFO | BU/BD sent to start +2024-05-07 at 16:09:20 | INFO | BU to start: 0.900 +2024-05-07 at 16:09:20 | INFO | BD to start: 1.000 +2024-05-07 at 16:09:20 | INFO | +2024-05-07 at 16:09:31 | INFO | BU / BD positions = 1.200 / 1.350 +2024-05-07 at 16:09:33 | INFO | Aperture position = -0.300; Beam position = 47.580 +2024-05-07 at 16:09:36 | INFO | Aperture position = 0.000; Beam position = 65.476 +2024-05-07 at 16:09:39 | INFO | Aperture position = 0.300; Beam position = 82.416 +2024-05-07 at 16:09:43 | INFO | BU / BD positions = 1.200 / 1.400 +2024-05-07 at 16:09:44 | INFO | Aperture position = -0.300; Beam position = 51.582 +2024-05-07 at 16:09:48 | INFO | Aperture position = 0.000; Beam position = 63.525 +2024-05-07 at 16:09:51 | INFO | Aperture position = 0.300; Beam position = 75.205 +2024-05-07 at 16:09:55 | INFO | BU / BD positions = 1.200 / 1.450 +2024-05-07 at 16:09:56 | INFO | Aperture position = -0.300; Beam position = 57.421 +2024-05-07 at 16:09:59 | INFO | Aperture position = 0.000; Beam position = 61.241 +2024-05-07 at 16:10:03 | INFO | Aperture position = 0.300; Beam position = 67.840 +2024-05-07 at 16:10:16 | INFO | +2024-05-07 at 16:10:16 | INFO | BD to start: 1.000 +2024-05-07 at 16:10:17 | INFO | +2024-05-07 at 16:10:28 | INFO | BU / BD positions = 1.300 / 1.350 +2024-05-07 at 16:10:29 | INFO | Aperture position = -0.300; Beam position = 64.448 +2024-05-07 at 16:10:32 | INFO | Aperture position = 0.000; Beam position = 75.042 +2024-05-07 at 16:10:35 | INFO | Aperture position = 0.300; Beam position = 80.794 +2024-05-07 at 16:10:40 | INFO | BU / BD positions = 1.300 / 1.400 +2024-05-07 at 16:10:41 | INFO | Aperture position = -0.300; Beam position = 68.796 +2024-05-07 at 16:10:44 | INFO | Aperture position = 0.000; Beam position = 72.963 +2024-05-07 at 16:10:47 | INFO | Aperture position = 0.300; Beam position = 74.316 +2024-05-07 at 16:10:51 | INFO | BU / BD positions = 1.300 / 1.450 +2024-05-07 at 16:10:53 | INFO | Aperture position = -0.300; Beam position = 73.820 +2024-05-07 at 16:10:56 | INFO | Aperture position = 0.000; Beam position = 70.604 +2024-05-07 at 16:10:59 | INFO | Aperture position = 0.300; Beam position = 67.209 +2024-05-07 at 16:11:12 | INFO | +2024-05-07 at 16:11:12 | INFO | BD to start: 1.000 +2024-05-07 at 16:11:13 | INFO | +2024-05-07 at 16:11:25 | INFO | BU / BD positions = 1.350 / 1.350 +2024-05-07 at 16:11:26 | INFO | Aperture position = -0.300; Beam position = 73.698 +2024-05-07 at 16:11:29 | INFO | Aperture position = 0.000; Beam position = 79.772 +2024-05-07 at 16:11:32 | INFO | Aperture position = 0.300; Beam position = 81.751 +2024-05-07 at 16:11:36 | INFO | BU / BD positions = 1.350 / 1.400 +2024-05-07 at 16:11:38 | INFO | Aperture position = -0.300; Beam position = 77.832 +2024-05-07 at 16:11:41 | INFO | Aperture position = 0.000; Beam position = 77.625 +2024-05-07 at 16:11:44 | INFO | Aperture position = 0.300; Beam position = 74.996 +2024-05-07 at 16:11:48 | INFO | BU / BD positions = 1.350 / 1.450 +2024-05-07 at 16:11:50 | INFO | Aperture position = -0.300; Beam position = 83.212 +2024-05-07 at 16:11:53 | INFO | Aperture position = 0.000; Beam position = 75.825 +2024-05-07 at 16:11:56 | INFO | Aperture position = 0.300; Beam position = 66.918 +2024-05-07 at 16:12:09 | INFO | +2024-05-07 at 16:12:09 | INFO | BD to start: 1.000 +2024-05-07 at 16:12:10 | INFO | BU to start: 0.900 +2024-05-07 at 16:12:10 | INFO | Data saved to: /sf/cristallina/applications/beamline/snapshots/KBs/2024-05-07/C_2024-05-07T16:09_vertical.dat +2024-05-07 at 16:12:10 | INFO | Done +2024-05-07 at 16:17:55 | INFO | BU/BD sent to start +2024-05-07 at 16:18:01 | INFO | BU to start: 1.000 +2024-05-07 at 16:18:01 | INFO | BD to start: 1.100 +2024-05-07 at 16:18:01 | INFO | +2024-05-07 at 16:18:13 | INFO | BU / BD positions = 1.350 / 1.450 +2024-05-07 at 16:18:14 | INFO | Aperture position = 0.180; Beam position = -12.142 +2024-05-07 at 16:18:17 | INFO | Aperture position = 0.480; Beam position = 7.272 +2024-05-07 at 16:18:20 | INFO | Aperture position = 0.780; Beam position = 28.321 +2024-05-07 at 16:18:24 | INFO | BU / BD positions = 1.350 / 1.500 +2024-05-07 at 16:18:26 | INFO | Aperture position = 0.180; Beam position = -3.213 +2024-05-07 at 16:18:29 | INFO | Aperture position = 0.480; Beam position = 9.839 +2024-05-07 at 16:18:32 | INFO | Aperture position = 0.780; Beam position = 21.146 +2024-05-07 at 16:18:36 | INFO | BU / BD positions = 1.350 / 1.550 +2024-05-07 at 16:18:38 | INFO | Aperture position = 0.180; Beam position = 11.236 +2024-05-07 at 16:18:41 | INFO | Aperture position = 0.480; Beam position = 14.672 +2024-05-07 at 16:18:44 | INFO | Aperture position = 0.780; Beam position = 15.408 +2024-05-07 at 16:18:57 | INFO | +2024-05-07 at 16:18:57 | INFO | BD to start: 1.100 +2024-05-07 at 16:18:58 | INFO | +2024-05-07 at 16:19:09 | INFO | BU / BD positions = 1.400 / 1.450 +2024-05-07 at 16:19:11 | INFO | Aperture position = 0.180; Beam position = -12.300 +2024-05-07 at 16:19:14 | INFO | Aperture position = 0.480; Beam position = 1.863 +2024-05-07 at 16:19:17 | INFO | Aperture position = 0.780; Beam position = 17.279 +2024-05-07 at 16:19:21 | INFO | BU / BD positions = 1.400 / 1.500 +2024-05-07 at 16:19:23 | INFO | Aperture position = 0.180; Beam position = -2.583 +2024-05-07 at 16:19:26 | INFO | Aperture position = 0.480; Beam position = 3.214 +2024-05-07 at 16:19:29 | INFO | Aperture position = 0.780; Beam position = 8.903 +2024-05-07 at 16:19:33 | INFO | BU / BD positions = 1.400 / 1.550 +2024-05-07 at 16:19:35 | INFO | Aperture position = 0.180; Beam position = -31.010 +2024-05-07 at 16:19:38 | INFO | Aperture position = 0.480; Beam position = 6.860 +2024-05-07 at 16:19:41 | INFO | Aperture position = 0.780; Beam position = 3.544 +2024-05-07 at 16:19:54 | INFO | +2024-05-07 at 16:19:54 | INFO | BD to start: 1.100 +2024-05-07 at 16:19:55 | INFO | +2024-05-07 at 16:20:06 | INFO | BU / BD positions = 1.450 / 1.450 +2024-05-07 at 16:20:08 | INFO | Aperture position = 0.180; Beam position = -37.841 +2024-05-07 at 16:20:11 | INFO | Aperture position = 0.480; Beam position = -2.605 +2024-05-07 at 16:20:14 | INFO | Aperture position = 0.780; Beam position = 6.421 +2024-05-07 at 16:20:18 | INFO | BU / BD positions = 1.450 / 1.500 +2024-05-07 at 16:20:20 | INFO | Aperture position = 0.180; Beam position = -0.410 +2024-05-07 at 16:20:23 | INFO | Aperture position = 0.480; Beam position = -0.346 +2024-05-07 at 16:20:26 | INFO | Aperture position = 0.780; Beam position = -0.448 +2024-05-07 at 16:20:30 | INFO | BU / BD positions = 1.450 / 1.550 +2024-05-07 at 16:20:31 | INFO | Aperture position = 0.180; Beam position = 14.402 +2024-05-07 at 16:20:35 | INFO | Aperture position = 0.480; Beam position = 3.162 +2024-05-07 at 16:20:38 | INFO | Aperture position = 0.780; Beam position = -6.991 +2024-05-07 at 16:20:51 | INFO | +2024-05-07 at 16:20:51 | INFO | BD to start: 1.100 +2024-05-07 at 16:20:52 | INFO | BU to start: 1.000 +2024-05-07 at 16:20:52 | INFO | Data saved to: /sf/cristallina/applications/beamline/snapshots/KBs/2024-05-07/C_2024-05-07T16:18_horizontal.dat +2024-05-07 at 16:20:52 | INFO | Done +2024-05-07 at 16:23:34 | INFO | BU/BD sent to start +2024-05-07 at 16:23:36 | INFO | BU to start: 1.000 +2024-05-07 at 16:23:36 | INFO | BD to start: 1.100 +2024-05-07 at 16:23:36 | INFO | +2024-05-07 at 16:23:48 | INFO | BU / BD positions = 1.350 / 1.450 +2024-05-07 at 16:23:49 | INFO | Aperture position = 0.180; Beam position = -12.837 +2024-05-07 at 16:23:52 | INFO | Aperture position = 0.480; Beam position = 7.270 +2024-05-07 at 16:23:55 | INFO | Aperture position = 0.780; Beam position = 29.652 +2024-05-07 at 16:23:59 | INFO | BU / BD positions = 1.350 / 1.500 +2024-05-07 at 16:24:01 | INFO | Aperture position = 0.180; Beam position = -2.902 +2024-05-07 at 16:24:04 | INFO | Aperture position = 0.480; Beam position = 9.535 +2024-05-07 at 16:24:07 | INFO | Aperture position = 0.780; Beam position = 21.724 +2024-05-07 at 16:24:11 | INFO | BU / BD positions = 1.350 / 1.550 +2024-05-07 at 16:24:12 | INFO | Aperture position = 0.180; Beam position = 10.947 +2024-05-07 at 16:24:16 | INFO | Aperture position = 0.480; Beam position = 15.799 +2024-05-07 at 16:24:19 | INFO | Aperture position = 0.780; Beam position = 16.453 +2024-05-07 at 16:24:32 | INFO | +2024-05-07 at 16:24:32 | INFO | BD to start: 1.100 +2024-05-07 at 16:24:33 | INFO | +2024-05-07 at 16:24:44 | INFO | BU / BD positions = 1.400 / 1.450 +2024-05-07 at 16:24:46 | INFO | Aperture position = 0.180; Beam position = -12.184 +2024-05-07 at 16:24:49 | INFO | Aperture position = 0.480; Beam position = 2.035 +2024-05-07 at 16:24:52 | INFO | Aperture position = 0.780; Beam position = 16.610 +2024-05-07 at 16:24:56 | INFO | BU / BD positions = 1.400 / 1.500 +2024-05-07 at 16:24:57 | INFO | Aperture position = 0.180; Beam position = -2.612 +2024-05-07 at 16:25:00 | INFO | Aperture position = 0.480; Beam position = 3.149 +2024-05-07 at 16:25:04 | INFO | Aperture position = 0.780; Beam position = 9.635 +2024-05-07 at 16:25:08 | INFO | BU / BD positions = 1.400 / 1.550 +2024-05-07 at 16:25:09 | INFO | Aperture position = 0.180; Beam position = 11.863 +2024-05-07 at 16:25:12 | INFO | Aperture position = 0.480; Beam position = 7.665 +2024-05-07 at 16:25:15 | INFO | Aperture position = 0.780; Beam position = 3.838 +2024-05-07 at 16:25:29 | INFO | +2024-05-07 at 16:25:29 | INFO | BD to start: 1.100 +2024-05-07 at 16:25:30 | INFO | +2024-05-07 at 16:25:41 | INFO | BU / BD positions = 1.450 / 1.450 +2024-05-07 at 16:25:42 | INFO | Aperture position = 0.180; Beam position = -9.769 +2024-05-07 at 16:25:45 | INFO | Aperture position = 0.480; Beam position = -2.155 +2024-05-07 at 16:25:48 | INFO | Aperture position = 0.780; Beam position = 7.621 +2024-05-07 at 16:25:53 | INFO | BU / BD positions = 1.450 / 1.500 +2024-05-07 at 16:25:54 | INFO | Aperture position = 0.180; Beam position = -0.429 +2024-05-07 at 16:25:57 | INFO | Aperture position = 0.480; Beam position = -0.896 +2024-05-07 at 16:26:00 | INFO | Aperture position = 0.780; Beam position = -0.625 +2024-05-07 at 16:26:05 | INFO | BU / BD positions = 1.450 / 1.550 +2024-05-07 at 16:26:06 | INFO | Aperture position = 0.180; Beam position = 15.109 +2024-05-07 at 16:26:09 | INFO | Aperture position = 0.480; Beam position = 2.735 +2024-05-07 at 16:26:12 | INFO | Aperture position = 0.780; Beam position = -5.679 +2024-05-07 at 16:26:25 | INFO | +2024-05-07 at 16:26:25 | INFO | BD to start: 1.100 +2024-05-07 at 16:26:26 | INFO | BU to start: 1.000 +2024-05-07 at 16:26:26 | INFO | Data saved to: /sf/cristallina/applications/beamline/snapshots/KBs/2024-05-07/C_2024-05-07T16:23_horizontal.dat +2024-05-07 at 16:26:26 | INFO | Done +2024-05-08 at 00:43:30 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 00:44:42 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 00:50:01 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 00:51:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 00:51:16 | INFO | Connected to stand server +2024-05-08 at 00:51:16 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 00:51:16 | INFO | Loading finished. +2024-05-08 at 01:01:07 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 01:01:08 | INFO | Connected to stand server +2024-05-08 at 01:01:08 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 01:01:08 | INFO | Loading finished. +2024-05-08 at 06:50:50 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 06:50:51 | INFO | Connected to stand server +2024-05-08 at 06:50:51 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 06:50:51 | INFO | Loading finished. +2024-05-08 at 07:52:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 07:52:16 | INFO | Connected to stand server +2024-05-08 at 07:52:16 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 07:52:16 | INFO | Loading finished. +2024-05-08 at 21:05:55 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 21:05:55 | INFO | Connected to stand server +2024-05-08 at 21:05:56 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 21:05:56 | INFO | Loading finished. +2024-05-08 at 21:06:55 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 21:06:56 | INFO | Connected to stand server +2024-05-08 at 21:06:56 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 21:06:56 | INFO | Loading finished. +2024-05-08 at 21:09:34 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-08 at 21:09:35 | INFO | Connected to stand server +2024-05-08 at 21:09:35 | INFO | Running at cristallina with pgroup p21741. +2024-05-08 at 21:09:35 | INFO | Loading finished. +2024-05-09 at 00:46:48 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-09 at 00:46:49 | INFO | Connected to stand server +2024-05-09 at 00:46:49 | INFO | Running at cristallina with pgroup p21741. +2024-05-09 at 00:46:49 | INFO | Loading finished. +2024-05-11 at 19:33:13 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-11 at 19:33:16 | INFO | Connected to stand server +2024-05-11 at 19:33:16 | INFO | Running at cristallina with pgroup p21741. +2024-05-11 at 19:33:16 | INFO | Loading finished. +2024-05-12 at 19:44:43 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-12 at 19:44:44 | INFO | Connected to stand server +2024-05-12 at 19:44:44 | INFO | Running at cristallina with pgroup p21741. +2024-05-12 at 19:44:44 | INFO | Loading finished. +2024-05-12 at 19:56:15 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-12 at 19:56:15 | INFO | Connected to stand server +2024-05-12 at 19:56:15 | INFO | Running at cristallina with pgroup p21741. +2024-05-12 at 19:56:15 | INFO | Loading finished. +2024-05-12 at 21:59:02 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-12 at 21:59:02 | INFO | Connected to stand server +2024-05-12 at 21:59:02 | INFO | Running at cristallina with pgroup p21741. +2024-05-12 at 21:59:02 | INFO | Loading finished. +2024-05-13 at 00:30:02 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-13 at 00:30:03 | INFO | Connected to stand server +2024-05-13 at 00:30:03 | INFO | Running at cristallina with pgroup p21741. +2024-05-13 at 00:30:03 | INFO | Loading finished. +2024-05-13 at 03:05:59 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-13 at 03:05:59 | INFO | Connected to stand server +2024-05-13 at 03:05:59 | INFO | Running at cristallina with pgroup p21741. +2024-05-13 at 03:05:59 | INFO | Loading finished. +2024-05-13 at 03:52:31 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-13 at 03:52:32 | INFO | Connected to stand server +2024-05-13 at 03:52:32 | INFO | Running at cristallina with pgroup p21741. +2024-05-13 at 03:52:32 | INFO | Loading finished. +2024-05-13 at 11:28:54 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-13 at 11:28:55 | INFO | Connected to stand server +2024-05-15 at 13:23:57 | INFO | Using undulator (Aramis) offset to PSSS energy of -104 eV. +2024-05-15 at 13:24:01 | INFO | Connected to stand server +2024-05-15 at 13:24:01 | INFO | Running at cristallina with pgroup p21741. +2024-05-15 at 13:24:01 | INFO | Loading finished.