RoiAzimuthal

ROI as Q-range (or resolution range)

Properties

Name

Type

Description

Notes

name

str

Name for the ROI; used in the plots

q_min_recip_a

float

Minimum Q-range for the ROI

q_max_recip_a

float

Maximum Q-range for the ROI

Example

from jfjoch_client.models.roi_azimuthal import RoiAzimuthal

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

# convert the object into a dict
roi_azimuthal_dict = roi_azimuthal_instance.to_dict()
# create an instance of RoiAzimuthal from a dict
roi_azimuthal_from_dict = RoiAzimuthal.from_dict(roi_azimuthal_dict)

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