gammasimtools 0.13.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.13.0.dist-info → gammasimtools-0.14.0.dist-info}/METADATA +3 -3
- {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/RECORD +224 -217
- {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/WHEEL +1 -1
- {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/entry_points.txt +3 -1
- simtools/_version.py +2 -2
- simtools/applications/db_add_file_to_db.py +15 -0
- simtools/applications/db_add_value_from_json_to_db.py +18 -1
- simtools/applications/derive_ctao_array_layouts.py +120 -0
- simtools/applications/derive_photon_electron_spectrum.py +29 -1
- simtools/applications/docs_produce_array_element_report.py +41 -16
- simtools/applications/docs_produce_model_parameter_reports.py +28 -8
- simtools/applications/{production_extract_mc_event_data.py → generate_simtel_event_data.py} +12 -20
- simtools/applications/print_version.py +81 -0
- simtools/applications/production_derive_corsika_limits.py +172 -39
- simtools/applications/production_scale_events.py +59 -36
- simtools/applications/run_application.py +41 -11
- simtools/applications/simulate_light_emission.py +115 -247
- simtools/applications/simulate_prod_htcondor_generator.py +2 -2
- simtools/camera/single_photon_electron_spectrum.py +163 -15
- simtools/data_model/model_data_writer.py +7 -6
- simtools/db/db_handler.py +14 -8
- 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 -87
- simtools/production_configuration/derive_corsika_limits.py +222 -154
- simtools/production_configuration/event_scaler.py +2 -2
- simtools/reporting/docs_auto_report_generator.py +217 -0
- simtools/reporting/docs_read_parameters.py +192 -110
- simtools/schemas/application_workflow.metaschema.yml +3 -0
- simtools/schemas/model_parameter.metaschema.yml +13 -0
- simtools/schemas/model_parameter_and_data_schema.metaschema.yml +6 -0
- 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_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_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_threshold.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_rotate.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_depth.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_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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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/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/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_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_value.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_scaling_factor.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 +7 -3
- 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/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_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_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/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/simulator_light_emission.py +181 -67
- simtools/simulator.py +2 -2
- simtools/testing/configuration.py +17 -0
- simtools/utils/general.py +33 -7
- simtools/utils/geometry.py +19 -0
- simtools/utils/names.py +7 -1
- simtools/visualization/visualize.py +2 -2
- simtools/production_configuration/extract_mc_event_data.py +0 -253
- simtools/simtel/simtel_io_events.py +0 -265
- {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info/licenses}/LICENSE +0 -0
- {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/top_level.txt +0 -0
- /simtools/schemas/model_parameters/{nsb_skymap.schema.yml → nsb_sky_map.schema.yml} +0 -0
|
@@ -30,121 +30,121 @@ short_description: |-
|
|
|
30
30
|
along the optical axis and its shape.
|
|
31
31
|
data:
|
|
32
32
|
- name: p0
|
|
33
|
-
type:
|
|
33
|
+
type: float64
|
|
34
34
|
description: coefficient describing primary mirror
|
|
35
35
|
required: true
|
|
36
36
|
unit: cm
|
|
37
37
|
default: 0.
|
|
38
38
|
- name: p1
|
|
39
|
-
type:
|
|
39
|
+
type: float64
|
|
40
40
|
description: coefficient describing primary mirror
|
|
41
41
|
required: true
|
|
42
42
|
unit: cm
|
|
43
43
|
default: 0.
|
|
44
44
|
- name: p2
|
|
45
|
-
type:
|
|
45
|
+
type: float64
|
|
46
46
|
description: coefficient describing primary mirror
|
|
47
47
|
required: true
|
|
48
48
|
unit: cm
|
|
49
49
|
default: 0.
|
|
50
50
|
- name: p3
|
|
51
|
-
type:
|
|
51
|
+
type: float64
|
|
52
52
|
description: coefficient describing primary mirror
|
|
53
53
|
required: true
|
|
54
54
|
unit: cm
|
|
55
55
|
default: 0.
|
|
56
56
|
- name: p4
|
|
57
|
-
type:
|
|
57
|
+
type: float64
|
|
58
58
|
description: coefficient describing primary mirror
|
|
59
59
|
required: true
|
|
60
60
|
unit: cm
|
|
61
61
|
default: 0.
|
|
62
62
|
- name: p5
|
|
63
|
-
type:
|
|
63
|
+
type: float64
|
|
64
64
|
description: coefficient describing primary mirror
|
|
65
65
|
required: true
|
|
66
66
|
unit: cm
|
|
67
67
|
default: 0.
|
|
68
68
|
- name: p6
|
|
69
|
-
type:
|
|
69
|
+
type: float64
|
|
70
70
|
description: coefficient describing primary mirror
|
|
71
71
|
required: true
|
|
72
72
|
unit: cm
|
|
73
73
|
default: 0.
|
|
74
74
|
- name: p7
|
|
75
|
-
type:
|
|
75
|
+
type: float64
|
|
76
76
|
description: coefficient describing primary mirror
|
|
77
77
|
required: true
|
|
78
78
|
unit: cm
|
|
79
79
|
default: 0.
|
|
80
80
|
- name: p8
|
|
81
|
-
type:
|
|
81
|
+
type: float64
|
|
82
82
|
description: coefficient describing primary mirror
|
|
83
83
|
required: true
|
|
84
84
|
unit: cm
|
|
85
85
|
default: 0.
|
|
86
86
|
- name: p9
|
|
87
|
-
type:
|
|
87
|
+
type: float64
|
|
88
88
|
description: coefficient describing primary mirror
|
|
89
89
|
required: true
|
|
90
90
|
unit: cm
|
|
91
91
|
default: 0.
|
|
92
92
|
- name: p10
|
|
93
|
-
type:
|
|
93
|
+
type: float64
|
|
94
94
|
description: coefficient describing primary mirror
|
|
95
95
|
required: true
|
|
96
96
|
unit: cm
|
|
97
97
|
default: 0.
|
|
98
98
|
- name: p11
|
|
99
|
-
type:
|
|
99
|
+
type: float64
|
|
100
100
|
description: coefficient describing primary mirror
|
|
101
101
|
required: true
|
|
102
102
|
unit: cm
|
|
103
103
|
default: 0.
|
|
104
104
|
- name: p12
|
|
105
|
-
type:
|
|
105
|
+
type: float64
|
|
106
106
|
description: coefficient describing primary mirror
|
|
107
107
|
required: true
|
|
108
108
|
unit: cm
|
|
109
109
|
default: 0.
|
|
110
110
|
- name: p13
|
|
111
|
-
type:
|
|
111
|
+
type: float64
|
|
112
112
|
description: coefficient describing primary mirror
|
|
113
113
|
required: true
|
|
114
114
|
unit: cm
|
|
115
115
|
default: 0.
|
|
116
116
|
- name: p14
|
|
117
|
-
type:
|
|
117
|
+
type: float64
|
|
118
118
|
description: coefficient describing primary mirror
|
|
119
119
|
required: true
|
|
120
120
|
unit: cm
|
|
121
121
|
default: 0.
|
|
122
122
|
- name: p15
|
|
123
|
-
type:
|
|
123
|
+
type: float64
|
|
124
124
|
description: coefficient describing primary mirror
|
|
125
125
|
required: true
|
|
126
126
|
unit: cm
|
|
127
127
|
default: 0.
|
|
128
128
|
- name: p16
|
|
129
|
-
type:
|
|
129
|
+
type: float64
|
|
130
130
|
description: coefficient describing primary mirror
|
|
131
131
|
required: true
|
|
132
132
|
unit: cm
|
|
133
133
|
default: 0.
|
|
134
134
|
- name: p17
|
|
135
|
-
type:
|
|
135
|
+
type: float64
|
|
136
136
|
description: coefficient describing primary mirror
|
|
137
137
|
required: true
|
|
138
138
|
unit: cm
|
|
139
139
|
default: 0.
|
|
140
140
|
- name: p18
|
|
141
|
-
type:
|
|
141
|
+
type: float64
|
|
142
142
|
description: coefficient describing primary mirror
|
|
143
143
|
required: true
|
|
144
144
|
unit: cm
|
|
145
145
|
default: 0.
|
|
146
146
|
- name: p19
|
|
147
|
-
type:
|
|
147
|
+
type: float64
|
|
148
148
|
description: coefficient describing primary mirror
|
|
149
149
|
required: true
|
|
150
150
|
unit: cm
|
|
@@ -14,7 +14,7 @@ short_description: The length scale to which the primary_mirror_parameters apply
|
|
|
14
14
|
data:
|
|
15
15
|
- name: primary_ref_radius
|
|
16
16
|
description: The length scale to which the primary_mirror_parameters apply.
|
|
17
|
-
type:
|
|
17
|
+
type: float64
|
|
18
18
|
unit: cm
|
|
19
19
|
default: 1.0
|
|
20
20
|
condition: mirror_class==2
|
|
@@ -16,12 +16,12 @@ description: |-
|
|
|
16
16
|
random focal length value does not get applied.
|
|
17
17
|
short_description: The spread of random fluctuations in mirror focal lengths.
|
|
18
18
|
data:
|
|
19
|
-
- type:
|
|
19
|
+
- type: float64
|
|
20
20
|
description: Width (r.m.s.) of Gaussian distribution for random focal lengths.
|
|
21
21
|
unit: cm
|
|
22
22
|
default: 7.4
|
|
23
23
|
condition: mirror_class==1
|
|
24
|
-
- type:
|
|
24
|
+
- type: float64
|
|
25
25
|
description: Width of top-hat distribution for random focal lengths.
|
|
26
26
|
unit: cm
|
|
27
27
|
default: 0.0
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for random_mono_probability model parameter
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
meta_schema: simpipe-schema
|
|
6
|
+
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
|
+
meta_schema_version: 0.1.0
|
|
8
|
+
name: random_mono_probability
|
|
9
|
+
description: |
|
|
10
|
+
A certain fraction of triggered telescope events can be made to randomly pass the
|
|
11
|
+
stereo event selection in a way very similar to muon ring candidates do.
|
|
12
|
+
short_description: Fraction of random mono events to pass stereo selection.
|
|
13
|
+
data:
|
|
14
|
+
- type: float64
|
|
15
|
+
unit: dimensionless
|
|
16
|
+
default: 0.
|
|
17
|
+
allowed_range:
|
|
18
|
+
min: 0.
|
|
19
|
+
max: 1.
|
|
20
|
+
instrument:
|
|
21
|
+
class: Camera
|
|
22
|
+
type:
|
|
23
|
+
- LSTN
|
|
24
|
+
- LSTS
|
|
25
|
+
- MSTN
|
|
26
|
+
- MSTS
|
|
27
|
+
- SSTS
|
|
28
|
+
- SCTS
|
|
29
|
+
activity:
|
|
30
|
+
setting:
|
|
31
|
+
- SetParameterFromExternal
|
|
32
|
+
validation:
|
|
33
|
+
- ValidateParameterByExpert
|
|
34
|
+
source:
|
|
35
|
+
- Initial instrument setup
|
|
36
|
+
simulation_software:
|
|
37
|
+
- name: sim_telarray
|
|
38
|
+
internal_parameter_name: random_mono_prob
|
|
@@ -11,7 +11,7 @@ description: |-
|
|
|
11
11
|
Not to be used for coordinate transformations (use UTM coordinates for this).
|
|
12
12
|
short_description: Latitude of site reference point.
|
|
13
13
|
data:
|
|
14
|
-
- type:
|
|
14
|
+
- type: float64
|
|
15
15
|
unit: deg
|
|
16
16
|
allowed_range:
|
|
17
17
|
min: -90.0
|
|
@@ -34,3 +34,6 @@ source:
|
|
|
34
34
|
- Initial instrument setup
|
|
35
35
|
simulation_software:
|
|
36
36
|
- name: corsika
|
|
37
|
+
- name: sim_telarray
|
|
38
|
+
internal_parameter_name: latitude
|
|
39
|
+
set_meta_parameter: true
|
|
@@ -11,7 +11,7 @@ description: |-
|
|
|
11
11
|
Not to be used for coordinate transformations (use UTM coordinates for this).
|
|
12
12
|
short_description: Longitude of site reference point.
|
|
13
13
|
data:
|
|
14
|
-
- type:
|
|
14
|
+
- type: float64
|
|
15
15
|
unit: deg
|
|
16
16
|
allowed_range:
|
|
17
17
|
min: -180.0
|
|
@@ -34,3 +34,6 @@ source:
|
|
|
34
34
|
- Initial instrument setup
|
|
35
35
|
simulation_software:
|
|
36
36
|
- name: corsika
|
|
37
|
+
- name: sim_telarray
|
|
38
|
+
internal_parameter_name: longitude
|
|
39
|
+
set_meta_parameter: true
|
|
@@ -21,7 +21,7 @@ data:
|
|
|
21
21
|
primary center, which means a z value of par:secondary_ref_radius
|
|
22
22
|
times the first par:secondary_mirror_parameters value is at the
|
|
23
23
|
height of the center of the secondary.
|
|
24
|
-
type:
|
|
24
|
+
type: float64
|
|
25
25
|
unit: cm
|
|
26
26
|
required: true
|
|
27
27
|
condition: mirror_class==2
|
|
@@ -32,14 +32,14 @@ data:
|
|
|
32
32
|
primary center, which means a z value of par:secondary_ref_radius
|
|
33
33
|
times the first par:secondary_mirror_parameters value is at the
|
|
34
34
|
height of the center of the secondary.
|
|
35
|
-
type:
|
|
35
|
+
type: float64
|
|
36
36
|
unit: cm
|
|
37
37
|
required: true
|
|
38
38
|
condition: mirror_class==2
|
|
39
39
|
default: 0.
|
|
40
40
|
- name: radius_r1
|
|
41
41
|
description: Radius of open cylinder shape or cone shape at baffle_z1.
|
|
42
|
-
type:
|
|
42
|
+
type: float64
|
|
43
43
|
unit: cm
|
|
44
44
|
required: true
|
|
45
45
|
condition: mirror_class==2
|
|
@@ -48,14 +48,14 @@ data:
|
|
|
48
48
|
description: |-
|
|
49
49
|
Wall thickness of the baffle. The radius radius_r1 and radius_r2
|
|
50
50
|
are the inner radii in case of finite wall thickness.
|
|
51
|
-
type:
|
|
51
|
+
type: float64
|
|
52
52
|
unit: cm
|
|
53
53
|
required: false
|
|
54
54
|
condition: mirror_class==2
|
|
55
55
|
default: 0.
|
|
56
56
|
- name: radius_r2
|
|
57
57
|
description: Radius of open cylinder shape or cone shape at baffle_z2.
|
|
58
|
-
type:
|
|
58
|
+
type: float64
|
|
59
59
|
unit: cm
|
|
60
60
|
required: false
|
|
61
61
|
condition: mirror_class==2
|
|
@@ -30,121 +30,121 @@ short_description: |-
|
|
|
30
30
|
along the optical axis and its shape.
|
|
31
31
|
data:
|
|
32
32
|
- name: p0
|
|
33
|
-
type:
|
|
33
|
+
type: float64
|
|
34
34
|
description: coefficient describing secondary mirror
|
|
35
35
|
required: true
|
|
36
36
|
unit: cm
|
|
37
37
|
default: 0.
|
|
38
38
|
- name: p1
|
|
39
|
-
type:
|
|
39
|
+
type: float64
|
|
40
40
|
description: coefficient describing secondary mirror
|
|
41
41
|
required: true
|
|
42
42
|
unit: cm
|
|
43
43
|
default: 0.
|
|
44
44
|
- name: p2
|
|
45
|
-
type:
|
|
45
|
+
type: float64
|
|
46
46
|
description: coefficient describing secondary mirror
|
|
47
47
|
required: true
|
|
48
48
|
unit: cm
|
|
49
49
|
default: 0.
|
|
50
50
|
- name: p3
|
|
51
|
-
type:
|
|
51
|
+
type: float64
|
|
52
52
|
description: coefficient describing secondary mirror
|
|
53
53
|
required: true
|
|
54
54
|
unit: cm
|
|
55
55
|
default: 0.
|
|
56
56
|
- name: p4
|
|
57
|
-
type:
|
|
57
|
+
type: float64
|
|
58
58
|
description: coefficient describing secondary mirror
|
|
59
59
|
required: true
|
|
60
60
|
unit: cm
|
|
61
61
|
default: 0.
|
|
62
62
|
- name: p5
|
|
63
|
-
type:
|
|
63
|
+
type: float64
|
|
64
64
|
description: coefficient describing secondary mirror
|
|
65
65
|
required: true
|
|
66
66
|
unit: cm
|
|
67
67
|
default: 0.
|
|
68
68
|
- name: p6
|
|
69
|
-
type:
|
|
69
|
+
type: float64
|
|
70
70
|
description: coefficient describing secondary mirror
|
|
71
71
|
required: true
|
|
72
72
|
unit: cm
|
|
73
73
|
default: 0.
|
|
74
74
|
- name: p7
|
|
75
|
-
type:
|
|
75
|
+
type: float64
|
|
76
76
|
description: coefficient describing secondary mirror
|
|
77
77
|
required: true
|
|
78
78
|
unit: cm
|
|
79
79
|
default: 0.
|
|
80
80
|
- name: p8
|
|
81
|
-
type:
|
|
81
|
+
type: float64
|
|
82
82
|
description: coefficient describing secondary mirror
|
|
83
83
|
required: true
|
|
84
84
|
unit: cm
|
|
85
85
|
default: 0.
|
|
86
86
|
- name: p9
|
|
87
|
-
type:
|
|
87
|
+
type: float64
|
|
88
88
|
description: coefficient describing secondary mirror
|
|
89
89
|
required: true
|
|
90
90
|
unit: cm
|
|
91
91
|
default: 0.
|
|
92
92
|
- name: p10
|
|
93
|
-
type:
|
|
93
|
+
type: float64
|
|
94
94
|
description: coefficient describing secondary mirror
|
|
95
95
|
required: true
|
|
96
96
|
unit: cm
|
|
97
97
|
default: 0.
|
|
98
98
|
- name: p11
|
|
99
|
-
type:
|
|
99
|
+
type: float64
|
|
100
100
|
description: coefficient describing secondary mirror
|
|
101
101
|
required: true
|
|
102
102
|
unit: cm
|
|
103
103
|
default: 0.
|
|
104
104
|
- name: p12
|
|
105
|
-
type:
|
|
105
|
+
type: float64
|
|
106
106
|
description: coefficient describing secondary mirror
|
|
107
107
|
required: true
|
|
108
108
|
unit: cm
|
|
109
109
|
default: 0.
|
|
110
110
|
- name: p13
|
|
111
|
-
type:
|
|
111
|
+
type: float64
|
|
112
112
|
description: coefficient describing secondary mirror
|
|
113
113
|
required: true
|
|
114
114
|
unit: cm
|
|
115
115
|
default: 0.
|
|
116
116
|
- name: p14
|
|
117
|
-
type:
|
|
117
|
+
type: float64
|
|
118
118
|
description: coefficient describing secondary mirror
|
|
119
119
|
required: true
|
|
120
120
|
unit: cm
|
|
121
121
|
default: 0.
|
|
122
122
|
- name: p15
|
|
123
|
-
type:
|
|
123
|
+
type: float64
|
|
124
124
|
description: coefficient describing secondary mirror
|
|
125
125
|
required: true
|
|
126
126
|
unit: cm
|
|
127
127
|
default: 0.
|
|
128
128
|
- name: p16
|
|
129
|
-
type:
|
|
129
|
+
type: float64
|
|
130
130
|
description: coefficient describing secondary mirror
|
|
131
131
|
required: true
|
|
132
132
|
unit: cm
|
|
133
133
|
default: 0.
|
|
134
134
|
- name: p17
|
|
135
|
-
type:
|
|
135
|
+
type: float64
|
|
136
136
|
description: coefficient describing secondary mirror
|
|
137
137
|
required: true
|
|
138
138
|
unit: cm
|
|
139
139
|
default: 0.
|
|
140
140
|
- name: p18
|
|
141
|
-
type:
|
|
141
|
+
type: float64
|
|
142
142
|
description: coefficient describing secondary mirror
|
|
143
143
|
required: true
|
|
144
144
|
unit: cm
|
|
145
145
|
default: 0.
|
|
146
146
|
- name: p19
|
|
147
|
-
type:
|
|
147
|
+
type: float64
|
|
148
148
|
description: coefficient describing secondary mirror
|
|
149
149
|
required: true
|
|
150
150
|
unit: cm
|
|
@@ -14,7 +14,7 @@ short_description: The length scale to which the secondary_mirror_parameters app
|
|
|
14
14
|
data:
|
|
15
15
|
- name: secondary_ref_radius
|
|
16
16
|
description: The length scale to which the secondary_mirror_parameters apply.
|
|
17
|
-
type:
|
|
17
|
+
type: float64
|
|
18
18
|
unit: cm
|
|
19
19
|
condition: mirror_class==2
|
|
20
20
|
default: 1.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for stars model parameter
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
meta_schema: simpipe-schema
|
|
6
|
+
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
|
+
meta_schema_version: 0.1.0
|
|
8
|
+
developer_note: To be replaced by a data table
|
|
9
|
+
name: stars
|
|
10
|
+
description: |-
|
|
11
|
+
A file with a list of stars shining, containing one row per star with azimuth,
|
|
12
|
+
altitude (both in degrees) and weighting factor for the number of photons. An
|
|
13
|
+
optional fourth value is the distance of the light source (in kilometers) or 0
|
|
14
|
+
(standing for infinity). In addition to ray-tracing evaluation, the stars also contribute
|
|
15
|
+
to the nighsky background rate in the affected pixels.
|
|
16
|
+
short_description: File with shining stars in Az/Alt.
|
|
17
|
+
data:
|
|
18
|
+
- type: file
|
|
19
|
+
unit: dimensionless
|
|
20
|
+
default: null
|
|
21
|
+
instrument:
|
|
22
|
+
class: Site
|
|
23
|
+
type:
|
|
24
|
+
- Atmosphere
|
|
25
|
+
site:
|
|
26
|
+
- North
|
|
27
|
+
- South
|
|
28
|
+
activity:
|
|
29
|
+
setting:
|
|
30
|
+
- SetParameterFromExternal
|
|
31
|
+
validation:
|
|
32
|
+
- ValidateParameterByExpert
|
|
33
|
+
source:
|
|
34
|
+
- Calibration
|
|
35
|
+
simulation_software:
|
|
36
|
+
- name: sim_telarray
|
|
@@ -15,7 +15,7 @@ description: |-
|
|
|
15
15
|
in fewer than the given number of photo-electrons, as no attempt is made to trace photons through the telescope
|
|
16
16
|
and produce any photo-electrons if there are too few photons in the first place.
|
|
17
17
|
data:
|
|
18
|
-
- type:
|
|
18
|
+
- type: int64
|
|
19
19
|
unit: dimensionless
|
|
20
20
|
default: -1
|
|
21
21
|
allowed_range:
|
|
@@ -12,7 +12,7 @@ description: |-
|
|
|
12
12
|
for the various levels of confidence that a pixel actually belongs to the shower image.
|
|
13
13
|
Instead of making them individually configurable, a common scale factor can be applied to all of them.
|
|
14
14
|
data:
|
|
15
|
-
- type:
|
|
15
|
+
- type: float64
|
|
16
16
|
unit: dimensionless
|
|
17
17
|
default: 1
|
|
18
18
|
allowed_range:
|
|
@@ -40,7 +40,7 @@ short_description: |-
|
|
|
40
40
|
shadowing by masts.
|
|
41
41
|
data:
|
|
42
42
|
- name: constant_p0
|
|
43
|
-
type:
|
|
43
|
+
type: float64
|
|
44
44
|
description: |
|
|
45
45
|
Constant transmission factor $p_0$.
|
|
46
46
|
required: true
|
|
@@ -51,7 +51,7 @@ data:
|
|
|
51
51
|
max: 1.0
|
|
52
52
|
- name: transmission_function
|
|
53
53
|
required: false
|
|
54
|
-
type:
|
|
54
|
+
type: float64
|
|
55
55
|
description: |
|
|
56
56
|
Transmission function identifier.
|
|
57
57
|
default: 0
|
|
@@ -63,28 +63,28 @@ data:
|
|
|
63
63
|
description: |
|
|
64
64
|
Transmission factor $p_2$.
|
|
65
65
|
required: false
|
|
66
|
-
type:
|
|
66
|
+
type: float64
|
|
67
67
|
default: 0.0
|
|
68
68
|
unit: dimensionless
|
|
69
69
|
- name: transmission_p3
|
|
70
70
|
description: |
|
|
71
71
|
Transmission factor $p_3$.
|
|
72
72
|
required: false
|
|
73
|
-
type:
|
|
73
|
+
type: float64
|
|
74
74
|
default: 0.0
|
|
75
75
|
unit: dimensionless
|
|
76
76
|
- name: transmission_p4
|
|
77
77
|
description: |
|
|
78
78
|
Transmission factor $p_4$.
|
|
79
79
|
required: false
|
|
80
|
-
type:
|
|
80
|
+
type: float64
|
|
81
81
|
default: 0.0
|
|
82
82
|
unit: dimensionless
|
|
83
83
|
- name: transmission_p5
|
|
84
84
|
description: |
|
|
85
85
|
Transmission factor $p_5.
|
|
86
86
|
required: false
|
|
87
|
-
type:
|
|
87
|
+
type: float64
|
|
88
88
|
default: 0.0
|
|
89
89
|
unit: dimensionless
|
|
90
90
|
instrument:
|