gammasimtools 0.12.0__py3-none-any.whl → 0.14.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {gammasimtools-0.12.0.dist-info → gammasimtools-0.14.0.dist-info}/METADATA +3 -3
- {gammasimtools-0.12.0.dist-info → gammasimtools-0.14.0.dist-info}/RECORD +257 -263
- {gammasimtools-0.12.0.dist-info → gammasimtools-0.14.0.dist-info}/WHEEL +1 -1
- {gammasimtools-0.12.0.dist-info → gammasimtools-0.14.0.dist-info}/entry_points.txt +4 -1
- simtools/_version.py +2 -2
- simtools/applications/convert_all_model_parameters_from_simtel.py +77 -88
- simtools/applications/convert_geo_coordinates_of_array_elements.py +1 -1
- simtools/applications/db_add_file_to_db.py +15 -0
- simtools/applications/db_add_value_from_json_to_db.py +18 -1
- simtools/applications/db_get_parameter_from_db.py +52 -22
- simtools/applications/derive_ctao_array_layouts.py +120 -0
- simtools/applications/derive_photon_electron_spectrum.py +30 -2
- simtools/applications/docs_produce_array_element_report.py +42 -26
- simtools/applications/docs_produce_model_parameter_reports.py +28 -21
- simtools/applications/generate_simtel_event_data.py +117 -0
- simtools/applications/plot_tabular_data.py +14 -2
- simtools/applications/print_version.py +81 -0
- simtools/applications/production_derive_corsika_limits.py +240 -0
- simtools/applications/production_scale_events.py +59 -36
- simtools/applications/run_application.py +47 -18
- simtools/applications/simulate_light_emission.py +115 -247
- simtools/applications/simulate_prod_htcondor_generator.py +2 -2
- simtools/applications/submit_data_from_external.py +1 -1
- simtools/applications/submit_model_parameter_from_external.py +2 -1
- simtools/camera/single_photon_electron_spectrum.py +169 -17
- simtools/constants.py +7 -0
- simtools/data_model/metadata_collector.py +159 -61
- simtools/data_model/model_data_writer.py +18 -61
- simtools/data_model/schema.py +2 -1
- simtools/data_model/validate_data.py +5 -3
- simtools/db/db_handler.py +123 -33
- simtools/dependencies.py +38 -3
- simtools/layout/array_layout.py +1 -0
- simtools/layout/ctao_array_layouts.py +172 -0
- simtools/model/array_model.py +3 -4
- simtools/model/model_parameter.py +30 -118
- simtools/production_configuration/derive_corsika_limits.py +328 -0
- simtools/production_configuration/event_scaler.py +2 -2
- simtools/ray_tracing/mirror_panel_psf.py +1 -1
- simtools/reporting/docs_auto_report_generator.py +217 -0
- simtools/reporting/docs_read_parameters.py +298 -143
- simtools/schemas/application_workflow.metaschema.yml +3 -0
- simtools/schemas/metadata.metaschema.yml +7 -6
- simtools/schemas/model_parameter.metaschema.yml +13 -4
- simtools/schemas/model_parameter_and_data_schema.metaschema.yml +19 -5
- simtools/schemas/model_parameters/adjust_gain.schema.yml +1 -1
- simtools/schemas/model_parameters/altitude.schema.yml +1 -1
- simtools/schemas/model_parameters/array_coordinates.schema.yml +1 -1
- simtools/schemas/model_parameters/array_coordinates_UTM.schema.yml +3 -3
- simtools/schemas/model_parameters/array_element_position_ground.schema.yml +3 -3
- simtools/schemas/model_parameters/array_element_position_utm.schema.yml +3 -3
- simtools/schemas/model_parameters/array_layouts.schema.yml +3 -0
- simtools/schemas/model_parameters/array_window.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_clipping.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_shaping.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/atmospheric_profile.schema.yml +1 -1
- simtools/schemas/model_parameters/axes_offsets.schema.yml +2 -2
- simtools/schemas/model_parameters/camera_body_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_body_shape.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_config_file.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_config_rotate.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_degraded_map.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_depth.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_filter.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_pixels.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_transmission.schema.yml +1 -1
- simtools/schemas/model_parameters/channels_per_chip.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_iact_io_buffer.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_iact_max_bunches.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_iact_split_auto.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_observation_level.schema.yml +1 -1
- simtools/schemas/model_parameters/dark_events.schema.yml +1 -1
- simtools/schemas/model_parameters/disc_bins.schema.yml +1 -1
- simtools/schemas/model_parameters/disc_start.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_fall_time.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_gate_length.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_output_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_output_var_percent.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_rise_time.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_scale_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_sigsum_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_time_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_gate_length.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_sigsum_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_time_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/dish_shape_length.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_clipping.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_ignore_below.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_prescale.schema.yml +2 -2
- simtools/schemas/model_parameters/dsum_presum_max.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_presum_shift.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_shaping.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_zero_clip.schema.yml +1 -1
- simtools/schemas/model_parameters/effective_focal_length.schema.yml +5 -5
- simtools/schemas/model_parameters/epsg_code.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_bins.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_dev_pedestal.schema.yml +2 -2
- simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_dev_pedestal.schema.yml +2 -2
- simtools/schemas/model_parameters/fadc_lg_err_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_max_sum.schema.yml +4 -4
- simtools/schemas/model_parameters/fadc_lg_noise.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_max_signal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_max_sum.schema.yml +4 -4
- simtools/schemas/model_parameters/fadc_mhz.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_noise.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sum_bins.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sum_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fake_mirror_list.schema.yml +1 -1
- simtools/schemas/model_parameters/focal_length.schema.yml +1 -1
- simtools/schemas/model_parameters/focal_surface_parameters.schema.yml +20 -20
- simtools/schemas/model_parameters/focal_surface_ref_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/focus_offset.schema.yml +4 -4
- simtools/schemas/model_parameters/gain_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/geomag_horizontal.schema.yml +1 -1
- simtools/schemas/model_parameters/geomag_rotation.schema.yml +1 -1
- simtools/schemas/model_parameters/geomag_vertical.schema.yml +1 -1
- simtools/schemas/model_parameters/hg_lg_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/iobuf_maximum.schema.yml +1 -1
- simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_events.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_external_trigger.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_exptime.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_sigtime.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_twidth.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_var_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_wavelength.schema.yml +1 -1
- simtools/schemas/model_parameters/led_events.schema.yml +1 -1
- simtools/schemas/model_parameters/led_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/led_pulse_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/led_pulse_sigtime.schema.yml +1 -1
- simtools/schemas/model_parameters/led_var_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/lightguide_efficiency_vs_incidence_angle.schema.yml +1 -1
- simtools/schemas/model_parameters/lightguide_efficiency_vs_wavelength.schema.yml +1 -1
- simtools/schemas/model_parameters/min_photoelectrons.schema.yml +1 -1
- simtools/schemas/model_parameters/min_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_align_random_horizontal.schema.yml +4 -4
- simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml +4 -4
- simtools/schemas/model_parameters/mirror_class.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_focal_length.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_list.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_panel_2f_measurements.schema.yml +3 -3
- simtools/schemas/model_parameters/mirror_reflection_random_angle.schema.yml +3 -3
- simtools/schemas/model_parameters/multiplicity_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/muon_mono_threshold.schema.yml +45 -0
- simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml +2 -2
- simtools/schemas/model_parameters/nsb_gain_drop_scale.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_offaxis.schema.yml +5 -5
- simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_reference_spectrum.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_reference_value.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_scaling_factor.schema.yml +1 -1
- simtools/schemas/model_parameters/{nsb_skymap.schema.yml → nsb_sky_map.schema.yml} +1 -1
- simtools/schemas/model_parameters/nsb_spectrum.schema.yml +2 -2
- simtools/schemas/model_parameters/num_gains.schema.yml +1 -1
- simtools/schemas/model_parameters/pedestal_events.schema.yml +1 -1
- simtools/schemas/model_parameters/photon_delay.schema.yml +1 -1
- simtools/schemas/model_parameters/photons_per_run.schema.yml +1 -1
- simtools/schemas/model_parameters/pixel_cells.schema.yml +1 -1
- simtools/schemas/model_parameters/pixels_parallel.schema.yml +1 -1
- simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_average_gain.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_gain_index.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_transit_time.schema.yml +4 -4
- simtools/schemas/model_parameters/pm_voltage_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml +8 -4
- simtools/schemas/model_parameters/primary_mirror_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_hole_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_parameters.schema.yml +20 -20
- simtools/schemas/model_parameters/primary_mirror_ref_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_segmentation.schema.yml +1 -1
- simtools/schemas/model_parameters/qe_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/random_focal_length.schema.yml +2 -2
- simtools/schemas/model_parameters/random_mono_probability.schema.yml +38 -0
- simtools/schemas/model_parameters/reference_point_altitude.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_latitude.schema.yml +4 -1
- simtools/schemas/model_parameters/reference_point_longitude.schema.yml +4 -1
- simtools/schemas/model_parameters/reference_point_utm_east.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_utm_north.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_baffle.schema.yml +5 -5
- simtools/schemas/model_parameters/secondary_mirror_degraded_map.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_degraded_reflection.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_hole_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_parameters.schema.yml +20 -20
- simtools/schemas/model_parameters/secondary_mirror_ref_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_segmentation.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_shadow_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_shadow_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/stars.schema.yml +36 -0
- simtools/schemas/model_parameters/store_photoelectrons.schema.yml +1 -1
- simtools/schemas/model_parameters/tailcut_scale.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_axis_height.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_random_angle.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_random_error.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_transmission.schema.yml +6 -6
- simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml +1 -1
- simtools/schemas/model_parameters/teltrig_min_time.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_calib_error.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_compensate_error.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_error.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_jitter.schema.yml +1 -1
- simtools/schemas/model_parameters/trigger_current_limit.schema.yml +1 -1
- simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml +4 -4
- simtools/schemas/model_parameters/trigger_pixels.schema.yml +1 -1
- simtools/schemas/plot_configuration.metaschema.yml +162 -0
- simtools/schemas/production_tables.schema.yml +1 -1
- simtools/simtel/simtel_config_reader.py +85 -34
- simtools/simtel/simtel_config_writer.py +70 -38
- simtools/simtel/simtel_io_event_reader.py +278 -0
- simtools/simtel/simtel_io_event_writer.py +317 -0
- simtools/simtel/simtel_table_reader.py +4 -0
- simtools/simtel/simulator_light_emission.py +181 -67
- simtools/simulator.py +2 -2
- simtools/testing/configuration.py +17 -0
- simtools/utils/general.py +83 -16
- simtools/utils/geometry.py +19 -0
- simtools/utils/names.py +14 -3
- simtools/visualization/plot_tables.py +25 -20
- simtools/visualization/visualize.py +73 -25
- simtools/_dev_version/__init__.py +0 -9
- simtools/applications/__init__.py +0 -0
- simtools/applications/production_derive_limits.py +0 -95
- simtools/configuration/__init__.py +0 -0
- simtools/corsika/__init__.py +0 -0
- simtools/data_model/__init__.py +0 -0
- simtools/db/__init__.py +0 -0
- simtools/io_operations/__init__.py +0 -0
- simtools/job_execution/__init__.py +0 -0
- simtools/layout/__init__.py +0 -0
- simtools/model/__init__.py +0 -0
- simtools/production_configuration/limits_calculation.py +0 -202
- simtools/ray_tracing/__init__.py +0 -0
- simtools/runners/__init__.py +0 -0
- simtools/simtel/__init__.py +0 -0
- simtools/simtel/simtel_io_events.py +0 -265
- simtools/testing/__init__.py +0 -0
- simtools/utils/__init__.py +0 -0
- simtools/visualization/__init__.py +0 -0
- {gammasimtools-0.12.0.dist-info → gammasimtools-0.14.0.dist-info/licenses}/LICENSE +0 -0
- {gammasimtools-0.12.0.dist-info → gammasimtools-0.14.0.dist-info}/top_level.txt +0 -0
|
@@ -15,12 +15,12 @@ description: |-
|
|
|
15
15
|
No such scaling is applied if first and second value are equal.
|
|
16
16
|
short_description: Scaling of shaped signals.
|
|
17
17
|
data:
|
|
18
|
-
- type:
|
|
18
|
+
- type: uint64
|
|
19
19
|
description: multiplier
|
|
20
20
|
default: 0
|
|
21
21
|
unit: dimensionless
|
|
22
22
|
condition: default_trigger==DigitalSum
|
|
23
|
-
- type:
|
|
23
|
+
- type: uint64
|
|
24
24
|
description: divider
|
|
25
25
|
default: 0
|
|
26
26
|
unit: dimensionless
|
|
@@ -13,7 +13,7 @@ description: |-
|
|
|
13
13
|
A value of zero implies no maximum to be applied.
|
|
14
14
|
short_description: Maximum of pre-sum in available number of bits.
|
|
15
15
|
data:
|
|
16
|
-
- type:
|
|
16
|
+
- type: uint64
|
|
17
17
|
unit: dimensionless
|
|
18
18
|
default: 0
|
|
19
19
|
condition: default_trigger==DigitalSum
|
|
@@ -35,7 +35,7 @@ short_description: |-
|
|
|
35
35
|
data:
|
|
36
36
|
- description: |-
|
|
37
37
|
Mean effective length for all directions of incidence.
|
|
38
|
-
type:
|
|
38
|
+
type: float64
|
|
39
39
|
unit: cm
|
|
40
40
|
default: 0.0
|
|
41
41
|
allowed_range:
|
|
@@ -44,7 +44,7 @@ data:
|
|
|
44
44
|
- description: |-
|
|
45
45
|
Effective length for incidence directions in mirror/camera x-z plane
|
|
46
46
|
(if non-zero).
|
|
47
|
-
type:
|
|
47
|
+
type: float64
|
|
48
48
|
unit: cm
|
|
49
49
|
default: 0.0
|
|
50
50
|
allowed_range:
|
|
@@ -53,7 +53,7 @@ data:
|
|
|
53
53
|
- description: |-
|
|
54
54
|
Effective length for incidence directions in mirror/camera y-z plane
|
|
55
55
|
(if non-zero).
|
|
56
|
-
type:
|
|
56
|
+
type: float64
|
|
57
57
|
unit: cm
|
|
58
58
|
default: 0.0
|
|
59
59
|
allowed_range:
|
|
@@ -61,12 +61,12 @@ data:
|
|
|
61
61
|
max: 10000.0
|
|
62
62
|
- description: |-
|
|
63
63
|
Any displacement along x in the focal plane from asymmetric PSF behavior.
|
|
64
|
-
type:
|
|
64
|
+
type: float64
|
|
65
65
|
unit: cm
|
|
66
66
|
default: 0.0
|
|
67
67
|
- description: |-
|
|
68
68
|
Any displacement along y in the focal plane from asymmetric PSF behavior.
|
|
69
|
-
type:
|
|
69
|
+
type: float64
|
|
70
70
|
unit: cm
|
|
71
71
|
default: 0.0
|
|
72
72
|
instrument:
|
|
@@ -15,7 +15,7 @@ description: |-
|
|
|
15
15
|
short_description: Peak amplitude above pedestal for a photo electron with average
|
|
16
16
|
signal.
|
|
17
17
|
data:
|
|
18
|
-
- type:
|
|
18
|
+
- type: float64
|
|
19
19
|
description: FADC amplitude (for high-gain channel in case of dual-readout chain).
|
|
20
20
|
unit: count
|
|
21
21
|
default: 14.0
|
|
@@ -14,7 +14,7 @@ description: |-
|
|
|
14
14
|
Deviation of (F)ADCs pedestals in a single channel.
|
|
15
15
|
(for high-gain channel in case of dual-readout chain).
|
|
16
16
|
data:
|
|
17
|
-
- type:
|
|
17
|
+
- type: float64
|
|
18
18
|
description: |-
|
|
19
19
|
Deviation of (F)ADCs pedestals
|
|
20
20
|
(for high-gain channel in case of dual-readout chain).
|
|
@@ -25,7 +25,7 @@ data:
|
|
|
25
25
|
instrument:
|
|
26
26
|
class: Camera
|
|
27
27
|
type:
|
|
28
|
-
-
|
|
28
|
+
- null
|
|
29
29
|
activity:
|
|
30
30
|
setting:
|
|
31
31
|
- SetParameterFromExternal
|
|
@@ -14,7 +14,7 @@ description: |-
|
|
|
14
14
|
Used only when fadc_compensate_pedestal is activated.
|
|
15
15
|
short_description: R.M.S. error on the pedestal evaluation for the compensation step.
|
|
16
16
|
data:
|
|
17
|
-
- type:
|
|
17
|
+
- type: float64
|
|
18
18
|
unit: dimensionless
|
|
19
19
|
default: 0.
|
|
20
20
|
allowed_range:
|
|
@@ -15,7 +15,7 @@ description: |-
|
|
|
15
15
|
short_description: Peak amplitude above pedestal for a photo electron with average
|
|
16
16
|
signal (low-gain channels).
|
|
17
17
|
data:
|
|
18
|
-
- type:
|
|
18
|
+
- type: float64
|
|
19
19
|
description: FADC amplitude (for low-gain channel in case of dual-readout chain).
|
|
20
20
|
unit: count
|
|
21
21
|
condition: num_gains==2
|
|
@@ -13,7 +13,7 @@ developer_note: |-
|
|
|
13
13
|
description: |-
|
|
14
14
|
Deviation of (F)ADCs pedestals in a single channel (low-gain channels).
|
|
15
15
|
data:
|
|
16
|
-
- type:
|
|
16
|
+
- type: float64
|
|
17
17
|
description: |-
|
|
18
18
|
Deviation of (F)ADCs pedestals (for low-gain channels).
|
|
19
19
|
unit: dimensionless
|
|
@@ -24,7 +24,7 @@ data:
|
|
|
24
24
|
instrument:
|
|
25
25
|
class: Camera
|
|
26
26
|
type:
|
|
27
|
-
-
|
|
27
|
+
- null
|
|
28
28
|
activity:
|
|
29
29
|
setting:
|
|
30
30
|
- SetParameterFromExternal
|
|
@@ -14,7 +14,7 @@ description: |-
|
|
|
14
14
|
Used only when fadc_compensate_pedestal is activated.
|
|
15
15
|
short_description: R.M.S. error on the pedestal evaluation for the compensation step.
|
|
16
16
|
data:
|
|
17
|
-
- type:
|
|
17
|
+
- type: float64
|
|
18
18
|
unit: dimensionless
|
|
19
19
|
default: -1.
|
|
20
20
|
allowed_range:
|
|
@@ -20,7 +20,7 @@ short_description: |-
|
|
|
20
20
|
Assumed error in initial calibration of pedestal
|
|
21
21
|
(low-gain channels; affects only the reported pedestal).
|
|
22
22
|
data:
|
|
23
|
-
- type:
|
|
23
|
+
- type: float64
|
|
24
24
|
description: |-
|
|
25
25
|
Error in pedestal calibration
|
|
26
26
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -11,7 +11,7 @@ description: |-
|
|
|
11
11
|
For a typical 12-bit ADC this would be 4095.
|
|
12
12
|
short_description: Maximum value of digitized signal per sample (low-gain channels).
|
|
13
13
|
data:
|
|
14
|
-
- type:
|
|
14
|
+
- type: int64
|
|
15
15
|
description: |-
|
|
16
16
|
Maximum FADC signal
|
|
17
17
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -15,7 +15,7 @@ short_description: |-
|
|
|
15
15
|
The maximum value of a pulse sum produced by hardware pulse summation,
|
|
16
16
|
in sum mode rather than recording pulse samples (low-gain channels).
|
|
17
17
|
data:
|
|
18
|
-
- type:
|
|
18
|
+
- type: int64
|
|
19
19
|
description: |-
|
|
20
20
|
Maximum value of a pulse sum
|
|
21
21
|
(for low-gain channel in case of dual-readout chain)
|
|
@@ -27,12 +27,12 @@ data:
|
|
|
27
27
|
instrument:
|
|
28
28
|
class: Camera
|
|
29
29
|
type:
|
|
30
|
-
-
|
|
30
|
+
- null
|
|
31
31
|
activity:
|
|
32
32
|
setting:
|
|
33
|
-
-
|
|
33
|
+
- null
|
|
34
34
|
validation:
|
|
35
|
-
-
|
|
35
|
+
- null
|
|
36
36
|
source:
|
|
37
37
|
- Initial instrument setup
|
|
38
38
|
simulation_software:
|
|
@@ -11,7 +11,7 @@ description: |-
|
|
|
11
11
|
(for low-gain channel, if different gains are used).
|
|
12
12
|
short_description: Gaussian r.m.s. spread of white noise per time bin in digitisation (low-gain channels).
|
|
13
13
|
data:
|
|
14
|
-
- type:
|
|
14
|
+
- type: float64
|
|
15
15
|
description: |-
|
|
16
16
|
Gaussian r.m.s. spread of white noise per time bin in digitisation
|
|
17
17
|
(for low-gain channel in case of dual-readout chain)
|
|
@@ -8,7 +8,7 @@ meta_schema_version: 0.1.0
|
|
|
8
8
|
name: fadc_lg_pedestal
|
|
9
9
|
description: (F)ADC pedestal value per time slice (low-gain channels).
|
|
10
10
|
data:
|
|
11
|
-
- type:
|
|
11
|
+
- type: float64
|
|
12
12
|
description: |-
|
|
13
13
|
(F)ADC pedestal value per time slice
|
|
14
14
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -16,7 +16,7 @@ description: |-
|
|
|
16
16
|
amplitude of a single photo-electron.
|
|
17
17
|
short_description: FADC counts per mV voltage (for low-gain channels).
|
|
18
18
|
data:
|
|
19
|
-
- type:
|
|
19
|
+
- type: float64
|
|
20
20
|
description: |-
|
|
21
21
|
FADC counts per mV voltage.
|
|
22
22
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -12,7 +12,7 @@ description: |-
|
|
|
12
12
|
(random) amount. Parameter determines the Gaussian r.m.s.
|
|
13
13
|
short_description: Systematic common variations of pedestals (low-gain channels).
|
|
14
14
|
data:
|
|
15
|
-
- type:
|
|
15
|
+
- type: float64
|
|
16
16
|
description: |-
|
|
17
17
|
Systematic common variations of pedestals.
|
|
18
18
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -11,7 +11,7 @@ description: |-
|
|
|
11
11
|
time slice (low-gain channels). Value is the r.m.s. of the randomly chosen pedestal values
|
|
12
12
|
around the FADC pedestal.
|
|
13
13
|
data:
|
|
14
|
-
- type:
|
|
14
|
+
- type: float64
|
|
15
15
|
description: |-
|
|
16
16
|
Pedestal variations
|
|
17
17
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -8,7 +8,7 @@ meta_schema_version: 0.1.0
|
|
|
8
8
|
name: fadc_lg_var_sensitivity
|
|
9
9
|
description: Relative variations in sensitivity (even for FADCs of the same channel; low-gain channels).
|
|
10
10
|
data:
|
|
11
|
-
- type:
|
|
11
|
+
- type: float64
|
|
12
12
|
description: |-
|
|
13
13
|
Relative variations in sensitivity
|
|
14
14
|
(for low-gain channel in case of dual-readout chain).
|
|
@@ -12,7 +12,7 @@ description: |-
|
|
|
12
12
|
For a typical 12-bit ADC this would be 4095.
|
|
13
13
|
short_description: Maximum value of digitized signal per sample.
|
|
14
14
|
data:
|
|
15
|
-
- type:
|
|
15
|
+
- type: uint64
|
|
16
16
|
description: |-
|
|
17
17
|
Maximum FADC signal
|
|
18
18
|
(for high-gain channel in case of dual-readout chain).
|
|
@@ -16,7 +16,7 @@ short_description: |-
|
|
|
16
16
|
The maximum value of a pulse sum produced by hardware pulse summation,
|
|
17
17
|
in sum mode rather than recording pulse samples.
|
|
18
18
|
data:
|
|
19
|
-
- type:
|
|
19
|
+
- type: uint64
|
|
20
20
|
description: |-
|
|
21
21
|
Maximum value of a pulse sum
|
|
22
22
|
(for high-gain channel in case of dual-readout chain)
|
|
@@ -27,12 +27,12 @@ data:
|
|
|
27
27
|
instrument:
|
|
28
28
|
class: Camera
|
|
29
29
|
type:
|
|
30
|
-
-
|
|
30
|
+
- null
|
|
31
31
|
activity:
|
|
32
32
|
setting:
|
|
33
|
-
-
|
|
33
|
+
- null
|
|
34
34
|
validation:
|
|
35
|
-
-
|
|
35
|
+
- null
|
|
36
36
|
source:
|
|
37
37
|
- Initial instrument setup
|
|
38
38
|
simulation_software:
|
|
@@ -11,7 +11,7 @@ description: |-
|
|
|
11
11
|
(for high-gain channel, if different gains are used).
|
|
12
12
|
short_description: Gaussian r.m.s. spread of white noise per time bin in digitization.
|
|
13
13
|
data:
|
|
14
|
-
- type:
|
|
14
|
+
- type: float64
|
|
15
15
|
description: |-
|
|
16
16
|
Gaussian r.m.s. spread of white noise per time bin in digitization
|
|
17
17
|
(for high-gain channel in case of dual-readout chain)
|
|
@@ -9,7 +9,7 @@ name: fadc_pedestal
|
|
|
9
9
|
description: |-
|
|
10
10
|
(F)ADC pedestal value per time slice (for high-gain channel for dual-gain readout).
|
|
11
11
|
data:
|
|
12
|
-
- type:
|
|
12
|
+
- type: float64
|
|
13
13
|
description: |-
|
|
14
14
|
(F)ADC pedestal value per time slice
|
|
15
15
|
(for high-gain channel in case of dual-readout chain).
|
|
@@ -17,7 +17,7 @@ description: |-
|
|
|
17
17
|
(for high-gain channel for dual-gain readout).
|
|
18
18
|
short_description: FADC counts per mV voltage.
|
|
19
19
|
data:
|
|
20
|
-
- type:
|
|
20
|
+
- type: float64
|
|
21
21
|
description: |-
|
|
22
22
|
FADC counts per mV voltage.
|
|
23
23
|
(for high-gain channel in case of dual-readout chain).
|
|
@@ -13,7 +13,7 @@ description: |-
|
|
|
13
13
|
(random) amount. Parameter determines the Gaussian r.m.s.
|
|
14
14
|
short_description: Systematic common variations of pedestals.
|
|
15
15
|
data:
|
|
16
|
-
- type:
|
|
16
|
+
- type: float64
|
|
17
17
|
description: |-
|
|
18
18
|
Systematic common variations of pedestals.
|
|
19
19
|
(for high-gain channel in case of dual-readout chain).
|
|
@@ -9,7 +9,7 @@ name: fadc_var_sensitivity
|
|
|
9
9
|
description: |-
|
|
10
10
|
Relative variations in sensitivity (even for FADCs of the same channel).
|
|
11
11
|
data:
|
|
12
|
-
- type:
|
|
12
|
+
- type: float64
|
|
13
13
|
description: |-
|
|
14
14
|
Relative variations in sensitivity
|
|
15
15
|
(for high-gain channel in case of dual-readout chain).
|
|
@@ -21,121 +21,121 @@ short_description: |-
|
|
|
21
21
|
off-axis shape.
|
|
22
22
|
data:
|
|
23
23
|
- name: p0
|
|
24
|
-
type:
|
|
24
|
+
type: float64
|
|
25
25
|
description: coefficient describing focal surface
|
|
26
26
|
required: true
|
|
27
27
|
unit: cm
|
|
28
28
|
default: 0.
|
|
29
29
|
- name: p1
|
|
30
|
-
type:
|
|
30
|
+
type: float64
|
|
31
31
|
description: coefficient describing focal surface
|
|
32
32
|
required: true
|
|
33
33
|
unit: cm
|
|
34
34
|
default: 0.
|
|
35
35
|
- name: p2
|
|
36
|
-
type:
|
|
36
|
+
type: float64
|
|
37
37
|
description: coefficient describing focal surface
|
|
38
38
|
required: true
|
|
39
39
|
unit: cm
|
|
40
40
|
default: 0.
|
|
41
41
|
- name: p3
|
|
42
|
-
type:
|
|
42
|
+
type: float64
|
|
43
43
|
description: coefficient describing focal surface
|
|
44
44
|
required: true
|
|
45
45
|
unit: cm
|
|
46
46
|
default: 0.
|
|
47
47
|
- name: p4
|
|
48
|
-
type:
|
|
48
|
+
type: float64
|
|
49
49
|
description: coefficient describing focal surface
|
|
50
50
|
required: true
|
|
51
51
|
unit: cm
|
|
52
52
|
default: 0.
|
|
53
53
|
- name: p5
|
|
54
|
-
type:
|
|
54
|
+
type: float64
|
|
55
55
|
description: coefficient describing focal surface
|
|
56
56
|
required: true
|
|
57
57
|
unit: cm
|
|
58
58
|
default: 0.
|
|
59
59
|
- name: p6
|
|
60
|
-
type:
|
|
60
|
+
type: float64
|
|
61
61
|
description: coefficient describing focal surface
|
|
62
62
|
required: true
|
|
63
63
|
unit: cm
|
|
64
64
|
default: 0.
|
|
65
65
|
- name: p7
|
|
66
|
-
type:
|
|
66
|
+
type: float64
|
|
67
67
|
description: coefficient describing focal surface
|
|
68
68
|
required: true
|
|
69
69
|
unit: cm
|
|
70
70
|
default: 0.
|
|
71
71
|
- name: p8
|
|
72
|
-
type:
|
|
72
|
+
type: float64
|
|
73
73
|
description: coefficient describing focal surface
|
|
74
74
|
required: true
|
|
75
75
|
unit: cm
|
|
76
76
|
default: 0.
|
|
77
77
|
- name: p9
|
|
78
|
-
type:
|
|
78
|
+
type: float64
|
|
79
79
|
description: coefficient describing focal surface
|
|
80
80
|
required: true
|
|
81
81
|
unit: cm
|
|
82
82
|
default: 0.
|
|
83
83
|
- name: p10
|
|
84
|
-
type:
|
|
84
|
+
type: float64
|
|
85
85
|
description: coefficient describing focal surface
|
|
86
86
|
required: true
|
|
87
87
|
unit: cm
|
|
88
88
|
default: 0.
|
|
89
89
|
- name: p11
|
|
90
|
-
type:
|
|
90
|
+
type: float64
|
|
91
91
|
description: coefficient describing focal surface
|
|
92
92
|
required: true
|
|
93
93
|
unit: cm
|
|
94
94
|
default: 0.
|
|
95
95
|
- name: p12
|
|
96
|
-
type:
|
|
96
|
+
type: float64
|
|
97
97
|
description: coefficient describing focal surface
|
|
98
98
|
required: true
|
|
99
99
|
unit: cm
|
|
100
100
|
default: 0.
|
|
101
101
|
- name: p13
|
|
102
|
-
type:
|
|
102
|
+
type: float64
|
|
103
103
|
description: coefficient describing focal surface
|
|
104
104
|
required: true
|
|
105
105
|
unit: cm
|
|
106
106
|
default: 0.
|
|
107
107
|
- name: p14
|
|
108
|
-
type:
|
|
108
|
+
type: float64
|
|
109
109
|
description: coefficient describing focal surface
|
|
110
110
|
required: true
|
|
111
111
|
unit: cm
|
|
112
112
|
default: 0.
|
|
113
113
|
- name: p15
|
|
114
|
-
type:
|
|
114
|
+
type: float64
|
|
115
115
|
description: coefficient describing focal surface
|
|
116
116
|
required: true
|
|
117
117
|
unit: cm
|
|
118
118
|
default: 0.
|
|
119
119
|
- name: p16
|
|
120
|
-
type:
|
|
120
|
+
type: float64
|
|
121
121
|
description: coefficient describing focal surface
|
|
122
122
|
required: true
|
|
123
123
|
unit: cm
|
|
124
124
|
default: 0.
|
|
125
125
|
- name: p17
|
|
126
|
-
type:
|
|
126
|
+
type: float64
|
|
127
127
|
description: coefficient describing focal surface
|
|
128
128
|
required: true
|
|
129
129
|
unit: cm
|
|
130
130
|
default: 0.
|
|
131
131
|
- name: p18
|
|
132
|
-
type:
|
|
132
|
+
type: float64
|
|
133
133
|
description: coefficient describing focal surface
|
|
134
134
|
required: true
|
|
135
135
|
unit: cm
|
|
136
136
|
default: 0.
|
|
137
137
|
- name: p19
|
|
138
|
-
type:
|
|
138
|
+
type: float64
|
|
139
139
|
description: coefficient describing focal surface
|
|
140
140
|
required: true
|
|
141
141
|
unit: cm
|