gammasimtools 0.6.1__py3-none-any.whl → 0.8.2__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.8.2.dist-info/METADATA +173 -0
- gammasimtools-0.8.2.dist-info/RECORD +345 -0
- {gammasimtools-0.6.1.dist-info → gammasimtools-0.8.2.dist-info}/WHEEL +1 -1
- gammasimtools-0.8.2.dist-info/entry_points.txt +31 -0
- simtools/_dev_version/__init__.py +9 -0
- simtools/_version.py +2 -2
- simtools/applications/calculate_trigger_rate.py +210 -0
- simtools/applications/convert_all_model_parameters_from_simtel.py +372 -0
- simtools/applications/{print_array_elements.py → convert_geo_coordinates_of_array_elements.py} +58 -63
- simtools/applications/convert_model_parameter_from_simtel.py +119 -0
- simtools/applications/{add_file_to_db.py → db_add_file_to_db.py} +70 -60
- simtools/applications/db_add_model_parameters_from_repository_to_db.py +184 -0
- simtools/applications/db_add_value_from_json_to_db.py +105 -0
- simtools/applications/db_development_tools/write_array_elements_positions_to_repository.py +180 -0
- simtools/applications/db_get_array_layouts_from_db.py +162 -0
- simtools/applications/{get_file_from_db.py → db_get_file_from_db.py} +30 -34
- simtools/applications/db_get_parameter_from_db.py +131 -0
- simtools/applications/db_inspect_databases.py +52 -0
- simtools/applications/derive_mirror_rnda.py +39 -255
- simtools/applications/derive_psf_parameters.py +441 -0
- simtools/applications/generate_array_config.py +82 -0
- simtools/applications/generate_corsika_histograms.py +52 -52
- simtools/applications/generate_default_metadata.py +5 -8
- simtools/applications/generate_regular_arrays.py +117 -0
- simtools/applications/generate_simtel_array_histograms.py +97 -56
- simtools/applications/plot_array_layout.py +345 -115
- simtools/applications/production_generate_simulation_config.py +158 -0
- simtools/applications/production_scale_events.py +168 -0
- simtools/applications/simulate_light_emission.py +478 -0
- simtools/applications/simulate_prod.py +97 -175
- simtools/applications/submit_data_from_external.py +9 -12
- simtools/applications/submit_model_parameter_from_external.py +122 -0
- simtools/applications/validate_camera_efficiency.py +35 -102
- simtools/applications/validate_camera_fov.py +20 -19
- simtools/applications/{compare_cumulative_psf.py → validate_cumulative_psf.py} +45 -44
- simtools/applications/validate_file_using_schema.py +111 -47
- simtools/applications/validate_optics.py +17 -22
- simtools/camera_efficiency.py +193 -202
- simtools/configuration/commandline_parser.py +384 -96
- simtools/configuration/configurator.py +55 -71
- simtools/constants.py +5 -5
- simtools/corsika/corsika_config.py +482 -342
- simtools/corsika/corsika_histograms.py +226 -204
- simtools/corsika/corsika_histograms_visualize.py +23 -24
- simtools/corsika/primary_particle.py +159 -0
- simtools/data_model/data_reader.py +25 -20
- simtools/data_model/format_checkers.py +52 -0
- simtools/data_model/metadata_collector.py +211 -185
- simtools/data_model/metadata_model.py +115 -37
- simtools/data_model/model_data_writer.py +335 -26
- simtools/data_model/validate_data.py +366 -154
- simtools/db/db_array_elements.py +130 -0
- simtools/db/db_from_repo_handler.py +106 -0
- simtools/db/db_handler.py +1246 -0
- simtools/io_operations/hdf5_handler.py +3 -1
- simtools/io_operations/io_handler.py +32 -57
- simtools/job_execution/job_manager.py +82 -69
- simtools/layout/array_layout.py +325 -537
- simtools/layout/geo_coordinates.py +8 -11
- simtools/layout/telescope_position.py +163 -86
- simtools/model/array_model.py +312 -259
- simtools/model/calibration_model.py +50 -0
- simtools/model/camera.py +277 -523
- simtools/model/mirrors.py +68 -49
- simtools/model/model_parameter.py +602 -0
- simtools/model/model_utils.py +11 -39
- simtools/model/site_model.py +161 -0
- simtools/model/telescope_model.py +143 -633
- simtools/production_configuration/calculate_statistical_errors_grid_point.py +454 -0
- simtools/production_configuration/event_scaler.py +146 -0
- simtools/production_configuration/generate_simulation_config.py +193 -0
- simtools/production_configuration/interpolation_handler.py +197 -0
- simtools/ray_tracing/__init__.py +0 -0
- simtools/ray_tracing/mirror_panel_psf.py +280 -0
- simtools/{psf_analysis.py → ray_tracing/psf_analysis.py} +133 -47
- simtools/ray_tracing/ray_tracing.py +646 -0
- simtools/runners/__init__.py +0 -0
- simtools/runners/corsika_runner.py +240 -0
- simtools/runners/corsika_simtel_runner.py +225 -0
- simtools/runners/runner_services.py +307 -0
- simtools/runners/simtel_runner.py +224 -0
- simtools/schemas/array_elements.yml +137 -0
- simtools/schemas/integration_tests_config.metaschema.yml +93 -0
- simtools/schemas/metadata.metaschema.yml +6 -0
- simtools/schemas/model_parameter.metaschema.yml +78 -0
- simtools/schemas/{data.metaschema.yml → model_parameter_and_data_schema.metaschema.yml} +27 -44
- simtools/schemas/model_parameters/adjust_gain.schema.yml +37 -0
- simtools/schemas/model_parameters/altitude.schema.yml +37 -0
- simtools/schemas/model_parameters/array_coordinates.schema.yml +33 -0
- simtools/schemas/model_parameters/array_coordinates_UTM.schema.yml +77 -0
- simtools/schemas/model_parameters/array_element_position_ground.schema.yml +39 -0
- simtools/schemas/model_parameters/array_element_position_utm.schema.yml +39 -0
- simtools/schemas/model_parameters/array_layouts.schema.yml +48 -0
- simtools/schemas/model_parameters/array_triggers.schema.yml +93 -0
- simtools/schemas/model_parameters/asum_clipping.schema.yml +38 -0
- simtools/schemas/model_parameters/asum_offset.schema.yml +35 -0
- simtools/schemas/model_parameters/asum_shaping.schema.yml +35 -0
- simtools/schemas/model_parameters/asum_threshold.schema.yml +38 -0
- simtools/schemas/model_parameters/atmospheric_profile.schema.yml +32 -0
- simtools/schemas/model_parameters/atmospheric_transmission.schema.yml +35 -0
- simtools/schemas/model_parameters/axes_offsets.schema.yml +53 -0
- simtools/schemas/model_parameters/camera_body_diameter.schema.yml +40 -0
- simtools/schemas/model_parameters/camera_body_shape.schema.yml +45 -0
- simtools/schemas/model_parameters/camera_config_file.schema.yml +40 -0
- simtools/schemas/model_parameters/camera_config_rotate.schema.yml +36 -0
- simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml +43 -0
- simtools/schemas/model_parameters/camera_degraded_map.schema.yml +42 -0
- simtools/schemas/model_parameters/camera_depth.schema.yml +42 -0
- simtools/schemas/model_parameters/camera_filter.schema.yml +45 -0
- simtools/schemas/model_parameters/camera_filter_incidence_angle.schema.yml +29 -0
- simtools/schemas/model_parameters/camera_pixels.schema.yml +36 -0
- simtools/schemas/model_parameters/camera_transmission.schema.yml +41 -0
- simtools/schemas/model_parameters/channels_per_chip.schema.yml +36 -0
- simtools/schemas/model_parameters/correct_nsb_spectrum_to_telescope_altitude.schema.yml +35 -0
- simtools/schemas/model_parameters/corsika_cherenkov_photon_bunch_size.schema.yml +27 -0
- simtools/schemas/model_parameters/corsika_cherenkov_photon_wavelength_range.schema.yml +38 -0
- simtools/schemas/model_parameters/corsika_first_interaction_height.schema.yml +28 -0
- simtools/schemas/model_parameters/corsika_iact_io_buffer.schema.yml +23 -0
- simtools/schemas/model_parameters/corsika_iact_max_bunches.schema.yml +27 -0
- simtools/schemas/model_parameters/corsika_iact_split_auto.schema.yml +28 -0
- simtools/schemas/model_parameters/corsika_longitudinal_shower_development.schema.yml +27 -0
- simtools/schemas/model_parameters/corsika_observation_level.schema.yml +38 -0
- simtools/schemas/model_parameters/corsika_particle_kinetic_energy_cutoff.schema.yml +52 -0
- simtools/schemas/model_parameters/corsika_starting_grammage.schema.yml +27 -0
- simtools/schemas/model_parameters/dark_events.schema.yml +32 -0
- simtools/schemas/model_parameters/default_trigger.schema.yml +35 -0
- simtools/schemas/model_parameters/design_model.schema.yml +31 -0
- simtools/schemas/model_parameters/disc_ac_coupled.schema.yml +32 -0
- simtools/schemas/model_parameters/disc_bins.schema.yml +39 -0
- simtools/schemas/model_parameters/disc_start.schema.yml +41 -0
- simtools/schemas/model_parameters/discriminator_amplitude.schema.yml +42 -0
- simtools/schemas/model_parameters/discriminator_fall_time.schema.yml +41 -0
- simtools/schemas/model_parameters/discriminator_gate_length.schema.yml +41 -0
- simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml +39 -0
- simtools/schemas/model_parameters/discriminator_output_amplitude.schema.yml +40 -0
- simtools/schemas/model_parameters/discriminator_output_var_percent.schema.yml +41 -0
- simtools/schemas/model_parameters/discriminator_pulse_shape.schema.yml +33 -0
- simtools/schemas/model_parameters/discriminator_rise_time.schema.yml +42 -0
- simtools/schemas/model_parameters/discriminator_scale_threshold.schema.yml +37 -0
- simtools/schemas/model_parameters/discriminator_sigsum_over_threshold.schema.yml +44 -0
- simtools/schemas/model_parameters/discriminator_threshold.schema.yml +36 -0
- simtools/schemas/model_parameters/discriminator_time_over_threshold.schema.yml +45 -0
- simtools/schemas/model_parameters/discriminator_var_gate_length.schema.yml +40 -0
- simtools/schemas/model_parameters/discriminator_var_sigsum_over_threshold.schema.yml +41 -0
- simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml +38 -0
- simtools/schemas/model_parameters/discriminator_var_time_over_threshold.schema.yml +38 -0
- simtools/schemas/model_parameters/dish_shape_length.schema.yml +41 -0
- simtools/schemas/model_parameters/dsum_clipping.schema.yml +38 -0
- simtools/schemas/model_parameters/dsum_ignore_below.schema.yml +38 -0
- simtools/schemas/model_parameters/dsum_offset.schema.yml +37 -0
- simtools/schemas/model_parameters/dsum_pedsub.schema.yml +33 -0
- simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml +39 -0
- simtools/schemas/model_parameters/dsum_prescale.schema.yml +44 -0
- simtools/schemas/model_parameters/dsum_presum_max.schema.yml +38 -0
- simtools/schemas/model_parameters/dsum_presum_shift.schema.yml +45 -0
- simtools/schemas/model_parameters/dsum_shaping.schema.yml +44 -0
- simtools/schemas/model_parameters/dsum_shaping_renormalize.schema.yml +32 -0
- simtools/schemas/model_parameters/dsum_threshold.schema.yml +43 -0
- simtools/schemas/model_parameters/dsum_zero_clip.schema.yml +42 -0
- simtools/schemas/model_parameters/effective_focal_length.schema.yml +61 -0
- simtools/schemas/model_parameters/epsg_code.schema.yml +37 -0
- simtools/schemas/model_parameters/fadc_ac_coupled.schema.yml +35 -0
- simtools/schemas/model_parameters/fadc_amplitude.schema.yml +46 -0
- simtools/schemas/model_parameters/fadc_bins.schema.yml +40 -0
- simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml +50 -0
- simtools/schemas/model_parameters/fadc_dev_pedestal.schema.yml +38 -0
- simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml +42 -0
- simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml +49 -0
- simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml +47 -0
- simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml +51 -0
- simtools/schemas/model_parameters/fadc_lg_dev_pedestal.schema.yml +37 -0
- simtools/schemas/model_parameters/fadc_lg_err_compensate_pedestal.schema.yml +43 -0
- simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml +49 -0
- simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml +43 -0
- simtools/schemas/model_parameters/fadc_lg_max_sum.schema.yml +39 -0
- simtools/schemas/model_parameters/fadc_lg_noise.schema.yml +42 -0
- simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml +40 -0
- simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml +50 -0
- simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml +42 -0
- simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml +41 -0
- simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml +42 -0
- simtools/schemas/model_parameters/fadc_max_signal.schema.yml +43 -0
- simtools/schemas/model_parameters/fadc_max_sum.schema.yml +39 -0
- simtools/schemas/model_parameters/fadc_mhz.schema.yml +31 -0
- simtools/schemas/model_parameters/fadc_noise.schema.yml +41 -0
- simtools/schemas/model_parameters/fadc_pedestal.schema.yml +40 -0
- simtools/schemas/model_parameters/fadc_pulse_shape.schema.yml +39 -0
- simtools/schemas/model_parameters/fadc_sensitivity.schema.yml +50 -0
- simtools/schemas/model_parameters/fadc_sum_bins.schema.yml +43 -0
- simtools/schemas/model_parameters/fadc_sum_offset.schema.yml +43 -0
- simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml +42 -0
- simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml +41 -0
- simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml +42 -0
- simtools/schemas/model_parameters/flatfielding.schema.yml +37 -0
- simtools/schemas/model_parameters/focal_length.schema.yml +45 -0
- simtools/schemas/model_parameters/focal_surface_parameters.schema.yml +158 -0
- simtools/schemas/model_parameters/focal_surface_ref_radius.schema.yml +29 -0
- simtools/schemas/model_parameters/focus_offset.schema.yml +66 -0
- simtools/schemas/model_parameters/gain_variation.schema.yml +43 -0
- simtools/schemas/model_parameters/geomag_horizontal.schema.yml +34 -0
- simtools/schemas/model_parameters/geomag_rotation.schema.yml +37 -0
- simtools/schemas/model_parameters/geomag_vertical.schema.yml +34 -0
- simtools/schemas/model_parameters/hg_lg_variation.schema.yml +36 -0
- simtools/schemas/model_parameters/iobuf_maximum.schema.yml +34 -0
- simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml +34 -0
- simtools/schemas/model_parameters/laser_events.schema.yml +36 -0
- simtools/schemas/model_parameters/laser_external_trigger.schema.yml +35 -0
- simtools/schemas/model_parameters/laser_photons.schema.yml +32 -0
- simtools/schemas/model_parameters/laser_pulse_exptime.schema.yml +34 -0
- simtools/schemas/model_parameters/laser_pulse_offset.schema.yml +34 -0
- simtools/schemas/model_parameters/laser_pulse_sigtime.schema.yml +33 -0
- simtools/schemas/model_parameters/laser_pulse_twidth.schema.yml +33 -0
- simtools/schemas/model_parameters/laser_var_photons.schema.yml +33 -0
- simtools/schemas/model_parameters/laser_wavelength.schema.yml +33 -0
- simtools/schemas/model_parameters/led_events.schema.yml +34 -0
- simtools/schemas/model_parameters/led_photons.schema.yml +34 -0
- simtools/schemas/model_parameters/led_pulse_offset.schema.yml +32 -0
- simtools/schemas/model_parameters/led_pulse_sigtime.schema.yml +33 -0
- simtools/schemas/model_parameters/led_var_photons.schema.yml +34 -0
- simtools/schemas/model_parameters/lightguide_efficiency_vs_incidence_angle.schema.yml +41 -0
- simtools/schemas/model_parameters/lightguide_efficiency_vs_wavelength.schema.yml +43 -0
- simtools/schemas/model_parameters/min_photoelectrons.schema.yml +35 -0
- simtools/schemas/model_parameters/min_photons.schema.yml +32 -0
- simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml +36 -0
- simtools/schemas/model_parameters/mirror_align_random_horizontal.schema.yml +64 -0
- simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml +64 -0
- simtools/schemas/model_parameters/mirror_class.schema.yml +41 -0
- simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml +51 -0
- simtools/schemas/model_parameters/mirror_focal_length.schema.yml +42 -0
- simtools/schemas/model_parameters/mirror_list.schema.yml +38 -0
- simtools/schemas/model_parameters/mirror_offset.schema.yml +41 -0
- simtools/schemas/model_parameters/mirror_panel_2f_measurements.schema.yml +39 -0
- simtools/schemas/model_parameters/mirror_reflection_random_angle.schema.yml +61 -0
- simtools/schemas/model_parameters/mirror_reflectivity.schema.yml +40 -0
- simtools/schemas/model_parameters/multiplicity_offset.schema.yml +46 -0
- simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml +51 -0
- simtools/schemas/model_parameters/nsb_gain_drop_scale.schema.yml +37 -0
- simtools/schemas/model_parameters/nsb_offaxis.schema.yml +79 -0
- simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml +47 -0
- simtools/schemas/model_parameters/nsb_reference_spectrum.schema.yml +34 -0
- simtools/schemas/model_parameters/nsb_reference_value.schema.yml +33 -0
- simtools/schemas/model_parameters/nsb_scaling_factor.schema.yml +35 -0
- simtools/schemas/model_parameters/nsb_skymap.schema.yml +39 -0
- simtools/schemas/model_parameters/nsb_spectrum.schema.yml +50 -0
- simtools/schemas/model_parameters/num_gains.schema.yml +34 -0
- simtools/schemas/model_parameters/only_triggered_telescopes.schema.yml +33 -0
- simtools/schemas/model_parameters/optics_properties.schema.yml +31 -0
- simtools/schemas/model_parameters/parabolic_dish.schema.yml +32 -0
- simtools/schemas/model_parameters/pedestal_events.schema.yml +32 -0
- simtools/schemas/model_parameters/photon_delay.schema.yml +38 -0
- simtools/schemas/model_parameters/photons_per_run.schema.yml +33 -0
- simtools/schemas/model_parameters/pixel_cells.schema.yml +35 -0
- simtools/schemas/model_parameters/pixels_parallel.schema.yml +54 -0
- simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml +40 -0
- simtools/schemas/model_parameters/pm_average_gain.schema.yml +34 -0
- simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml +40 -0
- simtools/schemas/model_parameters/pm_gain_index.schema.yml +36 -0
- simtools/schemas/model_parameters/pm_photoelectron_spectrum.schema.yml +41 -0
- simtools/schemas/model_parameters/pm_transit_time.schema.yml +63 -0
- simtools/schemas/model_parameters/pm_voltage_variation.schema.yml +39 -0
- simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml +42 -0
- simtools/schemas/model_parameters/primary_mirror_diameter.schema.yml +33 -0
- simtools/schemas/model_parameters/primary_mirror_hole_diameter.schema.yml +33 -0
- simtools/schemas/model_parameters/primary_mirror_incidence_angle.schema.yml +29 -0
- simtools/schemas/model_parameters/primary_mirror_parameters.schema.yml +168 -0
- simtools/schemas/model_parameters/primary_mirror_ref_radius.schema.yml +36 -0
- simtools/schemas/model_parameters/primary_mirror_segmentation.schema.yml +34 -0
- simtools/schemas/model_parameters/qe_variation.schema.yml +43 -0
- simtools/schemas/model_parameters/quantum_efficiency.schema.yml +42 -0
- simtools/schemas/model_parameters/random_focal_length.schema.yml +45 -0
- simtools/schemas/model_parameters/random_generator.schema.yml +36 -0
- simtools/schemas/model_parameters/reference_point_altitude.schema.yml +35 -0
- simtools/schemas/model_parameters/reference_point_latitude.schema.yml +36 -0
- simtools/schemas/model_parameters/reference_point_longitude.schema.yml +36 -0
- simtools/schemas/model_parameters/reference_point_utm_east.schema.yml +34 -0
- simtools/schemas/model_parameters/reference_point_utm_north.schema.yml +34 -0
- simtools/schemas/model_parameters/sampled_output.schema.yml +31 -0
- simtools/schemas/model_parameters/save_pe_with_amplitude.schema.yml +34 -0
- simtools/schemas/model_parameters/secondary_mirror_baffle.schema.yml +79 -0
- simtools/schemas/model_parameters/secondary_mirror_degraded_map.schema.yml +42 -0
- simtools/schemas/model_parameters/secondary_mirror_degraded_reflection.schema.yml +41 -0
- simtools/schemas/model_parameters/secondary_mirror_diameter.schema.yml +33 -0
- simtools/schemas/model_parameters/secondary_mirror_hole_diameter.schema.yml +36 -0
- simtools/schemas/model_parameters/secondary_mirror_incidence_angle.schema.yml +29 -0
- simtools/schemas/model_parameters/secondary_mirror_parameters.schema.yml +168 -0
- simtools/schemas/model_parameters/secondary_mirror_ref_radius.schema.yml +36 -0
- simtools/schemas/model_parameters/secondary_mirror_reflectivity.schema.yml +35 -0
- simtools/schemas/model_parameters/secondary_mirror_segmentation.schema.yml +37 -0
- simtools/schemas/model_parameters/secondary_mirror_shadow_diameter.schema.yml +40 -0
- simtools/schemas/model_parameters/secondary_mirror_shadow_offset.schema.yml +40 -0
- simtools/schemas/model_parameters/store_photoelectrons.schema.yml +41 -0
- simtools/schemas/model_parameters/tailcut_scale.schema.yml +40 -0
- simtools/schemas/model_parameters/telescope_axis_height.schema.yml +31 -0
- simtools/schemas/model_parameters/telescope_random_angle.schema.yml +35 -0
- simtools/schemas/model_parameters/telescope_random_error.schema.yml +34 -0
- simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml +37 -0
- simtools/schemas/model_parameters/telescope_transmission.schema.yml +113 -0
- simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml +41 -0
- simtools/schemas/model_parameters/teltrig_min_time.schema.yml +36 -0
- simtools/schemas/model_parameters/transit_time_calib_error.schema.yml +36 -0
- simtools/schemas/model_parameters/transit_time_compensate_error.schema.yml +37 -0
- simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml +38 -0
- simtools/schemas/model_parameters/transit_time_error.schema.yml +45 -0
- simtools/schemas/model_parameters/transit_time_jitter.schema.yml +36 -0
- simtools/schemas/model_parameters/trigger_current_limit.schema.yml +32 -0
- simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml +53 -0
- simtools/schemas/model_parameters/trigger_pixels.schema.yml +40 -0
- simtools/simtel/simtel_config_reader.py +353 -0
- simtools/simtel/simtel_config_writer.py +244 -63
- simtools/simtel/{simtel_events.py → simtel_io_events.py} +26 -25
- simtools/simtel/simtel_io_histogram.py +661 -0
- simtools/simtel/simtel_io_histograms.py +569 -0
- simtools/simtel/simulator_array.py +145 -0
- simtools/simtel/{simtel_runner_camera_efficiency.py → simulator_camera_efficiency.py} +76 -52
- simtools/simtel/simulator_light_emission.py +473 -0
- simtools/simtel/simulator_ray_tracing.py +262 -0
- simtools/simulator.py +220 -446
- simtools/testing/__init__.py +0 -0
- simtools/testing/assertions.py +151 -0
- simtools/testing/configuration.py +226 -0
- simtools/testing/helpers.py +42 -0
- simtools/testing/validate_output.py +240 -0
- simtools/utils/general.py +340 -437
- simtools/utils/geometry.py +12 -12
- simtools/utils/names.py +257 -644
- simtools/utils/value_conversion.py +176 -0
- simtools/version.py +3 -1
- simtools/visualization/legend_handlers.py +135 -152
- simtools/visualization/plot_camera.py +379 -0
- simtools/visualization/visualize.py +346 -167
- gammasimtools-0.6.1.dist-info/METADATA +0 -180
- gammasimtools-0.6.1.dist-info/RECORD +0 -91
- gammasimtools-0.6.1.dist-info/entry_points.txt +0 -23
- simtools/_dev_version/scm_version.py +0 -10
- simtools/applications/db_development_tools/add_new_parameter_to_db.py +0 -81
- simtools/applications/db_development_tools/add_unit_to_parameter_in_db.py +0 -59
- simtools/applications/db_development_tools/mark_non_optics_parameters_non_applicable.py +0 -102
- simtools/applications/get_parameter.py +0 -92
- simtools/applications/make_regular_arrays.py +0 -160
- simtools/applications/produce_array_config.py +0 -136
- simtools/applications/production.py +0 -313
- simtools/applications/sim_showers_for_trigger_rates.py +0 -187
- simtools/applications/tune_psf.py +0 -334
- simtools/corsika/corsika_default_config.py +0 -282
- simtools/corsika/corsika_runner.py +0 -450
- simtools/corsika_simtel/corsika_simtel_runner.py +0 -197
- simtools/db_handler.py +0 -1480
- simtools/ray_tracing.py +0 -525
- simtools/simtel/simtel_histograms.py +0 -414
- simtools/simtel/simtel_runner.py +0 -244
- simtools/simtel/simtel_runner_array.py +0 -293
- simtools/simtel/simtel_runner_ray_tracing.py +0 -277
- {gammasimtools-0.6.1.dist-info → gammasimtools-0.8.2.dist-info}/LICENSE +0 -0
- {gammasimtools-0.6.1.dist-info → gammasimtools-0.8.2.dist-info}/top_level.txt +0 -0
- /simtools/{corsika_simtel → db}/__init__.py +0 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for nsb_offaxis 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: nsb_offaxis
|
|
9
|
+
description: |-
|
|
10
|
+
Fall-off of NSB with off-axis angle due to change of effective optical
|
|
11
|
+
area across the field of view (partly covered by
|
|
12
|
+
par:telescope-transmission). The first parameter is the function
|
|
13
|
+
number. Function zero is a constant (all following parameters ignored),
|
|
14
|
+
function one is $f = 1/(1 + p_1 * (r/p_2)^{p_3})$ if $p_4=0$ or missing
|
|
15
|
+
and $f = 1/(1 + p_1 * (r/p_2)^{p_3})^{p_4}$ if $p_4\ne0$ where
|
|
16
|
+
$r$ is the ($x$/$y$ projected) pixel off-axis radius and $p_1$ to
|
|
17
|
+
$p_4$ are the second to fifth parameter, with $p_2$ understood as a
|
|
18
|
+
camera reference radius for the purpose of this function.
|
|
19
|
+
short_description: |-
|
|
20
|
+
Fall-off of NSB with off-axis angle due to off-axis angle-dependent
|
|
21
|
+
effective optical area.
|
|
22
|
+
data:
|
|
23
|
+
- name: nsb_offaxis_function
|
|
24
|
+
required: false
|
|
25
|
+
type: double
|
|
26
|
+
description: |
|
|
27
|
+
Function identifier.
|
|
28
|
+
default: 0
|
|
29
|
+
allowed_range:
|
|
30
|
+
min: 0
|
|
31
|
+
max: 1
|
|
32
|
+
unit: dimensionless
|
|
33
|
+
- name: nsb_offaxis_p1
|
|
34
|
+
description: |
|
|
35
|
+
NSB off-axis factor $p_1$.
|
|
36
|
+
required: false
|
|
37
|
+
type: double
|
|
38
|
+
default: 0.0
|
|
39
|
+
unit: dimensionless
|
|
40
|
+
- name: reference_radius_p2
|
|
41
|
+
description: |
|
|
42
|
+
Camera reference radius $p_2$.
|
|
43
|
+
required: false
|
|
44
|
+
type: double
|
|
45
|
+
default: 0.0
|
|
46
|
+
unit: cm
|
|
47
|
+
- name: nsb_offaxis_p3
|
|
48
|
+
description: |
|
|
49
|
+
NSB off-axis factor $p_3$.
|
|
50
|
+
required: false
|
|
51
|
+
type: double
|
|
52
|
+
default: 0.0
|
|
53
|
+
unit: dimensionless
|
|
54
|
+
- name: nsb_offaxis_p4
|
|
55
|
+
description: |
|
|
56
|
+
NSB off-axis factor $p_4$.
|
|
57
|
+
required: false
|
|
58
|
+
type: double
|
|
59
|
+
default: 0.0
|
|
60
|
+
unit: dimensionless
|
|
61
|
+
instrument:
|
|
62
|
+
class: Camera
|
|
63
|
+
type:
|
|
64
|
+
- LSTN
|
|
65
|
+
- LSTS
|
|
66
|
+
- MSTN
|
|
67
|
+
- MSTS
|
|
68
|
+
- SSTS
|
|
69
|
+
- SCTS
|
|
70
|
+
activity:
|
|
71
|
+
setting:
|
|
72
|
+
- SetNightSkyBackgroundRate
|
|
73
|
+
- SetParameterFromExternal
|
|
74
|
+
validation:
|
|
75
|
+
- ValidatePedestalEvents
|
|
76
|
+
source:
|
|
77
|
+
- Calibration
|
|
78
|
+
simulation_software:
|
|
79
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for nightsky_background 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: nsb_pixel_rate
|
|
9
|
+
description: |-
|
|
10
|
+
'Number of photo-electrons per nanosecond per pixel due to night-sky
|
|
11
|
+
background. Note that the number here takes into account all
|
|
12
|
+
photo-electrons, including those not properly amplified or lost at the
|
|
13
|
+
first dynode. A range of pixels can be given with
|
|
14
|
+
nightsky_background = (0-1236): 0.2, (1237-1854): 0.15.
|
|
15
|
+
Alternatively, all pixels can be set with nightsky_background = all: 0.2.'
|
|
16
|
+
short_description: |-
|
|
17
|
+
Number of photo-electrons per nanosecond per pixel due to nightsky
|
|
18
|
+
background.
|
|
19
|
+
data:
|
|
20
|
+
- type: double
|
|
21
|
+
unit: GHz
|
|
22
|
+
default: 0.218
|
|
23
|
+
allowed_range:
|
|
24
|
+
min: 0.
|
|
25
|
+
instrument:
|
|
26
|
+
class: Camera
|
|
27
|
+
type:
|
|
28
|
+
- LSTN
|
|
29
|
+
- LSTS
|
|
30
|
+
- MSTN
|
|
31
|
+
- MSTS
|
|
32
|
+
- SSTS
|
|
33
|
+
- SCTS
|
|
34
|
+
activity:
|
|
35
|
+
setting:
|
|
36
|
+
- SetNightSkyBackgroundRate
|
|
37
|
+
- SetParameterFromExternal
|
|
38
|
+
validation:
|
|
39
|
+
- ValidateParameterByExpert
|
|
40
|
+
- ValidatePedestalEvents
|
|
41
|
+
- ValidateTriggerPerformance
|
|
42
|
+
- ValidateTelescopeSimulationModel
|
|
43
|
+
source:
|
|
44
|
+
- Initial instrument setup
|
|
45
|
+
simulation_software:
|
|
46
|
+
- name: sim_telarray
|
|
47
|
+
internal_parameter_name: nightsky_background
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for nsb_reference_spectrum 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: nsb_reference_spectrum
|
|
10
|
+
description: |-
|
|
11
|
+
Nightsky spectrum from Benn & Ellison (astro-ph/9909153),
|
|
12
|
+
in original units and converted to photons per wavelength interval, time, area, and solid angle.
|
|
13
|
+
More details can be found within the file.
|
|
14
|
+
This reference spectrum is expected to be replaced in the future with measured or predicted spectra per observation.
|
|
15
|
+
data:
|
|
16
|
+
- type: file
|
|
17
|
+
unit: dimensionless
|
|
18
|
+
default: None
|
|
19
|
+
instrument:
|
|
20
|
+
class: Site
|
|
21
|
+
type:
|
|
22
|
+
- Atmosphere
|
|
23
|
+
site:
|
|
24
|
+
- North
|
|
25
|
+
- South
|
|
26
|
+
activity:
|
|
27
|
+
setting:
|
|
28
|
+
- SetParameterFromExternal
|
|
29
|
+
validation:
|
|
30
|
+
- ValidateParameterByExpert
|
|
31
|
+
source:
|
|
32
|
+
- Calibration
|
|
33
|
+
simulation_software:
|
|
34
|
+
- name: simtools
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for nsb_reference_value 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: nsb_reference_value
|
|
9
|
+
description: |-
|
|
10
|
+
Reference value for night-sky background flux in the wavelength range
|
|
11
|
+
from 300-650 nm (corresponding approximately to the extragalactic
|
|
12
|
+
night sky background level during astronomical darkness)
|
|
13
|
+
short_description: Reference value for night-sky background flux.
|
|
14
|
+
data:
|
|
15
|
+
- type: double
|
|
16
|
+
unit: 1/(sr*ns*cm**2)
|
|
17
|
+
default: 0.24
|
|
18
|
+
instrument:
|
|
19
|
+
class: Site
|
|
20
|
+
type:
|
|
21
|
+
- Atmosphere
|
|
22
|
+
site:
|
|
23
|
+
- North
|
|
24
|
+
- South
|
|
25
|
+
activity:
|
|
26
|
+
setting:
|
|
27
|
+
- SetParameterFromExternal
|
|
28
|
+
validation:
|
|
29
|
+
- ValidateParameterByExpert
|
|
30
|
+
source:
|
|
31
|
+
- Calibration
|
|
32
|
+
simulation_software:
|
|
33
|
+
- name: simtools
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for nsb_scaling_factor 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: nsb_scaling_factor
|
|
9
|
+
description: |-
|
|
10
|
+
Common scaling of the NSB in all pixels of all telescopes against
|
|
11
|
+
reference setting.
|
|
12
|
+
short_description: Global NSB scaling factor.
|
|
13
|
+
data:
|
|
14
|
+
- type: double
|
|
15
|
+
unit: dimensionless
|
|
16
|
+
default: 1.0
|
|
17
|
+
allowed_range:
|
|
18
|
+
min: 0.0
|
|
19
|
+
max: 1000.0
|
|
20
|
+
instrument:
|
|
21
|
+
class: Site
|
|
22
|
+
type:
|
|
23
|
+
- Atmosphere
|
|
24
|
+
site:
|
|
25
|
+
- North
|
|
26
|
+
- South
|
|
27
|
+
activity:
|
|
28
|
+
setting:
|
|
29
|
+
- SetParameterFromExternal
|
|
30
|
+
validation:
|
|
31
|
+
- ValidateParameterByExpert
|
|
32
|
+
source:
|
|
33
|
+
- Calibration
|
|
34
|
+
simulation_software:
|
|
35
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for nsb_sky_map 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: nsb_sky_map
|
|
10
|
+
description: |-
|
|
11
|
+
An optional sky map (Az/Alt) of NSB enhancement factors, counted on top
|
|
12
|
+
of the configured pixel NSB p.e. rates and other scaling factors
|
|
13
|
+
mentioned in this section, but not any starlight which might get
|
|
14
|
+
added additionally. Recommend is to provide a regular grid in
|
|
15
|
+
azimuth and altitude. This map will be evaluated for each pixel
|
|
16
|
+
center pointed back into the sky, using the effective focal length
|
|
17
|
+
(no explicit ray-tracing), thus is only suitable for changes in
|
|
18
|
+
sky brightness exceeding the pixel sizes.
|
|
19
|
+
short_description: Sky map (Az/Alt) of NSB enhancement factors.
|
|
20
|
+
data:
|
|
21
|
+
- type: file
|
|
22
|
+
unit: dimensionless
|
|
23
|
+
default: None
|
|
24
|
+
instrument:
|
|
25
|
+
class: Site
|
|
26
|
+
type:
|
|
27
|
+
- Atmosphere
|
|
28
|
+
site:
|
|
29
|
+
- North
|
|
30
|
+
- South
|
|
31
|
+
activity:
|
|
32
|
+
setting:
|
|
33
|
+
- SetParameterFromExternal
|
|
34
|
+
validation:
|
|
35
|
+
- ValidateParameterByExpert
|
|
36
|
+
source:
|
|
37
|
+
- Calibration
|
|
38
|
+
simulation_software:
|
|
39
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for night_sky_background_spectrum 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: nsb_background_spectrum
|
|
9
|
+
developer_note: |
|
|
10
|
+
TODO - check that wavelength range is sufficient
|
|
11
|
+
TODO - add possible zenith / azimuth dependence
|
|
12
|
+
(see Granada talk by C. Righi)
|
|
13
|
+
description: Intensity of night-sky background light as function of wavelength.
|
|
14
|
+
instrument:
|
|
15
|
+
class: Site
|
|
16
|
+
type:
|
|
17
|
+
- Atmosphere
|
|
18
|
+
site:
|
|
19
|
+
- North
|
|
20
|
+
- South
|
|
21
|
+
data:
|
|
22
|
+
- type: data_table
|
|
23
|
+
table_columns:
|
|
24
|
+
- name: wavelength
|
|
25
|
+
description: Wavelength
|
|
26
|
+
required: true
|
|
27
|
+
unit: nm
|
|
28
|
+
type: double
|
|
29
|
+
required_range:
|
|
30
|
+
min: 300.0
|
|
31
|
+
max: 700.0
|
|
32
|
+
input_processing:
|
|
33
|
+
- remove_duplicates
|
|
34
|
+
- sort
|
|
35
|
+
- name: intensity
|
|
36
|
+
description: Intensity of the night-sky background
|
|
37
|
+
required: true
|
|
38
|
+
unit: photons / arcsec**2 m**2 s** micron
|
|
39
|
+
type: double
|
|
40
|
+
required_range:
|
|
41
|
+
min: 0.0
|
|
42
|
+
activity:
|
|
43
|
+
setting:
|
|
44
|
+
- SetParameterFromExternal
|
|
45
|
+
validation:
|
|
46
|
+
- ValidateParameterByExpert
|
|
47
|
+
source:
|
|
48
|
+
- Calibration
|
|
49
|
+
simulation_software:
|
|
50
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for num_gains 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: num_gains
|
|
9
|
+
description: Number of different gains the input signal gets digitized.
|
|
10
|
+
data:
|
|
11
|
+
- type: int
|
|
12
|
+
unit: dimensionless
|
|
13
|
+
default: 2
|
|
14
|
+
allowed_range:
|
|
15
|
+
min: 1
|
|
16
|
+
max: 2
|
|
17
|
+
instrument:
|
|
18
|
+
class: Camera
|
|
19
|
+
type:
|
|
20
|
+
- LSTN
|
|
21
|
+
- LSTS
|
|
22
|
+
- MSTN
|
|
23
|
+
- MSTS
|
|
24
|
+
- SSTS
|
|
25
|
+
- SCTS
|
|
26
|
+
activity:
|
|
27
|
+
setting:
|
|
28
|
+
- SetParameterFromExternal
|
|
29
|
+
validation:
|
|
30
|
+
- ValidateParameterByExpert
|
|
31
|
+
source:
|
|
32
|
+
- Initial instrument setup
|
|
33
|
+
simulation_software:
|
|
34
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for only_triggered_telescopes 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: only_triggered_telescopes
|
|
9
|
+
description: |-
|
|
10
|
+
Triggered telescopes are read out only (if true), otherwise
|
|
11
|
+
non-triggered telescopes are also read out.
|
|
12
|
+
short_description: Switch to read out non-triggered telescopes.
|
|
13
|
+
data:
|
|
14
|
+
- type: boolean
|
|
15
|
+
default: true
|
|
16
|
+
instrument:
|
|
17
|
+
class: Camera
|
|
18
|
+
type:
|
|
19
|
+
- LSTN
|
|
20
|
+
- LSTS
|
|
21
|
+
- MSTN
|
|
22
|
+
- MSTS
|
|
23
|
+
- SSTS
|
|
24
|
+
- SCTS
|
|
25
|
+
activity:
|
|
26
|
+
setting:
|
|
27
|
+
- SetParameterFromExternal
|
|
28
|
+
validation:
|
|
29
|
+
- ValidateParameterByExpert
|
|
30
|
+
source:
|
|
31
|
+
- Initial instrument setup
|
|
32
|
+
simulation_software:
|
|
33
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for optics_properties 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: optics_properties
|
|
10
|
+
description: |-
|
|
11
|
+
Derived properties of the telescope optics.
|
|
12
|
+
data:
|
|
13
|
+
- type: file
|
|
14
|
+
unit: dimensionless
|
|
15
|
+
default: 'no_such_file.dat'
|
|
16
|
+
instrument:
|
|
17
|
+
class: Structure
|
|
18
|
+
type:
|
|
19
|
+
- LSTN
|
|
20
|
+
- LSTS
|
|
21
|
+
- MSTN
|
|
22
|
+
- MSTS
|
|
23
|
+
- SSTS
|
|
24
|
+
- SCTS
|
|
25
|
+
activity:
|
|
26
|
+
setting:
|
|
27
|
+
- SetParameterFromExternal
|
|
28
|
+
validation:
|
|
29
|
+
- ValidateParameterByExpert
|
|
30
|
+
source:
|
|
31
|
+
- SimPipe Derived
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for parabolic_dish 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: parabolic_dish
|
|
9
|
+
description: |-
|
|
10
|
+
Parabolic dish.
|
|
11
|
+
Mirror tiles still have spherical shape (similar to the Davies-Cotton
|
|
12
|
+
optics), but their focal lengths are adapted to the distance from the
|
|
13
|
+
focus (since the geometric mean of minimum and maximum radius of
|
|
14
|
+
curvature of the paraboloid is very close to that distance).
|
|
15
|
+
short_description: Parabolic dish shape is used.
|
|
16
|
+
data:
|
|
17
|
+
- type: boolean
|
|
18
|
+
default: false
|
|
19
|
+
instrument:
|
|
20
|
+
class: Structure
|
|
21
|
+
type:
|
|
22
|
+
- LSTN
|
|
23
|
+
- LSTS
|
|
24
|
+
activity:
|
|
25
|
+
setting:
|
|
26
|
+
- SetParameterFromExternal
|
|
27
|
+
validation:
|
|
28
|
+
- ValidateParameterByExpert
|
|
29
|
+
source:
|
|
30
|
+
- Initial instrument setup
|
|
31
|
+
simulation_software:
|
|
32
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for pedestal_events 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: pedestal_events
|
|
9
|
+
description: |-
|
|
10
|
+
Number of pedestal events at start of run with camera lid open (same NSB as for normal events).
|
|
11
|
+
short_description: |-
|
|
12
|
+
Number of pedestal events at start of run with camera lid open (same NSB as for normal events).
|
|
13
|
+
data:
|
|
14
|
+
- type: int
|
|
15
|
+
unit: dimensionless
|
|
16
|
+
default: 0
|
|
17
|
+
allowed_range:
|
|
18
|
+
min: 0
|
|
19
|
+
instrument:
|
|
20
|
+
class: Calibration
|
|
21
|
+
type:
|
|
22
|
+
- ILLN
|
|
23
|
+
- ILLS
|
|
24
|
+
activity:
|
|
25
|
+
setting:
|
|
26
|
+
- SetParameterFromExternal
|
|
27
|
+
validation:
|
|
28
|
+
- ValidateParameterByExpert
|
|
29
|
+
source:
|
|
30
|
+
- Initial instrument setup
|
|
31
|
+
simulation_software:
|
|
32
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for photon_delay 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: photon_delay
|
|
9
|
+
developer_note: |-
|
|
10
|
+
Type corrected with respect to the sim_telarray manual
|
|
11
|
+
(double, not int)
|
|
12
|
+
description: |-
|
|
13
|
+
Additional delay added to the arrival times
|
|
14
|
+
of all photons at the photo sensors.
|
|
15
|
+
data:
|
|
16
|
+
- type: double
|
|
17
|
+
unit: ns
|
|
18
|
+
default: 0.0
|
|
19
|
+
instrument:
|
|
20
|
+
class: Camera
|
|
21
|
+
type:
|
|
22
|
+
- LSTN
|
|
23
|
+
- LSTS
|
|
24
|
+
- MSTN
|
|
25
|
+
- MSTS
|
|
26
|
+
- SSTS
|
|
27
|
+
- SCTS
|
|
28
|
+
activity:
|
|
29
|
+
setting:
|
|
30
|
+
- SetParameterFromExternal
|
|
31
|
+
- SetPhotonDelay
|
|
32
|
+
validation:
|
|
33
|
+
- ValidateParameterByExpert
|
|
34
|
+
- ValidateCameraTimeResponse
|
|
35
|
+
source:
|
|
36
|
+
- Initial instrument setup
|
|
37
|
+
simulation_software:
|
|
38
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for photons_per_run 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: photons_per_run
|
|
9
|
+
description: |-
|
|
10
|
+
Number of total emitted photons by the calibration light source per run.
|
|
11
|
+
short_description: |-
|
|
12
|
+
Number of photons per run.
|
|
13
|
+
data:
|
|
14
|
+
- type: double
|
|
15
|
+
unit: dimensionless
|
|
16
|
+
default: 1e10
|
|
17
|
+
allowed_range:
|
|
18
|
+
min: 1
|
|
19
|
+
instrument:
|
|
20
|
+
class: Calibration
|
|
21
|
+
type:
|
|
22
|
+
- ILLN
|
|
23
|
+
- ILLS
|
|
24
|
+
|
|
25
|
+
activity:
|
|
26
|
+
setting:
|
|
27
|
+
- SetParameterFromExternal
|
|
28
|
+
validation:
|
|
29
|
+
- ValidateParameterByExpert
|
|
30
|
+
source:
|
|
31
|
+
- Initial instrument setup
|
|
32
|
+
simulation_software:
|
|
33
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for pixel_cells 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: pixel_cells
|
|
9
|
+
description: |-
|
|
10
|
+
Modeling of pixel saturation. Value corresponds to the
|
|
11
|
+
limited number of cells in a pixel (of SiPM type) which each can only
|
|
12
|
+
fire once during the typical arrival time spread of Cherenkov photons.
|
|
13
|
+
The presence of a non-zero value does not imply any microscopic model
|
|
14
|
+
of the pixel structure.
|
|
15
|
+
data:
|
|
16
|
+
- type: int
|
|
17
|
+
unit: dimensionless
|
|
18
|
+
default: 0
|
|
19
|
+
allowed_range:
|
|
20
|
+
min: 0
|
|
21
|
+
instrument:
|
|
22
|
+
class: Camera
|
|
23
|
+
type:
|
|
24
|
+
- SSTS
|
|
25
|
+
- SCTS
|
|
26
|
+
activity:
|
|
27
|
+
setting:
|
|
28
|
+
- SetParameterFromExternal
|
|
29
|
+
validation:
|
|
30
|
+
- ValidateParameterByExpert
|
|
31
|
+
- ValidateCameraChargeResponse
|
|
32
|
+
source:
|
|
33
|
+
- Initial instrument setup
|
|
34
|
+
simulation_software:
|
|
35
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for pixels_parallel 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: pixels_parallel
|
|
9
|
+
description: |-
|
|
10
|
+
Parameter controlling the orientation of the pixels, setting it to be
|
|
11
|
+
aligned with the optical axis or the focal surface normal.
|
|
12
|
+
A value of 0 indicates that the pixel is oriented such that the surface
|
|
13
|
+
is aligned with the focal surface (pixel axis parallel to focal surface
|
|
14
|
+
normal).
|
|
15
|
+
A value of 1 indicates, that pixels are only shifted parallel to the
|
|
16
|
+
optical axis. Pixel surfaces remain perpendicular to the optical axis.
|
|
17
|
+
A value of 2 places all pixels belonging to the same module
|
|
18
|
+
(as configured in the ``Pixels'' lines in the par:camera-config-file)
|
|
19
|
+
on a common plane, with its orientation along the normal to the focal
|
|
20
|
+
surface in the module center (c.o.g. of pixels) and with zero mean
|
|
21
|
+
displacements of pixels along the $z$ axis.
|
|
22
|
+
A value of 3 (=2+1) has all pixels in a common plane per module and
|
|
23
|
+
all of the modules (and thus all of the pixels) looking parallel to
|
|
24
|
+
the optical axis. The 'height' (in z) of the module is again the
|
|
25
|
+
average of where individually placed pixels would be (zero mean
|
|
26
|
+
displacement in module).
|
|
27
|
+
An extension to the camera definition file even allows for pixels to be
|
|
28
|
+
configured individually and not exactly following the focal surface
|
|
29
|
+
(in both height and orientation).
|
|
30
|
+
short_description: |-
|
|
31
|
+
Parameter controlling the orientation of the pixels, setting it to be
|
|
32
|
+
aligned with the optical axis or the focal surface normal.
|
|
33
|
+
data:
|
|
34
|
+
- type: uint
|
|
35
|
+
default: 1
|
|
36
|
+
allowed_range:
|
|
37
|
+
min: 0
|
|
38
|
+
max: 3
|
|
39
|
+
condition: mirror_class==2
|
|
40
|
+
instrument:
|
|
41
|
+
class: Structure
|
|
42
|
+
type:
|
|
43
|
+
- SSTS
|
|
44
|
+
- SCTS
|
|
45
|
+
activity:
|
|
46
|
+
setting:
|
|
47
|
+
- SetParameterFromExternal
|
|
48
|
+
validation:
|
|
49
|
+
- ValidateParameterByExpert
|
|
50
|
+
- ValidateCameraGeometry
|
|
51
|
+
source:
|
|
52
|
+
- Initial instrument setup
|
|
53
|
+
simulation_software:
|
|
54
|
+
- name: sim_telarray
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
%YAML 1.2
|
|
2
|
+
---
|
|
3
|
+
title: Schema for pixeltrg_time_step 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: pixeltrg_time_step
|
|
9
|
+
description: |-
|
|
10
|
+
If non-zero, the time between the telescope trigger and the time
|
|
11
|
+
when the pixel discriminator/comparator fired is recorded under
|
|
12
|
+
the telescope event in the given time steps (negative for
|
|
13
|
+
pixels fired before the telescope trigger; possible delays involved
|
|
14
|
+
in a real instrument are not accounted for).
|
|
15
|
+
short_description: Time difference between telescope and pixel trigger recording.
|
|
16
|
+
data:
|
|
17
|
+
- type: double
|
|
18
|
+
unit: ns
|
|
19
|
+
default: 0.0
|
|
20
|
+
allowed_range:
|
|
21
|
+
min: 0.0
|
|
22
|
+
instrument:
|
|
23
|
+
class: Camera
|
|
24
|
+
type:
|
|
25
|
+
- LSTN
|
|
26
|
+
- LSTS
|
|
27
|
+
- MSTN
|
|
28
|
+
- MSTS
|
|
29
|
+
- SSTS
|
|
30
|
+
- SCTS
|
|
31
|
+
activity:
|
|
32
|
+
setting:
|
|
33
|
+
- SetParameterFromExternal
|
|
34
|
+
validation:
|
|
35
|
+
- ValidateParameterByExpert
|
|
36
|
+
- ValidateTriggerPerformance
|
|
37
|
+
source:
|
|
38
|
+
- Initial instrument setup
|
|
39
|
+
simulation_software:
|
|
40
|
+
- name: sim_telarray
|