JfjochStatistics¶
Pool statistics for Jungfraujoch to reduce transfers between frontend and jfjoch_broker
Properties¶
Name | Type | Description | Notes |
|---|---|---|---|
detector | [optional] | ||
detector_list | [optional] | ||
detector_settings | [optional] | ||
image_format_settings | [optional] | ||
instrument_metadata | [optional] | ||
file_writer_settings | [optional] | ||
data_processing_settings | [optional] | ||
measurement | [optional] | ||
broker | [optional] | ||
fpga | [optional] | ||
calibration | [optional] | ||
zeromq_preview | [optional] | ||
zeromq_metadata | [optional] | ||
dark_mask | [optional] | ||
pixel_mask | [optional] | ||
roi | [optional] | ||
az_int | [optional] | ||
buffer | [optional] | ||
indexing | [optional] | ||
image_pusher | [optional] |
Example¶
from jfjoch_client.models.jfjoch_statistics import JfjochStatistics
# TODO update the JSON string below
json = "{}"
# create an instance of JfjochStatistics from a JSON string
jfjoch_statistics_instance = JfjochStatistics.from_json(json)
# print the JSON string representation of the object
print(JfjochStatistics.to_json())
# convert the object into a dict
jfjoch_statistics_dict = jfjoch_statistics_instance.to_dict()
# create an instance of JfjochStatistics from a dict
jfjoch_statistics_from_dict = JfjochStatistics.from_dict(jfjoch_statistics_dict)