Files
Jungfraujoch/docs/python_client/docs/DatasetSettingsSmargon.md
T

1.4 KiB

DatasetSettingsSmargon

Geometry of Smargon goniometer at SLS 2.0 / MX beamlines. Assuming that Smargon is used as static positioner and not moving during the scan, allowing to reconstruct geometry.

Properties

Name Type Description Notes
phi_deg float Phi angle in degrees
chi_deg float Chi angle in degrees
phi_axis List[float] Phi rotation axis [optional] [default to [1,0,0]]
chi_axis List[float] Chi rotation axis [optional] [default to [0,0,1]]

Example

from jfjoch_client.models.dataset_settings_smargon import DatasetSettingsSmargon

# TODO update the JSON string below
json = "{}"
# create an instance of DatasetSettingsSmargon from a JSON string
dataset_settings_smargon_instance = DatasetSettingsSmargon.from_json(json)
# print the JSON string representation of the object
print(DatasetSettingsSmargon.to_json())

# convert the object into a dict
dataset_settings_smargon_dict = dataset_settings_smargon_instance.to_dict()
# create an instance of DatasetSettingsSmargon from a dict
dataset_settings_smargon_from_dict = DatasetSettingsSmargon.from_dict(dataset_settings_smargon_dict)

[Back to Model list] [Back to API list] [Back to README]