gammasimtools 0.14.0__py3-none-any.whl → 0.16.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 (223) hide show
  1. {gammasimtools-0.14.0.dist-info → gammasimtools-0.16.0.dist-info}/METADATA +2 -32
  2. {gammasimtools-0.14.0.dist-info → gammasimtools-0.16.0.dist-info}/RECORD +222 -214
  3. {gammasimtools-0.14.0.dist-info → gammasimtools-0.16.0.dist-info}/WHEEL +1 -1
  4. {gammasimtools-0.14.0.dist-info → gammasimtools-0.16.0.dist-info}/entry_points.txt +5 -2
  5. simtools/_version.py +2 -2
  6. simtools/applications/calculate_trigger_rate.py +10 -10
  7. simtools/applications/convert_all_model_parameters_from_simtel.py +16 -16
  8. simtools/applications/convert_model_parameter_from_simtel.py +1 -1
  9. simtools/applications/derive_psf_parameters.py +12 -9
  10. simtools/applications/docs_produce_array_element_report.py +3 -3
  11. simtools/applications/docs_produce_calibration_reports.py +49 -0
  12. simtools/applications/docs_produce_simulation_configuration_report.py +50 -0
  13. simtools/applications/{generate_simtel_array_histograms.py → generate_sim_telarray_histograms.py} +2 -2
  14. simtools/applications/production_derive_corsika_limits.py +63 -10
  15. simtools/applications/production_derive_statistics.py +125 -0
  16. simtools/applications/production_generate_grid.py +197 -0
  17. simtools/applications/production_generate_simulation_config.py +0 -10
  18. simtools/applications/simulate_light_emission.py +5 -13
  19. simtools/applications/simulate_prod.py +16 -4
  20. simtools/applications/validate_cumulative_psf.py +6 -4
  21. simtools/applications/validate_file_using_schema.py +7 -3
  22. simtools/applications/validate_optics.py +5 -4
  23. simtools/camera/camera_efficiency.py +14 -39
  24. simtools/configuration/commandline_parser.py +4 -3
  25. simtools/configuration/configurator.py +10 -0
  26. simtools/corsika/corsika_config.py +103 -5
  27. simtools/data_model/format_checkers.py +9 -0
  28. simtools/data_model/model_data_writer.py +3 -0
  29. simtools/data_model/schema.py +27 -16
  30. simtools/data_model/validate_data.py +27 -7
  31. simtools/db/db_handler.py +10 -4
  32. simtools/layout/array_layout.py +1 -0
  33. simtools/model/array_model.py +63 -29
  34. simtools/model/model_parameter.py +76 -51
  35. simtools/model/model_utils.py +43 -1
  36. simtools/model/site_model.py +3 -2
  37. simtools/model/telescope_model.py +4 -4
  38. simtools/production_configuration/calculate_statistical_errors_grid_point.py +0 -4
  39. simtools/production_configuration/{event_scaler.py → derive_production_statistics.py} +24 -20
  40. simtools/production_configuration/derive_production_statistics_handler.py +119 -0
  41. simtools/production_configuration/generate_production_grid.py +364 -0
  42. simtools/production_configuration/generate_simulation_config.py +9 -9
  43. simtools/production_configuration/interpolation_handler.py +16 -11
  44. simtools/ray_tracing/mirror_panel_psf.py +16 -20
  45. simtools/ray_tracing/psf_analysis.py +2 -2
  46. simtools/ray_tracing/ray_tracing.py +5 -1
  47. simtools/reporting/docs_read_parameters.py +361 -58
  48. simtools/runners/corsika_runner.py +11 -1
  49. simtools/runners/corsika_simtel_runner.py +80 -89
  50. simtools/runners/runner_services.py +17 -4
  51. simtools/runners/simtel_runner.py +27 -10
  52. simtools/schemas/model_parameter.metaschema.yml +4 -0
  53. simtools/schemas/model_parameter_and_data_schema.metaschema.yml +1 -0
  54. simtools/schemas/model_parameters/adjust_gain.schema.yml +2 -2
  55. simtools/schemas/model_parameters/array_element_position_ground.schema.yml +2 -2
  56. simtools/schemas/model_parameters/array_element_position_utm.schema.yml +2 -2
  57. simtools/schemas/model_parameters/array_window.schema.yml +2 -2
  58. simtools/schemas/model_parameters/asum_offset.schema.yml +2 -2
  59. simtools/schemas/model_parameters/asum_shaping.schema.yml +2 -2
  60. simtools/schemas/model_parameters/asum_threshold.schema.yml +2 -2
  61. simtools/schemas/model_parameters/axes_offsets.schema.yml +2 -2
  62. simtools/schemas/model_parameters/camera_body_diameter.schema.yml +2 -2
  63. simtools/schemas/model_parameters/camera_body_shape.schema.yml +2 -2
  64. simtools/schemas/model_parameters/camera_config_file.schema.yml +2 -2
  65. simtools/schemas/model_parameters/camera_config_rotate.schema.yml +2 -2
  66. simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml +2 -2
  67. simtools/schemas/model_parameters/camera_degraded_map.schema.yml +2 -2
  68. simtools/schemas/model_parameters/camera_depth.schema.yml +2 -2
  69. simtools/schemas/model_parameters/camera_filter.schema.yml +2 -2
  70. simtools/schemas/model_parameters/camera_pixels.schema.yml +2 -2
  71. simtools/schemas/model_parameters/camera_transmission.schema.yml +2 -2
  72. simtools/schemas/model_parameters/channels_per_chip.schema.yml +2 -2
  73. simtools/schemas/model_parameters/correct_nsb_spectrum_to_telescope_altitude.schema.yml +2 -2
  74. simtools/schemas/model_parameters/corsika_starting_grammage.schema.yml +90 -1
  75. simtools/schemas/model_parameters/default_trigger.schema.yml +2 -2
  76. simtools/schemas/model_parameters/design_model.schema.yml +2 -2
  77. simtools/schemas/model_parameters/disc_ac_coupled.schema.yml +2 -2
  78. simtools/schemas/model_parameters/disc_bins.schema.yml +2 -2
  79. simtools/schemas/model_parameters/disc_start.schema.yml +2 -2
  80. simtools/schemas/model_parameters/discriminator_amplitude.schema.yml +2 -2
  81. simtools/schemas/model_parameters/discriminator_fall_time.schema.yml +2 -2
  82. simtools/schemas/model_parameters/discriminator_gate_length.schema.yml +2 -2
  83. simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml +2 -2
  84. simtools/schemas/model_parameters/discriminator_output_amplitude.schema.yml +2 -2
  85. simtools/schemas/model_parameters/discriminator_output_var_percent.schema.yml +2 -2
  86. simtools/schemas/model_parameters/discriminator_pulse_shape.schema.yml +2 -2
  87. simtools/schemas/model_parameters/discriminator_rise_time.schema.yml +2 -2
  88. simtools/schemas/model_parameters/discriminator_scale_threshold.schema.yml +2 -2
  89. simtools/schemas/model_parameters/discriminator_sigsum_over_threshold.schema.yml +2 -2
  90. simtools/schemas/model_parameters/discriminator_threshold.schema.yml +2 -2
  91. simtools/schemas/model_parameters/discriminator_time_over_threshold.schema.yml +2 -2
  92. simtools/schemas/model_parameters/discriminator_var_gate_length.schema.yml +2 -2
  93. simtools/schemas/model_parameters/discriminator_var_sigsum_over_threshold.schema.yml +2 -2
  94. simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml +2 -2
  95. simtools/schemas/model_parameters/discriminator_var_time_over_threshold.schema.yml +2 -2
  96. simtools/schemas/model_parameters/dish_shape_length.schema.yml +2 -2
  97. simtools/schemas/model_parameters/dsum_clipping.schema.yml +2 -2
  98. simtools/schemas/model_parameters/dsum_ignore_below.schema.yml +2 -2
  99. simtools/schemas/model_parameters/dsum_offset.schema.yml +2 -2
  100. simtools/schemas/model_parameters/dsum_pedsub.schema.yml +2 -2
  101. simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml +2 -2
  102. simtools/schemas/model_parameters/dsum_prescale.schema.yml +2 -2
  103. simtools/schemas/model_parameters/dsum_presum_max.schema.yml +2 -2
  104. simtools/schemas/model_parameters/dsum_presum_shift.schema.yml +2 -2
  105. simtools/schemas/model_parameters/dsum_shaping.schema.yml +2 -2
  106. simtools/schemas/model_parameters/dsum_shaping_renormalize.schema.yml +2 -2
  107. simtools/schemas/model_parameters/dsum_threshold.schema.yml +3 -3
  108. simtools/schemas/model_parameters/dsum_zero_clip.schema.yml +2 -2
  109. simtools/schemas/model_parameters/effective_focal_length.schema.yml +2 -2
  110. simtools/schemas/model_parameters/fadc_ac_coupled.schema.yml +2 -2
  111. simtools/schemas/model_parameters/fadc_amplitude.schema.yml +2 -2
  112. simtools/schemas/model_parameters/fadc_bins.schema.yml +2 -2
  113. simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml +2 -2
  114. simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml +2 -2
  115. simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml +2 -2
  116. simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml +2 -2
  117. simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml +2 -2
  118. simtools/schemas/model_parameters/fadc_lg_err_compensate_pedestal.schema.yml +2 -2
  119. simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml +2 -2
  120. simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml +2 -2
  121. simtools/schemas/model_parameters/fadc_lg_noise.schema.yml +2 -2
  122. simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml +2 -2
  123. simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml +2 -2
  124. simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml +2 -2
  125. simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml +2 -2
  126. simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml +2 -2
  127. simtools/schemas/model_parameters/fadc_max_signal.schema.yml +2 -2
  128. simtools/schemas/model_parameters/fadc_mhz.schema.yml +2 -2
  129. simtools/schemas/model_parameters/fadc_noise.schema.yml +2 -2
  130. simtools/schemas/model_parameters/fadc_pedestal.schema.yml +2 -2
  131. simtools/schemas/model_parameters/fadc_pulse_shape.schema.yml +2 -2
  132. simtools/schemas/model_parameters/fadc_sensitivity.schema.yml +2 -2
  133. simtools/schemas/model_parameters/fadc_sum_bins.schema.yml +2 -2
  134. simtools/schemas/model_parameters/fadc_sum_offset.schema.yml +2 -2
  135. simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml +2 -2
  136. simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml +2 -2
  137. simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml +2 -2
  138. simtools/schemas/model_parameters/fake_mirror_list.schema.yml +1 -1
  139. simtools/schemas/model_parameters/flatfielding.schema.yml +2 -2
  140. simtools/schemas/model_parameters/focal_length.schema.yml +2 -2
  141. simtools/schemas/model_parameters/focus_offset.schema.yml +2 -2
  142. simtools/schemas/model_parameters/gain_variation.schema.yml +2 -2
  143. simtools/schemas/model_parameters/hg_lg_variation.schema.yml +2 -2
  144. simtools/schemas/model_parameters/iobuf_maximum.schema.yml +2 -2
  145. simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml +2 -2
  146. simtools/schemas/model_parameters/laser_events.schema.yml +1 -1
  147. simtools/schemas/model_parameters/lightguide_efficiency_vs_incidence_angle.schema.yml +2 -2
  148. simtools/schemas/model_parameters/lightguide_efficiency_vs_wavelength.schema.yml +2 -2
  149. simtools/schemas/model_parameters/min_photoelectrons.schema.yml +2 -2
  150. simtools/schemas/model_parameters/min_photons.schema.yml +2 -2
  151. simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml +2 -2
  152. simtools/schemas/model_parameters/mirror_align_random_horizontal.schema.yml +2 -2
  153. simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml +2 -2
  154. simtools/schemas/model_parameters/mirror_class.schema.yml +2 -2
  155. simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml +2 -2
  156. simtools/schemas/model_parameters/mirror_focal_length.schema.yml +2 -2
  157. simtools/schemas/model_parameters/mirror_list.schema.yml +2 -2
  158. simtools/schemas/model_parameters/mirror_offset.schema.yml +2 -2
  159. simtools/schemas/model_parameters/mirror_reflection_random_angle.schema.yml +2 -2
  160. simtools/schemas/model_parameters/mirror_reflectivity.schema.yml +2 -2
  161. simtools/schemas/model_parameters/multiplicity_offset.schema.yml +2 -2
  162. simtools/schemas/model_parameters/muon_mono_threshold.schema.yml +2 -2
  163. simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml +2 -2
  164. simtools/schemas/model_parameters/nsb_offaxis.schema.yml +2 -2
  165. simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml +2 -2
  166. simtools/schemas/model_parameters/num_gains.schema.yml +2 -2
  167. simtools/schemas/model_parameters/only_triggered_telescopes.schema.yml +2 -2
  168. simtools/schemas/model_parameters/optics_properties.schema.yml +2 -2
  169. simtools/schemas/model_parameters/pedestal_events.schema.yml +7 -3
  170. simtools/schemas/model_parameters/photon_delay.schema.yml +2 -2
  171. simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml +2 -2
  172. simtools/schemas/model_parameters/pm_average_gain.schema.yml +2 -2
  173. simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml +2 -2
  174. simtools/schemas/model_parameters/pm_gain_index.schema.yml +2 -2
  175. simtools/schemas/model_parameters/pm_photoelectron_spectrum.schema.yml +2 -2
  176. simtools/schemas/model_parameters/pm_transit_time.schema.yml +2 -2
  177. simtools/schemas/model_parameters/pm_voltage_variation.schema.yml +2 -2
  178. simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml +2 -2
  179. simtools/schemas/model_parameters/qe_variation.schema.yml +2 -2
  180. simtools/schemas/model_parameters/quantum_efficiency.schema.yml +2 -2
  181. simtools/schemas/model_parameters/random_focal_length.schema.yml +2 -2
  182. simtools/schemas/model_parameters/random_generator.schema.yml +2 -2
  183. simtools/schemas/model_parameters/random_mono_probability.schema.yml +2 -2
  184. simtools/schemas/model_parameters/sampled_output.schema.yml +2 -2
  185. simtools/schemas/model_parameters/save_pe_with_amplitude.schema.yml +2 -2
  186. simtools/schemas/model_parameters/store_photoelectrons.schema.yml +2 -2
  187. simtools/schemas/model_parameters/tailcut_scale.schema.yml +2 -2
  188. simtools/schemas/model_parameters/telescope_axis_height.schema.yml +2 -2
  189. simtools/schemas/model_parameters/telescope_random_angle.schema.yml +2 -2
  190. simtools/schemas/model_parameters/telescope_random_error.schema.yml +2 -2
  191. simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml +2 -2
  192. simtools/schemas/model_parameters/telescope_transmission.schema.yml +2 -2
  193. simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml +2 -2
  194. simtools/schemas/model_parameters/teltrig_min_time.schema.yml +2 -2
  195. simtools/schemas/model_parameters/transit_time_calib_error.schema.yml +2 -2
  196. simtools/schemas/model_parameters/transit_time_compensate_error.schema.yml +2 -2
  197. simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml +2 -2
  198. simtools/schemas/model_parameters/transit_time_error.schema.yml +2 -2
  199. simtools/schemas/model_parameters/transit_time_jitter.schema.yml +2 -2
  200. simtools/schemas/model_parameters/trigger_current_limit.schema.yml +2 -2
  201. simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml +2 -2
  202. simtools/schemas/model_parameters/trigger_pixels.schema.yml +2 -2
  203. simtools/simtel/simtel_config_reader.py +21 -17
  204. simtools/simtel/simtel_config_writer.py +237 -65
  205. simtools/simtel/simtel_io_file_info.py +57 -0
  206. simtools/simtel/simtel_io_histogram.py +10 -14
  207. simtools/simtel/simtel_io_histograms.py +2 -2
  208. simtools/simtel/simtel_io_metadata.py +91 -0
  209. simtools/simtel/simulator_array.py +26 -12
  210. simtools/simtel/simulator_camera_efficiency.py +12 -6
  211. simtools/simtel/simulator_light_emission.py +6 -11
  212. simtools/simtel/simulator_ray_tracing.py +14 -4
  213. simtools/simulator.py +230 -66
  214. simtools/testing/configuration.py +12 -6
  215. simtools/testing/helpers.py +18 -0
  216. simtools/testing/sim_telarray_metadata.py +212 -0
  217. simtools/testing/validate_output.py +12 -5
  218. simtools/utils/general.py +18 -27
  219. simtools/utils/names.py +27 -5
  220. simtools/visualization/visualize.py +2 -2
  221. simtools/applications/production_scale_events.py +0 -185
  222. {gammasimtools-0.14.0.dist-info → gammasimtools-0.16.0.dist-info}/licenses/LICENSE +0 -0
  223. {gammasimtools-0.14.0.dist-info → gammasimtools-0.16.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,93 @@
1
- %YAML 1.2
1
+ ---
2
+ title: Schema for corsika_starting_grammage model parameter
3
+ version: 0.3.0
4
+ meta_schema: simpipe-schema
5
+ meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
6
+ meta_schema_version: 0.1.0
7
+ name: corsika_starting_grammage
8
+ description: |-
9
+ Starting altitude of the primary particle in mass overburden for all showers.
10
+ This parameter should be set to values other than '0.' for specialized studies
11
+ only. See CORSIKA manual for details.
12
+ instrument:
13
+ class: configuration_corsika
14
+ data:
15
+ - type: dict
16
+ json_schema:
17
+ type: array
18
+ items:
19
+ type: object
20
+ properties:
21
+ instrument:
22
+ type: string
23
+ default: null
24
+ description: "Instrument name."
25
+ primary_particle:
26
+ type: string
27
+ format: common_particle_name
28
+ default: "default"
29
+ description: "Primary particle type."
30
+ value:
31
+ type: number
32
+ default: 0.0
33
+ minimum: 0.0
34
+ required:
35
+ - primary_particle
36
+ - value
37
+ additionalProperties: false
38
+ activity:
39
+ setting:
40
+ - SetParameterFromExternal
41
+ validation:
42
+ - ValidateParameterByExpert
43
+ source:
44
+ - Configuration
45
+ simulation_software:
46
+ - name: corsika
47
+ ...
48
+ ---
49
+ title: Schema for corsika_starting_grammage model parameter
50
+ version: 0.2.0
51
+ meta_schema: simpipe-schema
52
+ meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
53
+ meta_schema_version: 0.1.0
54
+ name: corsika_starting_grammage
55
+ description: |-
56
+ Starting altitude of the primary particle in mass overburden for all showers.
57
+ This parameter should be set to values other than '0.' for specialized studies
58
+ only. See CORSIKA manual for details.
59
+ instrument:
60
+ class: configuration_corsika
61
+ data:
62
+ - type: dict
63
+ json_schema:
64
+ type: array
65
+ items:
66
+ type: object
67
+ properties:
68
+ primary_particle:
69
+ type: string
70
+ format: common_particle_name
71
+ default: "default"
72
+ description: "Primary particle type."
73
+ value:
74
+ type: number
75
+ default: 0.0
76
+ minimum: 0.0
77
+ required:
78
+ - primary_particle
79
+ - value
80
+ additionalProperties: false
81
+ activity:
82
+ setting:
83
+ - SetParameterFromExternal
84
+ validation:
85
+ - ValidateParameterByExpert
86
+ source:
87
+ - Configuration
88
+ simulation_software:
89
+ - name: corsika
90
+ ...
2
91
  ---
3
92
  title: Schema for corsika_starting_grammage model parameter
4
93
  version: 0.1.0
@@ -20,8 +20,8 @@ instrument:
20
20
  type:
21
21
  - LSTN
22
22
  - LSTS
23
- - MSTN
24
- - MSTS
23
+ - MSTx-NectarCam
24
+ - MSTx-FlashCam
25
25
  - SSTS
26
26
  - SCTS
27
27
  activity:
@@ -16,8 +16,8 @@ instrument:
16
16
  type:
17
17
  - LSTN
18
18
  - LSTS
19
- - MSTN
20
- - MSTS
19
+ - MSTx-NectarCam
20
+ - MSTx-FlashCam
21
21
  - SSTS
22
22
  - SCTS
23
23
  activity:
@@ -16,8 +16,8 @@ instrument:
16
16
  type:
17
17
  - LSTN
18
18
  - LSTS
19
- - MSTN
20
- - MSTS
19
+ - MSTx-NectarCam
20
+ - MSTx-FlashCam
21
21
  - SSTS
22
22
  - SCTS
23
23
  activity:
@@ -23,8 +23,8 @@ instrument:
23
23
  type:
24
24
  - LSTN
25
25
  - LSTS
26
- - MSTN
27
- - MSTS
26
+ - MSTx-NectarCam
27
+ - MSTx-FlashCam
28
28
  - SSTS
29
29
  - SCTS
30
30
  activity:
@@ -25,8 +25,8 @@ instrument:
25
25
  type:
26
26
  - LSTN
27
27
  - LSTS
28
- - MSTN
29
- - MSTS
28
+ - MSTx-NectarCam
29
+ - MSTx-FlashCam
30
30
  - SSTS
31
31
  - SCTS
32
32
  activity:
@@ -19,8 +19,8 @@ instrument:
19
19
  type:
20
20
  - LSTN
21
21
  - LSTS
22
- - MSTN
23
- - MSTS
22
+ - MSTx-NectarCam
23
+ - MSTx-FlashCam
24
24
  - SSTS
25
25
  - SCTS
26
26
  data:
@@ -17,8 +17,8 @@ instrument:
17
17
  type:
18
18
  - LSTN
19
19
  - LSTS
20
- - MSTN
21
- - MSTS
20
+ - MSTx-NectarCam
21
+ - MSTx-FlashCam
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
@@ -17,8 +17,8 @@ instrument:
17
17
  type:
18
18
  - LSTN
19
19
  - LSTS
20
- - MSTN
21
- - MSTS
20
+ - MSTx-NectarCam
21
+ - MSTx-FlashCam
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
@@ -16,8 +16,8 @@ instrument:
16
16
  type:
17
17
  - LSTN
18
18
  - LSTS
19
- - MSTN
20
- - MSTS
19
+ - MSTx-NectarCam
20
+ - MSTx-FlashCam
21
21
  - SSTS
22
22
  - SCTS
23
23
  data:
@@ -17,8 +17,8 @@ instrument:
17
17
  type:
18
18
  - LSTN
19
19
  - LSTS
20
- - MSTN
21
- - MSTS
20
+ - MSTx-NectarCam
21
+ - MSTx-FlashCam
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
@@ -17,8 +17,8 @@ instrument:
17
17
  type:
18
18
  - LSTN
19
19
  - LSTS
20
- - MSTN
21
- - MSTS
20
+ - MSTx-NectarCam
21
+ - MSTx-FlashCam
22
22
  - SSTS
23
23
  - SCTS
24
24
  data:
@@ -17,8 +17,8 @@ instrument:
17
17
  type:
18
18
  - LSTN
19
19
  - LSTS
20
- - MSTN
21
- - MSTS
20
+ - MSTx-NectarCam
21
+ - MSTx-FlashCam
22
22
  - SSTS
23
23
  - SCTS
24
24
  activity:
@@ -26,8 +26,8 @@ instrument:
26
26
  type:
27
27
  - LSTN
28
28
  - LSTS
29
- - MSTN
30
- - MSTS
29
+ - MSTx-NectarCam
30
+ - MSTx-FlashCam
31
31
  - SSTS
32
32
  - SCTS
33
33
  activity:
@@ -22,8 +22,8 @@ instrument:
22
22
  type:
23
23
  - LSTN
24
24
  - LSTS
25
- - MSTN
26
- - MSTS
25
+ - MSTx-NectarCam
26
+ - MSTx-FlashCam
27
27
  - SSTS
28
28
  - SCTS
29
29
  activity:
@@ -28,8 +28,8 @@ instrument:
28
28
  type:
29
29
  - LSTN
30
30
  - LSTS
31
- - MSTN
32
- - MSTS
31
+ - MSTx-NectarCam
32
+ - MSTx-FlashCam
33
33
  - SSTS
34
34
  - SCTS
35
35
  activity:
@@ -19,8 +19,8 @@ instrument:
19
19
  type:
20
20
  - LSTN
21
21
  - LSTS
22
- - MSTN
23
- - MSTS
22
+ - MSTx-NectarCam
23
+ - MSTx-FlashCam
24
24
  - SSTS
25
25
  - SCTS
26
26
  activity:
@@ -29,8 +29,8 @@ instrument:
29
29
  type:
30
30
  - LSTN
31
31
  - LSTS
32
- - MSTN
33
- - MSTS
32
+ - MSTx-NectarCam
33
+ - MSTx-FlashCam
34
34
  - SSTS
35
35
  - SCTS
36
36
  activity:
@@ -24,8 +24,8 @@ instrument:
24
24
  type:
25
25
  - LSTN
26
26
  - LSTS
27
- - MSTN
28
- - MSTS
27
+ - MSTx-NectarCam
28
+ - MSTx-FlashCam
29
29
  - SSTS
30
30
  - SCTS
31
31
  activity:
@@ -25,8 +25,8 @@ instrument:
25
25
  type:
26
26
  - LSTN
27
27
  - LSTS
28
- - MSTN
29
- - MSTS
28
+ - MSTx-NectarCam
29
+ - MSTx-FlashCam
30
30
  - SSTS
31
31
  - SCTS
32
32
  activity:
@@ -22,8 +22,8 @@ instrument:
22
22
  type:
23
23
  - LSTN
24
24
  - LSTS
25
- - MSTN
26
- - MSTS
25
+ - MSTx-NectarCam
26
+ - MSTx-FlashCam
27
27
  - SSTS
28
28
  - SCTS
29
29
  activity:
@@ -22,8 +22,8 @@ instrument:
22
22
  type:
23
23
  - LSTN
24
24
  - LSTS
25
- - MSTN
26
- - MSTS
25
+ - MSTx-NectarCam
26
+ - MSTx-FlashCam
27
27
  - SSTS
28
28
  - SCTS
29
29
  activity:
@@ -27,8 +27,8 @@ instrument:
27
27
  type:
28
28
  - LSTN
29
29
  - LSTS
30
- - MSTN
31
- - MSTS
30
+ - MSTx-NectarCam
31
+ - MSTx-FlashCam
32
32
  activity:
33
33
  setting:
34
34
  - SetParameterFromExternal
@@ -22,8 +22,8 @@ data:
22
22
  instrument:
23
23
  class: Camera
24
24
  type:
25
- - MSTN
26
- - MSTS
25
+ - MSTx-NectarCam
26
+ - MSTx-FlashCam
27
27
  activity:
28
28
  setting:
29
29
  - SetParameterFromExternal
@@ -22,8 +22,8 @@ data:
22
22
  instrument:
23
23
  class: Camera
24
24
  type:
25
- - MSTN
26
- - MSTS
25
+ - MSTx-NectarCam
26
+ - MSTx-FlashCam
27
27
  activity:
28
28
  setting:
29
29
  - SetParameterFromExternal
@@ -21,8 +21,8 @@ data:
21
21
  instrument:
22
22
  class: Camera
23
23
  type:
24
- - MSTN
25
- - MSTS
24
+ - MSTx-NectarCam
25
+ - MSTx-FlashCam
26
26
  activity:
27
27
  setting:
28
28
  - SetParameterFromExternal
@@ -18,8 +18,8 @@ data:
18
18
  instrument:
19
19
  class: Camera
20
20
  type:
21
- - MSTN
22
- - MSTS
21
+ - MSTx-NectarCam
22
+ - MSTx-FlashCam
23
23
  activity:
24
24
  setting:
25
25
  - SetParameterFromExternal
@@ -23,8 +23,8 @@ data:
23
23
  instrument:
24
24
  class: Camera
25
25
  type:
26
- - MSTN
27
- - MSTS
26
+ - MSTx-NectarCam
27
+ - MSTx-FlashCam
28
28
  activity:
29
29
  setting:
30
30
  - SetParameterFromExternal
@@ -28,8 +28,8 @@ data:
28
28
  instrument:
29
29
  class: Camera
30
30
  type:
31
- - MSTN
32
- - MSTS
31
+ - MSTx-NectarCam
32
+ - MSTx-FlashCam
33
33
  activity:
34
34
  setting:
35
35
  - SetParameterFromExternal
@@ -22,8 +22,8 @@ data:
22
22
  instrument:
23
23
  class: Camera
24
24
  type:
25
- - MSTN
26
- - MSTS
25
+ - MSTx-NectarCam
26
+ - MSTx-FlashCam
27
27
  activity:
28
28
  setting:
29
29
  - SetParameterFromExternal
@@ -29,8 +29,8 @@ data:
29
29
  instrument:
30
30
  class: Camera
31
31
  type:
32
- - MSTN
33
- - MSTS
32
+ - MSTx-NectarCam
33
+ - MSTx-FlashCam
34
34
  activity:
35
35
  setting:
36
36
  - SetParameterFromExternal
@@ -28,8 +28,8 @@ data:
28
28
  instrument:
29
29
  class: Camera
30
30
  type:
31
- - MSTN
32
- - MSTS
31
+ - MSTx-NectarCam
32
+ - MSTx-FlashCam
33
33
  activity:
34
34
  setting:
35
35
  - SetParameterFromExternal
@@ -16,8 +16,8 @@ data:
16
16
  instrument:
17
17
  class: Camera
18
18
  type:
19
- - MSTN
20
- - MSTS
19
+ - MSTx-NectarCam
20
+ - MSTx-FlashCam
21
21
  activity:
22
22
  setting:
23
23
  - SetParameterFromExternal
@@ -12,7 +12,7 @@ description: |-
12
12
  Note that, like for discriminator/comparator and analog sum, the signal
13
13
  must exceed (\'>\') the threshold here before we declare the telescope
14
14
  triggered. The assigned threshold value would have to be one count lower
15
- than in a camera-internal trigger implementation (like MSTS) where
15
+ than in a camera-internal trigger implementation (like MSTx-FlashCam) where
16
16
  reaching (\'>=\') the threshold is enough.
17
17
  short_description: Amplitude level above which a digital sum leads to a telescope
18
18
  trigger.
@@ -26,8 +26,8 @@ data:
26
26
  instrument:
27
27
  class: Camera
28
28
  type:
29
- - MSTN
30
- - MSTS
29
+ - MSTx-NectarCam
30
+ - MSTx-FlashCam
31
31
  activity:
32
32
  setting:
33
33
  - SetParameterFromExternal
@@ -26,8 +26,8 @@ data:
26
26
  instrument:
27
27
  class: Camera
28
28
  type:
29
- - MSTN
30
- - MSTS
29
+ - MSTx-NectarCam
30
+ - MSTx-FlashCam
31
31
  activity:
32
32
  setting:
33
33
  - SetParameterFromExternal
@@ -74,8 +74,8 @@ instrument:
74
74
  type:
75
75
  - LSTN
76
76
  - LSTS
77
- - MSTN
78
- - MSTS
77
+ - MSTx-NectarCam
78
+ - MSTx-FlashCam
79
79
  - SSTS
80
80
  - SCTS
81
81
  activity:
@@ -20,8 +20,8 @@ instrument:
20
20
  type:
21
21
  - LSTN
22
22
  - LSTS
23
- - MSTN
24
- - MSTS
23
+ - MSTx-NectarCam
24
+ - MSTx-FlashCam
25
25
  - SSTS
26
26
  - SCTS
27
27
  activity:
@@ -26,8 +26,8 @@ instrument:
26
26
  type:
27
27
  - LSTN
28
28
  - LSTS
29
- - MSTN
30
- - MSTS
29
+ - MSTx-NectarCam
30
+ - MSTx-FlashCam
31
31
  - SSTS
32
32
  - SCTS
33
33
  activity:
@@ -25,8 +25,8 @@ instrument:
25
25
  type:
26
26
  - LSTN
27
27
  - LSTS
28
- - MSTN
29
- - MSTS
28
+ - MSTx-NectarCam
29
+ - MSTx-FlashCam
30
30
  - SSTS
31
31
  - SCTS
32
32
  activity:
@@ -32,8 +32,8 @@ instrument:
32
32
  type:
33
33
  - LSTN
34
34
  - LSTS
35
- - MSTN
36
- - MSTS
35
+ - MSTx-NectarCam
36
+ - MSTx-FlashCam
37
37
  - SSTS
38
38
  - SCTS
39
39
  activity:
@@ -24,8 +24,8 @@ instrument:
24
24
  type:
25
25
  - LSTN
26
26
  - LSTS
27
- - MSTN
28
- - MSTS
27
+ - MSTx-NectarCam
28
+ - MSTx-FlashCam
29
29
  - SSTS
30
30
  - SCTS
31
31
  activity:
@@ -34,8 +34,8 @@ instrument:
34
34
  type:
35
35
  - LSTN
36
36
  - LSTS
37
- - MSTN
38
- - MSTS
37
+ - MSTx-NectarCam
38
+ - MSTx-FlashCam
39
39
  - SSTS
40
40
  - SCTS
41
41
  activity:
@@ -27,8 +27,8 @@ instrument:
27
27
  type:
28
28
  - LSTN
29
29
  - LSTS
30
- - MSTN
31
- - MSTS
30
+ - MSTx-NectarCam
31
+ - MSTx-FlashCam
32
32
  - SSTS
33
33
  - SCTS
34
34
  activity:
@@ -33,8 +33,8 @@ instrument:
33
33
  type:
34
34
  - LSTN
35
35
  - LSTS
36
- - MSTN
37
- - MSTS
36
+ - MSTx-NectarCam
37
+ - MSTx-FlashCam
38
38
  - SSTS
39
39
  - SCTS
40
40
  activity:
@@ -25,8 +25,8 @@ instrument:
25
25
  type:
26
26
  - LSTN
27
27
  - LSTS
28
- - MSTN
29
- - MSTS
28
+ - MSTx-NectarCam
29
+ - MSTx-FlashCam
30
30
  - SSTS
31
31
  - SCTS
32
32
  activity:
@@ -34,8 +34,8 @@ instrument:
34
34
  type:
35
35
  - LSTN
36
36
  - LSTS
37
- - MSTN
38
- - MSTS
37
+ - MSTx-NectarCam
38
+ - MSTx-FlashCam
39
39
  - SSTS
40
40
  - SCTS
41
41
  activity:
@@ -26,8 +26,8 @@ instrument:
26
26
  type:
27
27
  - LSTN
28
28
  - LSTS
29
- - MSTN
30
- - MSTS
29
+ - MSTx-NectarCam
30
+ - MSTx-FlashCam
31
31
  - SSTS
32
32
  - SCTS
33
33
  activity: