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.
Files changed (226) hide show
  1. {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/METADATA +3 -3
  2. {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/RECORD +224 -217
  3. {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/WHEEL +1 -1
  4. {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/entry_points.txt +3 -1
  5. simtools/_version.py +2 -2
  6. simtools/applications/db_add_file_to_db.py +15 -0
  7. simtools/applications/db_add_value_from_json_to_db.py +18 -1
  8. simtools/applications/derive_ctao_array_layouts.py +120 -0
  9. simtools/applications/derive_photon_electron_spectrum.py +29 -1
  10. simtools/applications/docs_produce_array_element_report.py +41 -16
  11. simtools/applications/docs_produce_model_parameter_reports.py +28 -8
  12. simtools/applications/{production_extract_mc_event_data.py → generate_simtel_event_data.py} +12 -20
  13. simtools/applications/print_version.py +81 -0
  14. simtools/applications/production_derive_corsika_limits.py +172 -39
  15. simtools/applications/production_scale_events.py +59 -36
  16. simtools/applications/run_application.py +41 -11
  17. simtools/applications/simulate_light_emission.py +115 -247
  18. simtools/applications/simulate_prod_htcondor_generator.py +2 -2
  19. simtools/camera/single_photon_electron_spectrum.py +163 -15
  20. simtools/data_model/model_data_writer.py +7 -6
  21. simtools/db/db_handler.py +14 -8
  22. simtools/dependencies.py +38 -3
  23. simtools/layout/array_layout.py +1 -0
  24. simtools/layout/ctao_array_layouts.py +172 -0
  25. simtools/model/array_model.py +3 -4
  26. simtools/model/model_parameter.py +30 -87
  27. simtools/production_configuration/derive_corsika_limits.py +222 -154
  28. simtools/production_configuration/event_scaler.py +2 -2
  29. simtools/reporting/docs_auto_report_generator.py +217 -0
  30. simtools/reporting/docs_read_parameters.py +192 -110
  31. simtools/schemas/application_workflow.metaschema.yml +3 -0
  32. simtools/schemas/model_parameter.metaschema.yml +13 -0
  33. simtools/schemas/model_parameter_and_data_schema.metaschema.yml +6 -0
  34. simtools/schemas/model_parameters/adjust_gain.schema.yml +1 -1
  35. simtools/schemas/model_parameters/altitude.schema.yml +1 -1
  36. simtools/schemas/model_parameters/array_coordinates_UTM.schema.yml +3 -3
  37. simtools/schemas/model_parameters/array_element_position_ground.schema.yml +3 -3
  38. simtools/schemas/model_parameters/array_element_position_utm.schema.yml +3 -3
  39. simtools/schemas/model_parameters/array_window.schema.yml +1 -1
  40. simtools/schemas/model_parameters/asum_clipping.schema.yml +1 -1
  41. simtools/schemas/model_parameters/asum_offset.schema.yml +1 -1
  42. simtools/schemas/model_parameters/asum_threshold.schema.yml +1 -1
  43. simtools/schemas/model_parameters/axes_offsets.schema.yml +2 -2
  44. simtools/schemas/model_parameters/camera_body_diameter.schema.yml +1 -1
  45. simtools/schemas/model_parameters/camera_body_shape.schema.yml +1 -1
  46. simtools/schemas/model_parameters/camera_config_rotate.schema.yml +1 -1
  47. simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml +1 -1
  48. simtools/schemas/model_parameters/camera_depth.schema.yml +1 -1
  49. simtools/schemas/model_parameters/camera_pixels.schema.yml +1 -1
  50. simtools/schemas/model_parameters/camera_transmission.schema.yml +1 -1
  51. simtools/schemas/model_parameters/channels_per_chip.schema.yml +1 -1
  52. simtools/schemas/model_parameters/corsika_iact_io_buffer.schema.yml +1 -1
  53. simtools/schemas/model_parameters/corsika_iact_max_bunches.schema.yml +1 -1
  54. simtools/schemas/model_parameters/corsika_iact_split_auto.schema.yml +1 -1
  55. simtools/schemas/model_parameters/corsika_observation_level.schema.yml +1 -1
  56. simtools/schemas/model_parameters/dark_events.schema.yml +1 -1
  57. simtools/schemas/model_parameters/disc_bins.schema.yml +1 -1
  58. simtools/schemas/model_parameters/disc_start.schema.yml +1 -1
  59. simtools/schemas/model_parameters/discriminator_amplitude.schema.yml +1 -1
  60. simtools/schemas/model_parameters/discriminator_fall_time.schema.yml +1 -1
  61. simtools/schemas/model_parameters/discriminator_gate_length.schema.yml +1 -1
  62. simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml +1 -1
  63. simtools/schemas/model_parameters/discriminator_output_amplitude.schema.yml +1 -1
  64. simtools/schemas/model_parameters/discriminator_output_var_percent.schema.yml +1 -1
  65. simtools/schemas/model_parameters/discriminator_rise_time.schema.yml +1 -1
  66. simtools/schemas/model_parameters/discriminator_scale_threshold.schema.yml +1 -1
  67. simtools/schemas/model_parameters/discriminator_sigsum_over_threshold.schema.yml +1 -1
  68. simtools/schemas/model_parameters/discriminator_threshold.schema.yml +1 -1
  69. simtools/schemas/model_parameters/discriminator_time_over_threshold.schema.yml +1 -1
  70. simtools/schemas/model_parameters/discriminator_var_gate_length.schema.yml +1 -1
  71. simtools/schemas/model_parameters/discriminator_var_sigsum_over_threshold.schema.yml +1 -1
  72. simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml +1 -1
  73. simtools/schemas/model_parameters/discriminator_var_time_over_threshold.schema.yml +1 -1
  74. simtools/schemas/model_parameters/dish_shape_length.schema.yml +1 -1
  75. simtools/schemas/model_parameters/dsum_clipping.schema.yml +1 -1
  76. simtools/schemas/model_parameters/dsum_ignore_below.schema.yml +1 -1
  77. simtools/schemas/model_parameters/dsum_offset.schema.yml +1 -1
  78. simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml +1 -1
  79. simtools/schemas/model_parameters/dsum_prescale.schema.yml +2 -2
  80. simtools/schemas/model_parameters/dsum_presum_max.schema.yml +1 -1
  81. simtools/schemas/model_parameters/dsum_presum_shift.schema.yml +1 -1
  82. simtools/schemas/model_parameters/dsum_threshold.schema.yml +1 -1
  83. simtools/schemas/model_parameters/dsum_zero_clip.schema.yml +1 -1
  84. simtools/schemas/model_parameters/effective_focal_length.schema.yml +5 -5
  85. simtools/schemas/model_parameters/epsg_code.schema.yml +1 -1
  86. simtools/schemas/model_parameters/fadc_amplitude.schema.yml +1 -1
  87. simtools/schemas/model_parameters/fadc_bins.schema.yml +1 -1
  88. simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml +1 -1
  89. simtools/schemas/model_parameters/fadc_dev_pedestal.schema.yml +1 -1
  90. simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml +1 -1
  91. simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml +1 -1
  92. simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml +1 -1
  93. simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml +1 -1
  94. simtools/schemas/model_parameters/fadc_lg_dev_pedestal.schema.yml +1 -1
  95. simtools/schemas/model_parameters/fadc_lg_err_compensate_pedestal.schema.yml +1 -1
  96. simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml +1 -1
  97. simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml +1 -1
  98. simtools/schemas/model_parameters/fadc_lg_max_sum.schema.yml +1 -1
  99. simtools/schemas/model_parameters/fadc_lg_noise.schema.yml +1 -1
  100. simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml +1 -1
  101. simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml +1 -1
  102. simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml +1 -1
  103. simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml +1 -1
  104. simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml +1 -1
  105. simtools/schemas/model_parameters/fadc_max_signal.schema.yml +1 -1
  106. simtools/schemas/model_parameters/fadc_max_sum.schema.yml +1 -1
  107. simtools/schemas/model_parameters/fadc_mhz.schema.yml +1 -1
  108. simtools/schemas/model_parameters/fadc_noise.schema.yml +1 -1
  109. simtools/schemas/model_parameters/fadc_pedestal.schema.yml +1 -1
  110. simtools/schemas/model_parameters/fadc_sensitivity.schema.yml +1 -1
  111. simtools/schemas/model_parameters/fadc_sum_bins.schema.yml +1 -1
  112. simtools/schemas/model_parameters/fadc_sum_offset.schema.yml +1 -1
  113. simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml +1 -1
  114. simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml +1 -1
  115. simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml +1 -1
  116. simtools/schemas/model_parameters/focal_length.schema.yml +1 -1
  117. simtools/schemas/model_parameters/focal_surface_parameters.schema.yml +20 -20
  118. simtools/schemas/model_parameters/focal_surface_ref_radius.schema.yml +1 -1
  119. simtools/schemas/model_parameters/focus_offset.schema.yml +4 -4
  120. simtools/schemas/model_parameters/gain_variation.schema.yml +1 -1
  121. simtools/schemas/model_parameters/geomag_horizontal.schema.yml +1 -1
  122. simtools/schemas/model_parameters/geomag_rotation.schema.yml +1 -1
  123. simtools/schemas/model_parameters/geomag_vertical.schema.yml +1 -1
  124. simtools/schemas/model_parameters/hg_lg_variation.schema.yml +1 -1
  125. simtools/schemas/model_parameters/iobuf_maximum.schema.yml +1 -1
  126. simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml +1 -1
  127. simtools/schemas/model_parameters/laser_events.schema.yml +1 -1
  128. simtools/schemas/model_parameters/laser_external_trigger.schema.yml +1 -1
  129. simtools/schemas/model_parameters/laser_photons.schema.yml +1 -1
  130. simtools/schemas/model_parameters/laser_pulse_exptime.schema.yml +1 -1
  131. simtools/schemas/model_parameters/laser_pulse_offset.schema.yml +1 -1
  132. simtools/schemas/model_parameters/laser_pulse_sigtime.schema.yml +1 -1
  133. simtools/schemas/model_parameters/laser_pulse_twidth.schema.yml +1 -1
  134. simtools/schemas/model_parameters/laser_var_photons.schema.yml +1 -1
  135. simtools/schemas/model_parameters/laser_wavelength.schema.yml +1 -1
  136. simtools/schemas/model_parameters/led_events.schema.yml +1 -1
  137. simtools/schemas/model_parameters/led_photons.schema.yml +1 -1
  138. simtools/schemas/model_parameters/led_pulse_offset.schema.yml +1 -1
  139. simtools/schemas/model_parameters/led_pulse_sigtime.schema.yml +1 -1
  140. simtools/schemas/model_parameters/led_var_photons.schema.yml +1 -1
  141. simtools/schemas/model_parameters/min_photoelectrons.schema.yml +1 -1
  142. simtools/schemas/model_parameters/min_photons.schema.yml +1 -1
  143. simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml +1 -1
  144. simtools/schemas/model_parameters/mirror_align_random_horizontal.schema.yml +4 -4
  145. simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml +4 -4
  146. simtools/schemas/model_parameters/mirror_class.schema.yml +1 -1
  147. simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml +1 -1
  148. simtools/schemas/model_parameters/mirror_focal_length.schema.yml +1 -1
  149. simtools/schemas/model_parameters/mirror_offset.schema.yml +1 -1
  150. simtools/schemas/model_parameters/mirror_panel_2f_measurements.schema.yml +3 -3
  151. simtools/schemas/model_parameters/mirror_reflection_random_angle.schema.yml +3 -3
  152. simtools/schemas/model_parameters/multiplicity_offset.schema.yml +1 -1
  153. simtools/schemas/model_parameters/muon_mono_threshold.schema.yml +45 -0
  154. simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml +2 -2
  155. simtools/schemas/model_parameters/nsb_gain_drop_scale.schema.yml +1 -1
  156. simtools/schemas/model_parameters/nsb_offaxis.schema.yml +5 -5
  157. simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml +1 -1
  158. simtools/schemas/model_parameters/nsb_reference_value.schema.yml +1 -1
  159. simtools/schemas/model_parameters/nsb_scaling_factor.schema.yml +1 -1
  160. simtools/schemas/model_parameters/nsb_spectrum.schema.yml +2 -2
  161. simtools/schemas/model_parameters/num_gains.schema.yml +1 -1
  162. simtools/schemas/model_parameters/pedestal_events.schema.yml +1 -1
  163. simtools/schemas/model_parameters/photon_delay.schema.yml +1 -1
  164. simtools/schemas/model_parameters/photons_per_run.schema.yml +1 -1
  165. simtools/schemas/model_parameters/pixel_cells.schema.yml +1 -1
  166. simtools/schemas/model_parameters/pixels_parallel.schema.yml +1 -1
  167. simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml +1 -1
  168. simtools/schemas/model_parameters/pm_average_gain.schema.yml +1 -1
  169. simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml +1 -1
  170. simtools/schemas/model_parameters/pm_gain_index.schema.yml +1 -1
  171. simtools/schemas/model_parameters/pm_transit_time.schema.yml +4 -4
  172. simtools/schemas/model_parameters/pm_voltage_variation.schema.yml +1 -1
  173. simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml +7 -3
  174. simtools/schemas/model_parameters/primary_mirror_diameter.schema.yml +1 -1
  175. simtools/schemas/model_parameters/primary_mirror_hole_diameter.schema.yml +1 -1
  176. simtools/schemas/model_parameters/primary_mirror_parameters.schema.yml +20 -20
  177. simtools/schemas/model_parameters/primary_mirror_ref_radius.schema.yml +1 -1
  178. simtools/schemas/model_parameters/qe_variation.schema.yml +1 -1
  179. simtools/schemas/model_parameters/random_focal_length.schema.yml +2 -2
  180. simtools/schemas/model_parameters/random_mono_probability.schema.yml +38 -0
  181. simtools/schemas/model_parameters/reference_point_altitude.schema.yml +1 -1
  182. simtools/schemas/model_parameters/reference_point_latitude.schema.yml +4 -1
  183. simtools/schemas/model_parameters/reference_point_longitude.schema.yml +4 -1
  184. simtools/schemas/model_parameters/reference_point_utm_east.schema.yml +1 -1
  185. simtools/schemas/model_parameters/reference_point_utm_north.schema.yml +1 -1
  186. simtools/schemas/model_parameters/secondary_mirror_baffle.schema.yml +5 -5
  187. simtools/schemas/model_parameters/secondary_mirror_degraded_reflection.schema.yml +1 -1
  188. simtools/schemas/model_parameters/secondary_mirror_diameter.schema.yml +1 -1
  189. simtools/schemas/model_parameters/secondary_mirror_hole_diameter.schema.yml +1 -1
  190. simtools/schemas/model_parameters/secondary_mirror_parameters.schema.yml +20 -20
  191. simtools/schemas/model_parameters/secondary_mirror_ref_radius.schema.yml +1 -1
  192. simtools/schemas/model_parameters/secondary_mirror_shadow_diameter.schema.yml +1 -1
  193. simtools/schemas/model_parameters/secondary_mirror_shadow_offset.schema.yml +1 -1
  194. simtools/schemas/model_parameters/stars.schema.yml +36 -0
  195. simtools/schemas/model_parameters/store_photoelectrons.schema.yml +1 -1
  196. simtools/schemas/model_parameters/tailcut_scale.schema.yml +1 -1
  197. simtools/schemas/model_parameters/telescope_axis_height.schema.yml +1 -1
  198. simtools/schemas/model_parameters/telescope_random_angle.schema.yml +1 -1
  199. simtools/schemas/model_parameters/telescope_random_error.schema.yml +1 -1
  200. simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml +1 -1
  201. simtools/schemas/model_parameters/telescope_transmission.schema.yml +6 -6
  202. simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml +1 -1
  203. simtools/schemas/model_parameters/teltrig_min_time.schema.yml +1 -1
  204. simtools/schemas/model_parameters/transit_time_calib_error.schema.yml +1 -1
  205. simtools/schemas/model_parameters/transit_time_compensate_error.schema.yml +1 -1
  206. simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml +1 -1
  207. simtools/schemas/model_parameters/transit_time_error.schema.yml +1 -1
  208. simtools/schemas/model_parameters/transit_time_jitter.schema.yml +1 -1
  209. simtools/schemas/model_parameters/trigger_current_limit.schema.yml +1 -1
  210. simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml +4 -4
  211. simtools/schemas/model_parameters/trigger_pixels.schema.yml +1 -1
  212. simtools/simtel/simtel_config_writer.py +70 -38
  213. simtools/simtel/simtel_io_event_reader.py +278 -0
  214. simtools/simtel/simtel_io_event_writer.py +317 -0
  215. simtools/simtel/simulator_light_emission.py +181 -67
  216. simtools/simulator.py +2 -2
  217. simtools/testing/configuration.py +17 -0
  218. simtools/utils/general.py +33 -7
  219. simtools/utils/geometry.py +19 -0
  220. simtools/utils/names.py +7 -1
  221. simtools/visualization/visualize.py +2 -2
  222. simtools/production_configuration/extract_mc_event_data.py +0 -253
  223. simtools/simtel/simtel_io_events.py +0 -265
  224. {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info/licenses}/LICENSE +0 -0
  225. {gammasimtools-0.13.0.dist-info → gammasimtools-0.14.0.dist-info}/top_level.txt +0 -0
  226. /simtools/schemas/model_parameters/{nsb_skymap.schema.yml → nsb_sky_map.schema.yml} +0 -0
@@ -28,7 +28,7 @@ data:
28
28
  - name: utm_east
29
29
  description: |-
30
30
  UTM East coordinate of the array element.
31
- type: double
31
+ type: float64
32
32
  required: true
33
33
  unit: m
34
34
  input_processing:
@@ -36,7 +36,7 @@ data:
36
36
  - name: utm_north
37
37
  description: |-
38
38
  UTM North coordinate of the array element.
39
- type: double
39
+ type: float64
40
40
  required: true
41
41
  unit: m
42
42
  input_processing:
@@ -45,7 +45,7 @@ data:
45
45
  description: |-
46
46
  Altitude of the array element.
47
47
  required: true
48
- type: double
48
+ type: float64
49
49
  unit: m
50
50
  allowed_range:
51
51
  min: 0.
@@ -10,13 +10,13 @@ description: |-
10
10
  Position of an array element (e.g., a telescope) in ground coordinates.
11
11
  short_description: Ground coordinate position of an array element.
12
12
  data:
13
- - type: double
13
+ - type: float64
14
14
  unit: m
15
15
  description: Array element position in x-direction (towards North)
16
- - type: double
16
+ - type: float64
17
17
  unit: m
18
18
  description: Array element position in y-direction (towards West)
19
- - type: double
19
+ - type: float64
20
20
  unit: m
21
21
  description: Array element altitude above reference_point_altitude
22
22
  instrument:
@@ -10,13 +10,13 @@ description: |-
10
10
  Position and altitude of an array element (e.g., a telescope) in UTM coordinates.
11
11
  short_description: UTM coordinate position of an array element.
12
12
  data:
13
- - type: double
13
+ - type: float64
14
14
  unit: m
15
15
  description: Array element position in UTM East.
16
- - type: double
16
+ - type: float64
17
17
  unit: m
18
18
  description: Array element position in UTM North.
19
- - type: double
19
+ - type: float64
20
20
  unit: m
21
21
  description: Array element altitude above sea level.
22
22
  instrument:
@@ -13,7 +13,7 @@ description: |-
13
13
  short_description: |-
14
14
  Length of a coincidence window of the default stereo trigger.
15
15
  data:
16
- - type: double
16
+ - type: float64
17
17
  unit: ns
18
18
  default: 1000.
19
19
  instrument:
@@ -11,7 +11,7 @@ description: |-
11
11
  (after optional shaping) is clipped for its contribution
12
12
  to the analog sum trigger.
13
13
  data:
14
- - type: double
14
+ - type: float64
15
15
  default: 0.0
16
16
  unit: mV
17
17
  allowed_range:
@@ -8,7 +8,7 @@ meta_schema_version: 0.1.0
8
8
  name: asum_offset
9
9
  description: Offset in time where shaping convolution is done.
10
10
  data:
11
- - type: double
11
+ - type: float64
12
12
  default: 0.0
13
13
  unit: ns
14
14
  allowed_range:
@@ -10,7 +10,7 @@ description: |-
10
10
  The amplitude level above which an analog sum leads to a telescope
11
11
  trigger.
12
12
  data:
13
- - type: double
13
+ - type: float64
14
14
  default: 0.0
15
15
  unit: mV
16
16
  allowed_range:
@@ -16,7 +16,7 @@ short_description: |-
16
16
  Geometric offsets to be used in case that the azimuth, altitude,
17
17
  and optical axes do not intersect at the reference point.
18
18
  data:
19
- - type: double
19
+ - type: float64
20
20
  unit: cm
21
21
  default: 0.
22
22
  description: |-
@@ -24,7 +24,7 @@ data:
24
24
  (horizontal) altitude rotation axis. A positive value corresponds
25
25
  to an altitude axis towards the reflector. Altitude axis is on
26
26
  the optical axis, if the second parameter is zero.
27
- - type: double
27
+ - type: float64
28
28
  unit: cm
29
29
  default: 0.
30
30
  description: |-
@@ -10,7 +10,7 @@ description: |-
10
10
  Diameter of camera body (used to account for effects of shadowing).
11
11
  Flat-to-flat for square and hexagonal shapes.
12
12
  data:
13
- - type: double
13
+ - type: float64
14
14
  unit: cm
15
15
  default: 160.0
16
16
  allowed_range:
@@ -16,7 +16,7 @@ description: |-
16
16
  This shape is used only for the estimation of the shadowing.
17
17
  short_description: Camera body shape parameter (used to account for effects of shadowing).
18
18
  data:
19
- - type: uint
19
+ - type: uint64
20
20
  unit: dimensionless
21
21
  default: 0
22
22
  allowed_range:
@@ -12,7 +12,7 @@ description: |-
12
12
  the given angle.
13
13
  short_description: Camera rotation angle.
14
14
  data:
15
- - type: double
15
+ - type: float64
16
16
  unit: deg
17
17
  instrument:
18
18
  class: Camera
@@ -15,7 +15,7 @@ description: |-
15
15
  short_description: |-
16
16
  Camera efficiency degradation factor (wavelength independent).
17
17
  data:
18
- - type: double
18
+ - type: float64
19
19
  unit: dimensionless
20
20
  default: 1.
21
21
  allowed_range:
@@ -12,7 +12,7 @@ description: |-
12
12
  and the camera depth.
13
13
  short_description: Depth of the camera body (used to account for effects of shadowing).
14
14
  data:
15
- - type: double
15
+ - type: float64
16
16
  unit: cm
17
17
  default: 0.
18
18
  allowed_range:
@@ -10,7 +10,7 @@ description: Number of pixels in the camera.
10
10
  developer_note: |-
11
11
  Max limit depend on sim_telarray pre-compiler settings
12
12
  data:
13
- - type: uint
13
+ - type: uint64
14
14
  default: 1
15
15
  allowed_range:
16
16
  min: 1
@@ -14,7 +14,7 @@ short_description: |-
14
14
  Global wavelength-independent transmission factor of the camera,
15
15
  including any plexiglass window.
16
16
  data:
17
- - type: double
17
+ - type: float64
18
18
  default: 1.0
19
19
  allowed_range:
20
20
  min: 0.01
@@ -11,7 +11,7 @@ description: |-
11
11
  Potentially useful for cross-talk calculations.
12
12
  short_description: Number of channels per readout chip.
13
13
  data:
14
- - type: uint
14
+ - type: uint64
15
15
  unit: dimensionless
16
16
  default: 4
17
17
  allowed_range:
@@ -11,7 +11,7 @@ description: |-
11
11
  instrument:
12
12
  class: configuration_corsika
13
13
  data:
14
- - type: int
14
+ - type: int64
15
15
  unit: MB
16
16
  default: 1000
17
17
  activity:
@@ -15,7 +15,7 @@ description: |-
15
15
  instrument:
16
16
  class: configuration_corsika
17
17
  data:
18
- - type: int
18
+ - type: int64
19
19
  unit: dimensionless
20
20
  default: 1000000
21
21
  activity:
@@ -16,7 +16,7 @@ description: |-
16
16
  instrument:
17
17
  class: configuration_corsika
18
18
  data:
19
- - type: int
19
+ - type: int64
20
20
  unit: dimensionless
21
21
  default: 15000000
22
22
  activity:
@@ -11,7 +11,7 @@ description: |-
11
11
  This should be lower than the lowest altitude of any telescope.
12
12
  short_description: Observation altitude above see level assumed in the air-shower code.
13
13
  data:
14
- - type: double
14
+ - type: float64
15
15
  unit: m
16
16
  allowed_range:
17
17
  min: 0.0
@@ -11,7 +11,7 @@ description: |-
11
11
  short_description: |-
12
12
  Pedestal events at start of run closed lid.
13
13
  data:
14
- - type: int
14
+ - type: int64
15
15
  unit: dimensionless
16
16
  default: 0
17
17
  allowed_range:
@@ -12,7 +12,7 @@ description: |-
12
12
  FADC signals.
13
13
  short_description: Number of time bins used for the discriminator simulation.
14
14
  data:
15
- - type: uint
15
+ - type: uint64
16
16
  unit: dimensionless
17
17
  default: 20
18
18
  allowed_range:
@@ -14,7 +14,7 @@ short_description: |-
14
14
  Number of time bins by which the discriminator simulation is ahead of
15
15
  the FADC readout.
16
16
  data:
17
- - type: uint
17
+ - type: uint64
18
18
  unit: dimensionless
19
19
  default: 0
20
20
  allowed_range:
@@ -24,7 +24,7 @@ instrument:
24
24
  - SSTS
25
25
  - SCTS
26
26
  data:
27
- - type: double
27
+ - type: float64
28
28
  unit: mV
29
29
  default: 1.0
30
30
  condition: default_trigger==AnalogSum or default_trigger==Majority
@@ -22,7 +22,7 @@ instrument:
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
25
- - type: double
25
+ - type: float64
26
26
  unit: ns
27
27
  default: 1.0
28
28
  condition: default_trigger==Majority
@@ -22,7 +22,7 @@ instrument:
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
25
- - type: double
25
+ - type: float64
26
26
  unit: ns
27
27
  default: 2.0
28
28
  condition: default_trigger==Majority
@@ -21,7 +21,7 @@ instrument:
21
21
  - SSTS
22
22
  - SCTS
23
23
  data:
24
- - type: double
24
+ - type: float64
25
25
  unit: mV
26
26
  default: 0.0
27
27
  condition: default_trigger==Majority
@@ -22,7 +22,7 @@ instrument:
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
25
- - type: double
25
+ - type: float64
26
26
  unit: mV
27
27
  default: 42.0
28
28
  condition: default_trigger==Majority
@@ -22,7 +22,7 @@ instrument:
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
25
- - type: double
25
+ - type: float64
26
26
  unit: pct
27
27
  default: 10.0
28
28
  condition: default_trigger==Majority
@@ -14,7 +14,7 @@ short_description: |-
14
14
  Rise time of the discriminator output. The output signal rises linearly
15
15
  within time frame.
16
16
  data:
17
- - type: double
17
+ - type: float64
18
18
  unit: ns
19
19
  default: 1.0
20
20
  condition: default_trigger==Majority
@@ -11,7 +11,7 @@ description: |-
11
11
  and its variations.
12
12
  short_description: Discriminator/comparator threshold scale factor.
13
13
  data:
14
- - type: double
14
+ - type: float64
15
15
  default: 1.0
16
16
  unit: dimensionless
17
17
  allowed_range:
@@ -17,7 +17,7 @@ description: |-
17
17
  accordingly.
18
18
  short_description: Integrated signal required over threshold.
19
19
  data:
20
- - type: double
20
+ - type: float64
21
21
  unit: mV * ns
22
22
  condition: default_trigger==Majority
23
23
  default: 0.0
@@ -8,7 +8,7 @@ meta_schema_version: 0.1.0
8
8
  name: discriminator_threshold
9
9
  description: Discriminator/comparator threshold.
10
10
  data:
11
- - type: double
11
+ - type: float64
12
12
  unit: mV
13
13
  default: 4.0
14
14
  allowed_range:
@@ -17,7 +17,7 @@ description: |-
17
17
  short_description: Time over threshold required before logic response switches to
18
18
  true.
19
19
  data:
20
- - type: double
20
+ - type: float64
21
21
  unit: ns
22
22
  default: 1.5
23
23
  condition: default_trigger==Majority
@@ -12,7 +12,7 @@ description: |-
12
12
  discriminator_var_time_over_threshold.
13
13
  short_description: Variation of gate length (Gaussian r.m.s).
14
14
  data:
15
- - type: double
15
+ - type: float64
16
16
  unit: ns
17
17
  default: 0.1
18
18
  condition: default_trigger==Majority
@@ -14,7 +14,7 @@ description: |-
14
14
  Gaussian r.m.s. spread of discriminator_sigsum_over_threshold
15
15
  (Pixel-to-pixel variation).
16
16
  data:
17
- - type: double
17
+ - type: float64
18
18
  unit: mV * ns
19
19
  default: 0.0
20
20
  condition: default_trigger==Majority
@@ -11,7 +11,7 @@ description: |-
11
11
  discriminator/comparator threshold.
12
12
  short_description: Channel-to-channel variation of discriminator threshold.
13
13
  data:
14
- - type: double
14
+ - type: float64
15
15
  unit: mV
16
16
  default: 0.2
17
17
  condition: default_trigger==Majority
@@ -10,7 +10,7 @@ description: |-
10
10
  Pixel-to-pixel variation of the time over threshold required before logic
11
11
  response switches to true.
12
12
  data:
13
- - type: double
13
+ - type: float64
14
14
  unit: ns
15
15
  default: 0.1
16
16
  condition: default_trigger==Majority
@@ -15,7 +15,7 @@ description: |-
15
15
  intermediate shapes between parabolic and Davies-Cotton.
16
16
  short_description: Dish curvature length, best equal to focal length.
17
17
  data:
18
- - type: double
18
+ - type: float64
19
19
  unit: cm
20
20
  default: 0.0
21
21
  allowed_range:
@@ -13,7 +13,7 @@ description: |-
13
13
  short_description: Amplitude level at which the digitized signal from each pixel is
14
14
  clipped.
15
15
  data:
16
- - type: int
16
+ - type: int64
17
17
  default: 0
18
18
  unit: count
19
19
  allowed_range:
@@ -13,7 +13,7 @@ description: |-
13
13
  gets applied.
14
14
  short_description: FADC signal minimum contribution to digital signal sum.
15
15
  data:
16
- - type: uint
16
+ - type: uint64
17
17
  unit: count
18
18
  default: 0
19
19
  condition: default_trigger==DigitalSum
@@ -12,7 +12,7 @@ description: |-
12
12
  shaping of missing outside signals are not used for trigger evaluation.
13
13
  short_description: Time offset applied before signal processing.
14
14
  data:
15
- - type: double
15
+ - type: float64
16
16
  unit: ns
17
17
  default: 0.0
18
18
  allowed_range:
@@ -14,7 +14,7 @@ description: |-
14
14
  Any such clipping is usually not a good idea, with FADC maximum
15
15
  value defined by fadc_max_signal anyway.
16
16
  data:
17
- - type: uint
17
+ - type: uint64
18
18
  unit: count
19
19
  default: 0
20
20
  condition: default_trigger==DigitalSum
@@ -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: uint
18
+ - type: uint64
19
19
  description: multiplier
20
20
  default: 0
21
21
  unit: dimensionless
22
22
  condition: default_trigger==DigitalSum
23
- - type: uint
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: uint
16
+ - type: uint64
17
17
  unit: dimensionless
18
18
  default: 0
19
19
  condition: default_trigger==DigitalSum
@@ -19,7 +19,7 @@ short_description: |-
19
19
  After a patch-wise pre-summation, the resulting sum may be
20
20
  right-shifted to reduce the significant number of bits.
21
21
  data:
22
- - type: uint
22
+ - type: uint64
23
23
  unit: dimensionless
24
24
  default: 0
25
25
  allowed_range:
@@ -17,7 +17,7 @@ description: |-
17
17
  short_description: Amplitude level above which a digital sum leads to a telescope
18
18
  trigger.
19
19
  data:
20
- - type: double
20
+ - type: float64
21
21
  unit: count
22
22
  default: 0.0
23
23
  allowed_range:
@@ -16,7 +16,7 @@ description: |-
16
16
  for the final digital sum.
17
17
  short_description: Clipping of negative shaped signals.
18
18
  data:
19
- - type: int
19
+ - type: int64
20
20
  unit: dimensionless
21
21
  default: 0
22
22
  allowed_range:
@@ -35,7 +35,7 @@ short_description: |-
35
35
  data:
36
36
  - description: |-
37
37
  Mean effective length for all directions of incidence.
38
- type: double
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: double
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: double
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: double
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: double
69
+ type: float64
70
70
  unit: cm
71
71
  default: 0.0
72
72
  instrument:
@@ -14,7 +14,7 @@ description: |-
14
14
  system, and Earth ellipsoids at the site.
15
15
  short_description: Site EPSG code
16
16
  data:
17
- - type: int
17
+ - type: int64
18
18
  unit: dimensionless
19
19
  allowed_range:
20
20
  min: 1024
@@ -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: double
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
  FADC bins read out.
15
15
  short_description: Number of FADC bins to be simulated.
16
16
  data:
17
- - type: uint
17
+ - type: uint64
18
18
  unit: dimensionless
19
19
  default: 20
20
20
  allowed_range:
@@ -22,7 +22,7 @@ description: |-
22
22
  they are clipped at zero.
23
23
  short_description: Emulation of FADC pedestal compensation.
24
24
  data:
25
- - type: int
25
+ - type: int64
26
26
  unit: dimensionless
27
27
  default: -1
28
28
  allowed_range:
@@ -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: double
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).
@@ -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: double
17
+ - type: float64
18
18
  unit: dimensionless
19
19
  default: 0.
20
20
  allowed_range:
@@ -21,7 +21,7 @@ short_description: |-
21
21
  Assumed error in initial calibration of pedestal
22
22
  (affects only the reported pedestal).
23
23
  data:
24
- - type: double
24
+ - type: float64
25
25
  default: 0.08
26
26
  description: |-
27
27
  Error in pedestal calibration