gammasimtools 0.18.0__py3-none-any.whl → 0.19.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {gammasimtools-0.18.0.dist-info → gammasimtools-0.19.0.dist-info}/METADATA +26 -69
- gammasimtools-0.19.0.dist-info/RECORD +393 -0
- {gammasimtools-0.18.0.dist-info → gammasimtools-0.19.0.dist-info}/entry_points.txt +9 -2
- {gammasimtools-0.18.0.dist-info → gammasimtools-0.19.0.dist-info}/licenses/LICENSE +1 -1
- simtools/_version.py +16 -3
- simtools/applications/calculate_trigger_rate.py +1 -1
- simtools/applications/convert_all_model_parameters_from_simtel.py +4 -3
- simtools/applications/convert_geo_coordinates_of_array_elements.py +3 -3
- simtools/applications/db_add_value_from_json_to_db.py +2 -1
- simtools/applications/db_development_tools/write_array_elements_positions_to_repository.py +8 -13
- simtools/applications/db_generate_compound_indexes.py +61 -0
- simtools/applications/db_get_file_from_db.py +1 -1
- simtools/applications/db_get_parameter_from_db.py +4 -4
- simtools/applications/db_inspect_databases.py +20 -10
- simtools/applications/derive_mirror_rnda.py +17 -11
- simtools/applications/derive_psf_parameters.py +59 -309
- simtools/applications/docs_produce_array_element_report.py +1 -1
- simtools/applications/docs_produce_calibration_reports.py +1 -1
- simtools/applications/docs_produce_model_parameter_reports.py +1 -1
- simtools/applications/docs_produce_simulation_configuration_report.py +1 -1
- simtools/applications/generate_corsika_histograms.py +1 -1
- simtools/applications/generate_default_metadata.py +8 -24
- simtools/applications/generate_sim_telarray_histograms.py +1 -1
- simtools/applications/generate_simtel_event_data.py +11 -11
- simtools/applications/maintain_simulation_model_add_production_table.py +71 -0
- simtools/applications/maintain_simulation_model_compare_productions.py +98 -0
- simtools/applications/{verify_simulation_model_production_tables.py → maintain_simulation_model_verify_production_tables.py} +9 -1
- simtools/applications/merge_tables.py +2 -2
- simtools/applications/plot_array_layout.py +3 -3
- simtools/applications/plot_simtel_events.py +379 -0
- simtools/applications/plot_tabular_data.py +9 -2
- simtools/applications/plot_tabular_data_for_model_parameter.py +2 -1
- simtools/applications/print_version.py +8 -9
- simtools/applications/production_derive_corsika_limits.py +6 -7
- simtools/applications/production_derive_statistics.py +1 -1
- simtools/applications/production_generate_grid.py +2 -2
- simtools/applications/production_merge_corsika_limits.py +214 -0
- simtools/applications/run_application.py +47 -113
- simtools/applications/simulate_calibration_events.py +166 -0
- simtools/applications/simulate_flasher.py +141 -0
- simtools/applications/{simulate_light_emission.py → simulate_illuminator.py} +35 -99
- simtools/applications/simulate_prod.py +6 -24
- simtools/applications/simulate_prod_htcondor_generator.py +7 -0
- simtools/applications/submit_array_layouts.py +2 -1
- simtools/applications/submit_model_parameter_from_external.py +1 -1
- simtools/applications/validate_camera_efficiency.py +30 -12
- simtools/applications/validate_camera_fov.py +1 -1
- simtools/applications/validate_cumulative_psf.py +1 -1
- simtools/applications/validate_file_using_schema.py +2 -1
- simtools/applications/validate_optics.py +1 -1
- simtools/camera/camera_efficiency.py +61 -45
- simtools/camera/single_photon_electron_spectrum.py +1 -1
- simtools/configuration/commandline_parser.py +29 -0
- simtools/configuration/configurator.py +4 -4
- simtools/corsika/corsika_config.py +45 -25
- simtools/corsika/corsika_histograms.py +6 -5
- simtools/data_model/data_reader.py +2 -3
- simtools/data_model/metadata_collector.py +32 -36
- simtools/data_model/metadata_model.py +15 -12
- simtools/data_model/model_data_writer.py +13 -32
- simtools/data_model/schema.py +74 -24
- simtools/data_model/validate_data.py +34 -9
- simtools/db/db_handler.py +43 -37
- simtools/db/db_model_upload.py +3 -3
- simtools/dependencies.py +88 -25
- simtools/io/ascii_handler.py +279 -0
- simtools/{io_operations → io}/io_handler.py +25 -3
- simtools/job_execution/htcondor_script_generator.py +15 -4
- simtools/layout/array_layout.py +1 -1
- simtools/layout/array_layout_utils.py +14 -7
- simtools/model/array_model.py +23 -4
- simtools/model/flasher_model.py +106 -0
- simtools/model/model_parameter.py +4 -4
- simtools/model/model_repository.py +197 -2
- simtools/model/telescope_model.py +3 -1
- simtools/production_configuration/derive_corsika_limits.py +361 -427
- simtools/production_configuration/derive_production_statistics_handler.py +7 -6
- simtools/production_configuration/generate_production_grid.py +9 -11
- simtools/production_configuration/merge_corsika_limits.py +528 -0
- simtools/ray_tracing/mirror_panel_psf.py +1 -0
- simtools/ray_tracing/psf_parameter_optimisation.py +792 -0
- simtools/ray_tracing/ray_tracing.py +6 -2
- simtools/reporting/docs_read_parameters.py +150 -62
- simtools/runners/corsika_runner.py +1 -1
- simtools/runners/corsika_simtel_runner.py +14 -5
- simtools/runners/runner_services.py +10 -5
- simtools/runners/simtools_runner.py +267 -0
- simtools/schemas/application_workflow.metaschema.yml +101 -68
- simtools/schemas/input/MST_mirror_2f_measurements.schema.yml +1 -1
- simtools/schemas/input/single_pe_spectrum.schema.yml +1 -1
- simtools/schemas/metadata.metaschema.yml +577 -3
- simtools/schemas/model_parameter.metaschema.yml +6 -6
- simtools/schemas/model_parameter_and_data_schema.metaschema.yml +2 -2
- simtools/schemas/model_parameters/adjust_gain.schema.yml +1 -1
- simtools/schemas/model_parameters/altitude.schema.yml +1 -1
- simtools/schemas/model_parameters/array_coordinates.schema.yml +1 -1
- simtools/schemas/model_parameters/array_coordinates_UTM.schema.yml +1 -1
- simtools/schemas/model_parameters/array_element_position_ground.schema.yml +1 -1
- simtools/schemas/model_parameters/array_element_position_utm.schema.yml +1 -1
- simtools/schemas/model_parameters/array_layouts.schema.yml +1 -1
- simtools/schemas/model_parameters/array_triggers.schema.yml +1 -1
- simtools/schemas/model_parameters/array_window.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_clipping.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_shaping.schema.yml +1 -1
- simtools/schemas/model_parameters/asum_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/atmospheric_profile.schema.yml +1 -1
- simtools/schemas/model_parameters/atmospheric_transmission.schema.yml +1 -1
- simtools/schemas/model_parameters/axes_offsets.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_body_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_body_shape.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_config_file.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_config_rotate.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_degraded_map.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_depth.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_filter.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_filter_incidence_angle.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_pixels.schema.yml +1 -1
- simtools/schemas/model_parameters/camera_transmission.schema.yml +1 -1
- simtools/schemas/model_parameters/channels_per_chip.schema.yml +1 -1
- simtools/schemas/model_parameters/correct_nsb_spectrum_to_telescope_altitude.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_cherenkov_photon_bunch_size.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_cherenkov_photon_wavelength_range.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_first_interaction_height.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_iact_io_buffer.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_iact_max_bunches.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_iact_split_auto.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_longitudinal_shower_development.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_observation_level.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_particle_kinetic_energy_cutoff.schema.yml +1 -1
- simtools/schemas/model_parameters/corsika_starting_grammage.schema.yml +3 -3
- simtools/schemas/model_parameters/dark_events.schema.yml +1 -1
- simtools/schemas/model_parameters/default_trigger.schema.yml +1 -1
- simtools/schemas/model_parameters/design_model.schema.yml +1 -1
- simtools/schemas/model_parameters/disc_ac_coupled.schema.yml +1 -1
- simtools/schemas/model_parameters/disc_bins.schema.yml +1 -1
- simtools/schemas/model_parameters/disc_start.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_fall_time.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_gate_length.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_output_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_output_var_percent.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_pulse_shape.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_rise_time.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_scale_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_sigsum_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_time_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_gate_length.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_sigsum_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/discriminator_var_time_over_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/dish_shape_length.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_clipping.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_ignore_below.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_pedsub.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_prescale.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_presum_max.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_presum_shift.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_shaping.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_shaping_renormalize.schema.yml +1 -1
- simtools/schemas/model_parameters/dsum_threshold.schema.yml +2 -2
- simtools/schemas/model_parameters/dsum_zero_clip.schema.yml +1 -1
- simtools/schemas/model_parameters/effective_focal_length.schema.yml +1 -1
- simtools/schemas/model_parameters/epsg_code.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_ac_coupled.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_bins.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_dev_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_dev_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_err_compensate_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_max_sum.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_noise.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_long_event_threshold.schema.yml +35 -0
- simtools/schemas/model_parameters/fadc_long_sum_bins.schema.yml +41 -0
- simtools/schemas/model_parameters/fadc_long_sum_offset.schema.yml +38 -0
- simtools/schemas/model_parameters/fadc_max_signal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_max_sum.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_mhz.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_noise.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_pulse_shape.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sum_bins.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sum_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml +1 -1
- simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml +1 -1
- simtools/schemas/model_parameters/fake_mirror_list.schema.yml +1 -1
- simtools/schemas/model_parameters/flatfielding.schema.yml +1 -1
- simtools/schemas/model_parameters/focal_length.schema.yml +1 -1
- simtools/schemas/model_parameters/focal_surface_parameters.schema.yml +1 -1
- simtools/schemas/model_parameters/focal_surface_ref_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/focus_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/gain_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/geomag_horizontal.schema.yml +1 -1
- simtools/schemas/model_parameters/geomag_rotation.schema.yml +1 -1
- simtools/schemas/model_parameters/geomag_vertical.schema.yml +1 -1
- simtools/schemas/model_parameters/hg_lg_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/iobuf_maximum.schema.yml +1 -1
- simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_events.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_external_trigger.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_exptime.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_sigtime.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_pulse_twidth.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_var_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/laser_wavelength.schema.yml +1 -1
- simtools/schemas/model_parameters/led_events.schema.yml +1 -1
- simtools/schemas/model_parameters/led_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/led_pulse_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/led_pulse_sigtime.schema.yml +1 -1
- simtools/schemas/model_parameters/led_var_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/lightguide_efficiency_vs_incidence_angle.schema.yml +1 -1
- simtools/schemas/model_parameters/lightguide_efficiency_vs_wavelength.schema.yml +50 -1
- simtools/schemas/model_parameters/min_photoelectrons.schema.yml +1 -1
- simtools/schemas/model_parameters/min_photons.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_align_random_horizontal.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_class.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_focal_length.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_list.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_panel_2f_measurements.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_reflection_random_angle.schema.yml +1 -1
- simtools/schemas/model_parameters/mirror_reflectivity.schema.yml +1 -1
- simtools/schemas/model_parameters/multiplicity_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/muon_mono_threshold.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_gain_drop_scale.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_offaxis.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_reference_spectrum.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_reference_value.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_scaling_factor.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_sky_map.schema.yml +1 -1
- simtools/schemas/model_parameters/nsb_spectrum.schema.yml +1 -1
- simtools/schemas/model_parameters/num_gains.schema.yml +1 -1
- simtools/schemas/model_parameters/only_triggered_telescopes.schema.yml +1 -1
- simtools/schemas/model_parameters/optics_properties.schema.yml +1 -1
- simtools/schemas/model_parameters/parabolic_dish.schema.yml +1 -1
- simtools/schemas/model_parameters/pedestal_events.schema.yml +1 -1
- simtools/schemas/model_parameters/photon_delay.schema.yml +1 -1
- simtools/schemas/model_parameters/photons_per_run.schema.yml +1 -1
- simtools/schemas/model_parameters/pixel_cells.schema.yml +1 -1
- simtools/schemas/model_parameters/pixels_parallel.schema.yml +1 -1
- simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_average_gain.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_gain_index.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_photoelectron_spectrum.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_transit_time.schema.yml +1 -1
- simtools/schemas/model_parameters/pm_voltage_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_hole_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_incidence_angle.schema.yml +11 -1
- simtools/schemas/model_parameters/primary_mirror_parameters.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_ref_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/primary_mirror_segmentation.schema.yml +1 -1
- simtools/schemas/model_parameters/qe_variation.schema.yml +1 -1
- simtools/schemas/model_parameters/quantum_efficiency.schema.yml +1 -1
- simtools/schemas/model_parameters/random_focal_length.schema.yml +1 -1
- simtools/schemas/model_parameters/random_generator.schema.yml +1 -1
- simtools/schemas/model_parameters/random_mono_probability.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_altitude.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_latitude.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_longitude.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_utm_east.schema.yml +1 -1
- simtools/schemas/model_parameters/reference_point_utm_north.schema.yml +1 -1
- simtools/schemas/model_parameters/sampled_output.schema.yml +1 -1
- simtools/schemas/model_parameters/save_pe_with_amplitude.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_baffle.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_degraded_map.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_degraded_reflection.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_hole_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_incidence_angle.schema.yml +11 -1
- simtools/schemas/model_parameters/secondary_mirror_parameters.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_ref_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_reflectivity.schema.yml +11 -1
- simtools/schemas/model_parameters/secondary_mirror_segmentation.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_shadow_diameter.schema.yml +1 -1
- simtools/schemas/model_parameters/secondary_mirror_shadow_offset.schema.yml +1 -1
- simtools/schemas/model_parameters/stars.schema.yml +1 -1
- simtools/schemas/model_parameters/store_photoelectrons.schema.yml +1 -1
- simtools/schemas/model_parameters/tailcut_scale.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_axis_height.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_random_angle.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_random_error.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml +1 -1
- simtools/schemas/model_parameters/telescope_transmission.schema.yml +1 -1
- simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml +1 -1
- simtools/schemas/model_parameters/teltrig_min_time.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_calib_error.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_compensate_error.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_error.schema.yml +1 -1
- simtools/schemas/model_parameters/transit_time_jitter.schema.yml +1 -1
- simtools/schemas/model_parameters/trigger_current_limit.schema.yml +1 -1
- simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml +1 -1
- simtools/schemas/model_parameters/trigger_pixels.schema.yml +1 -1
- simtools/schemas/plot_configuration.metaschema.yml +5 -2
- simtools/schemas/production_configuration_metrics.schema.yml +12 -2
- simtools/schemas/production_tables.schema.yml +2 -2
- simtools/simtel/simtel_config_reader.py +2 -2
- simtools/simtel/simtel_config_writer.py +16 -4
- simtools/simtel/simtel_io_event_histograms.py +746 -0
- simtools/simtel/simtel_io_event_reader.py +15 -42
- simtools/simtel/simtel_io_event_writer.py +9 -9
- simtools/simtel/simtel_io_histogram.py +3 -1
- simtools/simtel/simtel_io_histograms.py +7 -3
- simtools/simtel/simtel_table_reader.py +92 -10
- simtools/simtel/simulator_array.py +138 -10
- simtools/simtel/simulator_camera_efficiency.py +32 -23
- simtools/simtel/simulator_light_emission.py +437 -271
- simtools/simtel/simulator_ray_tracing.py +1 -1
- simtools/simulator.py +105 -147
- simtools/testing/configuration.py +24 -26
- simtools/testing/helpers.py +2 -2
- simtools/testing/log_inspector.py +50 -0
- simtools/testing/validate_output.py +87 -37
- simtools/utils/general.py +125 -255
- simtools/utils/geometry.py +36 -0
- simtools/utils/names.py +1 -1
- simtools/visualization/legend_handlers.py +180 -264
- simtools/visualization/plot_array_layout.py +20 -8
- simtools/visualization/plot_pixels.py +1 -1
- simtools/visualization/plot_tables.py +133 -37
- simtools/visualization/simtel_event_plots.py +816 -0
- simtools/visualization/visualize.py +4 -101
- gammasimtools-0.18.0.dist-info/RECORD +0 -376
- simtools/production_configuration/derive_corsika_limits_grid.py +0 -232
- {gammasimtools-0.18.0.dist-info → gammasimtools-0.19.0.dist-info}/WHEEL +0 -0
- {gammasimtools-0.18.0.dist-info → gammasimtools-0.19.0.dist-info}/top_level.txt +0 -0
- /simtools/{io_operations → io}/hdf5_handler.py +0 -0
- /simtools/{io_operations → io}/legacy_data_handler.py +0 -0
- /simtools/{io_operations/io_table_handler.py → io/table_handler.py} +0 -0
|
@@ -2,9 +2,583 @@
|
|
|
2
2
|
$schema: http://json-schema.org/draft-06/schema#
|
|
3
3
|
$ref: '#/definitions/SimtoolsOutputMetadata'
|
|
4
4
|
title: SimPipe Output Metadata Metaschema
|
|
5
|
-
description: YAML representation of
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
description: YAML representation of metadata metaschema
|
|
6
|
+
schema_version: 2.0.0
|
|
7
|
+
schema_name: metadata.metaschema
|
|
8
|
+
type: object
|
|
9
|
+
additionalProperties: false
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
definitions:
|
|
13
|
+
SimtoolsOutputMetadata:
|
|
14
|
+
type: object
|
|
15
|
+
additionalProperties: false
|
|
16
|
+
properties:
|
|
17
|
+
cta:
|
|
18
|
+
$ref: '#/definitions/cta'
|
|
19
|
+
required:
|
|
20
|
+
- cta
|
|
21
|
+
description: SimPipe metadata definition
|
|
22
|
+
cta:
|
|
23
|
+
type: object
|
|
24
|
+
required:
|
|
25
|
+
- activity
|
|
26
|
+
- contact
|
|
27
|
+
- instrument
|
|
28
|
+
- process
|
|
29
|
+
- product
|
|
30
|
+
- reference
|
|
31
|
+
additionalProperties: false
|
|
32
|
+
properties:
|
|
33
|
+
###############
|
|
34
|
+
reference:
|
|
35
|
+
description: Reference fields
|
|
36
|
+
required:
|
|
37
|
+
- version
|
|
38
|
+
type: object
|
|
39
|
+
additionalProperties: false
|
|
40
|
+
properties:
|
|
41
|
+
version:
|
|
42
|
+
type: string
|
|
43
|
+
description: |-
|
|
44
|
+
Version of the Reference metadata schema used in the data product
|
|
45
|
+
default: 2.0.0
|
|
46
|
+
pattern: "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$"
|
|
47
|
+
###############
|
|
48
|
+
contact:
|
|
49
|
+
title: Contact
|
|
50
|
+
description: |-
|
|
51
|
+
Describes the person or institution that is responsible for this
|
|
52
|
+
data product.
|
|
53
|
+
required:
|
|
54
|
+
- name
|
|
55
|
+
type: object
|
|
56
|
+
additionalProperties: false
|
|
57
|
+
properties:
|
|
58
|
+
organization:
|
|
59
|
+
type: string
|
|
60
|
+
description: |-
|
|
61
|
+
Organization to which this data product is associated
|
|
62
|
+
default: CTAO
|
|
63
|
+
name:
|
|
64
|
+
description: |-
|
|
65
|
+
Name of contact within the organization
|
|
66
|
+
anyOf:
|
|
67
|
+
- type: string
|
|
68
|
+
- type: "null"
|
|
69
|
+
default: null
|
|
70
|
+
email:
|
|
71
|
+
description: Contact email address
|
|
72
|
+
anyOf:
|
|
73
|
+
- type: string
|
|
74
|
+
format: email
|
|
75
|
+
- type: "null"
|
|
76
|
+
default: null
|
|
77
|
+
orcid:
|
|
78
|
+
description: ORCID identifier of the contact.
|
|
79
|
+
anyOf:
|
|
80
|
+
- type: string
|
|
81
|
+
- type: "null"
|
|
82
|
+
default: null
|
|
83
|
+
###############
|
|
84
|
+
product:
|
|
85
|
+
title: Product
|
|
86
|
+
description: |-
|
|
87
|
+
Describes the details of the data product, including its type and
|
|
88
|
+
links to the data model definition.
|
|
89
|
+
required:
|
|
90
|
+
- data
|
|
91
|
+
- format
|
|
92
|
+
- id
|
|
93
|
+
type: object
|
|
94
|
+
additionalProperties: false
|
|
95
|
+
properties:
|
|
96
|
+
description:
|
|
97
|
+
anyOf:
|
|
98
|
+
- type: string
|
|
99
|
+
- type: "null"
|
|
100
|
+
default: null
|
|
101
|
+
description: Product description
|
|
102
|
+
creation_time:
|
|
103
|
+
anyOf:
|
|
104
|
+
- type: string
|
|
105
|
+
format: date-time
|
|
106
|
+
- type: "null"
|
|
107
|
+
format: date-time
|
|
108
|
+
default: null
|
|
109
|
+
description: |-
|
|
110
|
+
Human-readable date and time of file creation, in ISO format.
|
|
111
|
+
id:
|
|
112
|
+
anyOf:
|
|
113
|
+
- type: string
|
|
114
|
+
format: uuid
|
|
115
|
+
- type: "null"
|
|
116
|
+
- type: number
|
|
117
|
+
default: null
|
|
118
|
+
description: |-
|
|
119
|
+
Product identifier.
|
|
120
|
+
data:
|
|
121
|
+
title: Data
|
|
122
|
+
required:
|
|
123
|
+
- category
|
|
124
|
+
- level
|
|
125
|
+
- model
|
|
126
|
+
type: object
|
|
127
|
+
additionalProperties: false
|
|
128
|
+
properties:
|
|
129
|
+
category:
|
|
130
|
+
anyOf:
|
|
131
|
+
- type: string
|
|
132
|
+
- type: "null"
|
|
133
|
+
default: null
|
|
134
|
+
description: |-
|
|
135
|
+
CTA data identifier
|
|
136
|
+
enum:
|
|
137
|
+
- SIM
|
|
138
|
+
- CAL
|
|
139
|
+
- null
|
|
140
|
+
association:
|
|
141
|
+
anyOf:
|
|
142
|
+
- type: "null"
|
|
143
|
+
- type: string
|
|
144
|
+
default: null
|
|
145
|
+
description: |-
|
|
146
|
+
Array element association.
|
|
147
|
+
enum:
|
|
148
|
+
- CTA
|
|
149
|
+
- Site
|
|
150
|
+
- Subarray
|
|
151
|
+
- Telescope
|
|
152
|
+
- Target
|
|
153
|
+
- null
|
|
154
|
+
level:
|
|
155
|
+
anyOf:
|
|
156
|
+
- type: string
|
|
157
|
+
- type: "null"
|
|
158
|
+
default: null
|
|
159
|
+
description: |-
|
|
160
|
+
CTA data level
|
|
161
|
+
enum:
|
|
162
|
+
- R0
|
|
163
|
+
- R1
|
|
164
|
+
- DL0
|
|
165
|
+
- DL1
|
|
166
|
+
- DL2
|
|
167
|
+
- DL3
|
|
168
|
+
- DL4
|
|
169
|
+
- DL5
|
|
170
|
+
- DL6
|
|
171
|
+
- null
|
|
172
|
+
type:
|
|
173
|
+
anyOf:
|
|
174
|
+
- type: string
|
|
175
|
+
- type: "null"
|
|
176
|
+
default: null
|
|
177
|
+
description: |-
|
|
178
|
+
CTA data type.
|
|
179
|
+
enum:
|
|
180
|
+
- Event
|
|
181
|
+
- Monitoring
|
|
182
|
+
- Service
|
|
183
|
+
- DataCube
|
|
184
|
+
- Catalog
|
|
185
|
+
- null
|
|
186
|
+
model:
|
|
187
|
+
title: Model
|
|
188
|
+
required:
|
|
189
|
+
- name
|
|
190
|
+
- version
|
|
191
|
+
type: object
|
|
192
|
+
additionalProperties: false
|
|
193
|
+
properties:
|
|
194
|
+
name:
|
|
195
|
+
anyOf:
|
|
196
|
+
- type: string
|
|
197
|
+
- type: "null"
|
|
198
|
+
default: null
|
|
199
|
+
description: |-
|
|
200
|
+
Identifying name of the data model used.
|
|
201
|
+
version:
|
|
202
|
+
anyOf:
|
|
203
|
+
- type: string
|
|
204
|
+
- type: "null"
|
|
205
|
+
default: null
|
|
206
|
+
description: |-
|
|
207
|
+
Version of the data model used.
|
|
208
|
+
url:
|
|
209
|
+
description: |-
|
|
210
|
+
Link to definition of data model.
|
|
211
|
+
anyOf:
|
|
212
|
+
- type: string
|
|
213
|
+
format: uri
|
|
214
|
+
- type: "null"
|
|
215
|
+
default: null
|
|
216
|
+
type:
|
|
217
|
+
description: |-
|
|
218
|
+
Type of data model (e.g. simpipe-schema).
|
|
219
|
+
anyOf:
|
|
220
|
+
- type: string
|
|
221
|
+
- type: "null"
|
|
222
|
+
default: null
|
|
223
|
+
subtype:
|
|
224
|
+
description: |-
|
|
225
|
+
Additional subtype of data model.
|
|
226
|
+
anyOf:
|
|
227
|
+
- type: string
|
|
228
|
+
- type: "null"
|
|
229
|
+
format:
|
|
230
|
+
anyOf:
|
|
231
|
+
- type: string
|
|
232
|
+
- type: "null"
|
|
233
|
+
default: null
|
|
234
|
+
valid:
|
|
235
|
+
type: object
|
|
236
|
+
additionalProperties: false
|
|
237
|
+
properties:
|
|
238
|
+
start:
|
|
239
|
+
anyOf:
|
|
240
|
+
- type: string
|
|
241
|
+
format: date-time
|
|
242
|
+
- type: "null"
|
|
243
|
+
default: null
|
|
244
|
+
end:
|
|
245
|
+
anyOf:
|
|
246
|
+
- type: string
|
|
247
|
+
format: date-time
|
|
248
|
+
- type: "null"
|
|
249
|
+
default: null
|
|
250
|
+
title: Valid
|
|
251
|
+
description: |-
|
|
252
|
+
Time range of validity for this data product.
|
|
253
|
+
filename:
|
|
254
|
+
description: |-
|
|
255
|
+
Name of the file containing the data product.
|
|
256
|
+
anyOf:
|
|
257
|
+
- type: string
|
|
258
|
+
- type: "null"
|
|
259
|
+
default: null
|
|
260
|
+
###############
|
|
261
|
+
instrument:
|
|
262
|
+
title: Instrument
|
|
263
|
+
required:
|
|
264
|
+
- class
|
|
265
|
+
- id
|
|
266
|
+
- site
|
|
267
|
+
- type
|
|
268
|
+
type: object
|
|
269
|
+
additionalProperties: false
|
|
270
|
+
properties:
|
|
271
|
+
site:
|
|
272
|
+
anyOf:
|
|
273
|
+
- type: "null"
|
|
274
|
+
- type: string
|
|
275
|
+
description: |-
|
|
276
|
+
CTA Site.
|
|
277
|
+
default: null
|
|
278
|
+
example:
|
|
279
|
+
- CTA-North
|
|
280
|
+
- CTA-South
|
|
281
|
+
class:
|
|
282
|
+
anyOf:
|
|
283
|
+
- type: "null"
|
|
284
|
+
- type: string
|
|
285
|
+
default: null
|
|
286
|
+
description: |-
|
|
287
|
+
General class of instrument to which this data product applies.
|
|
288
|
+
example:
|
|
289
|
+
- array
|
|
290
|
+
- subarray
|
|
291
|
+
- telescope
|
|
292
|
+
- camera
|
|
293
|
+
- optics
|
|
294
|
+
- mirrorPanel
|
|
295
|
+
- photosensor
|
|
296
|
+
- cameraModule
|
|
297
|
+
- part
|
|
298
|
+
type:
|
|
299
|
+
anyOf:
|
|
300
|
+
- type: "null"
|
|
301
|
+
- type: string
|
|
302
|
+
default: null
|
|
303
|
+
description: |-
|
|
304
|
+
The specific type of instrument in the class.
|
|
305
|
+
example:
|
|
306
|
+
- MST
|
|
307
|
+
- LST
|
|
308
|
+
- SST
|
|
309
|
+
subtype:
|
|
310
|
+
anyOf:
|
|
311
|
+
- type: "null"
|
|
312
|
+
- type: string
|
|
313
|
+
default: null
|
|
314
|
+
description: |-
|
|
315
|
+
Sub-type of the instrument.
|
|
316
|
+
example:
|
|
317
|
+
- NectarCam
|
|
318
|
+
- FlashCam
|
|
319
|
+
id:
|
|
320
|
+
anyOf:
|
|
321
|
+
- type: "null"
|
|
322
|
+
- type: string
|
|
323
|
+
- type: number
|
|
324
|
+
default: null
|
|
325
|
+
description: |-
|
|
326
|
+
Unique ID of the specific instrument in the class.
|
|
327
|
+
example:
|
|
328
|
+
- MSTN-20
|
|
329
|
+
description:
|
|
330
|
+
anyOf:
|
|
331
|
+
- type: string
|
|
332
|
+
- type: "null"
|
|
333
|
+
default: null
|
|
334
|
+
description: Instrument description
|
|
335
|
+
###############
|
|
336
|
+
process:
|
|
337
|
+
title: Process
|
|
338
|
+
description: |-
|
|
339
|
+
The top-level activity to which the activity that generated this
|
|
340
|
+
product belongs, for example an Observation Block, and it's
|
|
341
|
+
associated ID.
|
|
342
|
+
required:
|
|
343
|
+
- type
|
|
344
|
+
type: object
|
|
345
|
+
additionalProperties: false
|
|
346
|
+
properties:
|
|
347
|
+
type:
|
|
348
|
+
description: |-
|
|
349
|
+
General type of the process.
|
|
350
|
+
anyOf:
|
|
351
|
+
- type: "null"
|
|
352
|
+
- type: string
|
|
353
|
+
default: null
|
|
354
|
+
enum:
|
|
355
|
+
- observation
|
|
356
|
+
- calibration
|
|
357
|
+
- simulation
|
|
358
|
+
- lab
|
|
359
|
+
- null
|
|
360
|
+
subtype:
|
|
361
|
+
description: |-
|
|
362
|
+
More specific class of the process if the class is not sufficient
|
|
363
|
+
to describe it.
|
|
364
|
+
anyOf:
|
|
365
|
+
- type: "null"
|
|
366
|
+
- type: string
|
|
367
|
+
default: null
|
|
368
|
+
id:
|
|
369
|
+
description: |-
|
|
370
|
+
Unique identifier of the process.
|
|
371
|
+
anyOf:
|
|
372
|
+
- type: "null"
|
|
373
|
+
- type: string
|
|
374
|
+
- type: number
|
|
375
|
+
default: null
|
|
376
|
+
###############
|
|
377
|
+
activity:
|
|
378
|
+
title: Activity
|
|
379
|
+
description: |-
|
|
380
|
+
The specific software or task that generated this particular
|
|
381
|
+
data product.
|
|
382
|
+
required:
|
|
383
|
+
- id
|
|
384
|
+
- name
|
|
385
|
+
- start
|
|
386
|
+
- end
|
|
387
|
+
- type
|
|
388
|
+
type: object
|
|
389
|
+
additionalProperties: false
|
|
390
|
+
properties:
|
|
391
|
+
name:
|
|
392
|
+
description: |-
|
|
393
|
+
Name of activity that produced this data product,
|
|
394
|
+
e.g. the software/ script name.
|
|
395
|
+
anyOf:
|
|
396
|
+
- type: string
|
|
397
|
+
- type: "null"
|
|
398
|
+
default: null
|
|
399
|
+
type:
|
|
400
|
+
description: |-
|
|
401
|
+
General type of the activity.
|
|
402
|
+
anyOf:
|
|
403
|
+
- type: string
|
|
404
|
+
- type: "null"
|
|
405
|
+
default: null
|
|
406
|
+
example:
|
|
407
|
+
- software
|
|
408
|
+
- user
|
|
409
|
+
id:
|
|
410
|
+
description: |-
|
|
411
|
+
Unique identifier of the instance of this activity.
|
|
412
|
+
anyOf:
|
|
413
|
+
- type: string
|
|
414
|
+
- type: "null"
|
|
415
|
+
- type: number
|
|
416
|
+
default: null
|
|
417
|
+
software:
|
|
418
|
+
title: Software
|
|
419
|
+
description: |-
|
|
420
|
+
The software used to generate this data product.
|
|
421
|
+
type: object
|
|
422
|
+
additionalProperties: false
|
|
423
|
+
properties:
|
|
424
|
+
name:
|
|
425
|
+
description: |-
|
|
426
|
+
Name of the software used to generate this data product.
|
|
427
|
+
anyOf:
|
|
428
|
+
- type: string
|
|
429
|
+
- type: "null"
|
|
430
|
+
default: null
|
|
431
|
+
version:
|
|
432
|
+
description: |-
|
|
433
|
+
Version of the software used to generate this data product.
|
|
434
|
+
anyOf:
|
|
435
|
+
- type: string
|
|
436
|
+
- type: "null"
|
|
437
|
+
default: null
|
|
438
|
+
required:
|
|
439
|
+
- name
|
|
440
|
+
- version
|
|
441
|
+
start:
|
|
442
|
+
description: |-
|
|
443
|
+
Start time of the activity.
|
|
444
|
+
anyOf:
|
|
445
|
+
- type: string
|
|
446
|
+
format: date-time
|
|
447
|
+
- type: "null"
|
|
448
|
+
default: null
|
|
449
|
+
end:
|
|
450
|
+
description: |-
|
|
451
|
+
End time of the activity.
|
|
452
|
+
anyOf:
|
|
453
|
+
- type: string
|
|
454
|
+
format: date-time
|
|
455
|
+
- type: "null"
|
|
456
|
+
default: null
|
|
457
|
+
###############
|
|
458
|
+
context:
|
|
459
|
+
title: Context
|
|
460
|
+
description: |-
|
|
461
|
+
Additional context information for this data product.
|
|
462
|
+
type: object
|
|
463
|
+
additionalProperties: false
|
|
464
|
+
properties:
|
|
465
|
+
notes:
|
|
466
|
+
title: Context notes.
|
|
467
|
+
description: |-
|
|
468
|
+
Notes that provide additional context for this data product.
|
|
469
|
+
type: array
|
|
470
|
+
items:
|
|
471
|
+
type: object
|
|
472
|
+
additionalProperties: false
|
|
473
|
+
properties:
|
|
474
|
+
title:
|
|
475
|
+
description: |-
|
|
476
|
+
Title of note.
|
|
477
|
+
anyOf:
|
|
478
|
+
- type: string
|
|
479
|
+
- type: "null"
|
|
480
|
+
default: null
|
|
481
|
+
text:
|
|
482
|
+
description: |-
|
|
483
|
+
Note text.
|
|
484
|
+
anyOf:
|
|
485
|
+
- type: string
|
|
486
|
+
- type: "null"
|
|
487
|
+
default: null
|
|
488
|
+
creation_time:
|
|
489
|
+
description: |-
|
|
490
|
+
Creation time of document.
|
|
491
|
+
anyOf:
|
|
492
|
+
- type: string
|
|
493
|
+
format: date-time
|
|
494
|
+
- type: "null"
|
|
495
|
+
default: null
|
|
496
|
+
required:
|
|
497
|
+
- text
|
|
498
|
+
document:
|
|
499
|
+
title: Context documents.
|
|
500
|
+
description: |-
|
|
501
|
+
Documents that provide additional context for this data product.
|
|
502
|
+
type: array
|
|
503
|
+
items:
|
|
504
|
+
type: object
|
|
505
|
+
additionalProperties: false
|
|
506
|
+
properties:
|
|
507
|
+
type:
|
|
508
|
+
description: |-
|
|
509
|
+
Type of document.
|
|
510
|
+
anyOf:
|
|
511
|
+
- type: string
|
|
512
|
+
- type: "null"
|
|
513
|
+
default: null
|
|
514
|
+
title:
|
|
515
|
+
description: |-
|
|
516
|
+
Title of document.
|
|
517
|
+
anyOf:
|
|
518
|
+
- type: string
|
|
519
|
+
- type: "null"
|
|
520
|
+
default: null
|
|
521
|
+
author:
|
|
522
|
+
description: |-
|
|
523
|
+
Author of document.
|
|
524
|
+
anyOf:
|
|
525
|
+
- type: string
|
|
526
|
+
- type: "null"
|
|
527
|
+
default: null
|
|
528
|
+
id:
|
|
529
|
+
description: |-
|
|
530
|
+
Unique identifier of document.
|
|
531
|
+
anyOf:
|
|
532
|
+
- type: string
|
|
533
|
+
- type: "null"
|
|
534
|
+
- type: number
|
|
535
|
+
default: null
|
|
536
|
+
creation_time:
|
|
537
|
+
description: |-
|
|
538
|
+
Creation time of document.
|
|
539
|
+
anyOf:
|
|
540
|
+
- type: string
|
|
541
|
+
format: date-time
|
|
542
|
+
- type: "null"
|
|
543
|
+
default: null
|
|
544
|
+
url:
|
|
545
|
+
description: |-
|
|
546
|
+
Link to document
|
|
547
|
+
anyOf:
|
|
548
|
+
- type: string
|
|
549
|
+
format: uri
|
|
550
|
+
- type: "null"
|
|
551
|
+
default: null
|
|
552
|
+
required:
|
|
553
|
+
- creation_time
|
|
554
|
+
- id
|
|
555
|
+
- title
|
|
556
|
+
- type
|
|
557
|
+
associated_elements:
|
|
558
|
+
title: Associated elements.
|
|
559
|
+
description: |-
|
|
560
|
+
CTA elements associated with this data product
|
|
561
|
+
(e.g., this data product is to be used to model
|
|
562
|
+
a certain camera).
|
|
563
|
+
type: array
|
|
564
|
+
items:
|
|
565
|
+
$ref: '#/definitions/cta/properties/instrument'
|
|
566
|
+
associated_data:
|
|
567
|
+
title: Associated data.
|
|
568
|
+
description: |-
|
|
569
|
+
Associated data products (e.g., this data product
|
|
570
|
+
has been derived using the associated data).
|
|
571
|
+
type: array
|
|
572
|
+
items:
|
|
573
|
+
$ref: '#/definitions/cta/properties/product'
|
|
574
|
+
...
|
|
575
|
+
---
|
|
576
|
+
$schema: http://json-schema.org/draft-06/schema#
|
|
577
|
+
$ref: '#/definitions/SimtoolsOutputMetadata'
|
|
578
|
+
title: SimPipe Output Metadata Metaschema
|
|
579
|
+
description: YAML representation of metadata metaschema
|
|
580
|
+
schema_version: 1.0.0
|
|
581
|
+
schema_name: metadata.metaschema
|
|
8
582
|
type: object
|
|
9
583
|
additionalProperties: false
|
|
10
584
|
|
|
@@ -5,8 +5,8 @@ title: SimPipe DB Model Parameter Metaschema
|
|
|
5
5
|
description: |
|
|
6
6
|
YAML representation of db model parameter metaschema
|
|
7
7
|
(based on simulation model DB).
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
schema_version: 0.3.0
|
|
9
|
+
schema_name: modelparameter.metaschema
|
|
10
10
|
type: object
|
|
11
11
|
additionalProperties: false
|
|
12
12
|
|
|
@@ -118,8 +118,8 @@ title: SimPipe DB Model Parameter Metaschema
|
|
|
118
118
|
description: |
|
|
119
119
|
YAML representation of db model parameter metaschema
|
|
120
120
|
(based on simulation model DB).
|
|
121
|
-
|
|
122
|
-
|
|
121
|
+
schema_version: 0.2.0
|
|
122
|
+
schema_name: modelparameter.metaschema
|
|
123
123
|
type: object
|
|
124
124
|
additionalProperties: false
|
|
125
125
|
|
|
@@ -209,8 +209,8 @@ title: SimPipe DB Model Parameter Metaschema
|
|
|
209
209
|
description: |
|
|
210
210
|
YAML representation of db model parameter metaschema
|
|
211
211
|
(based on model_parameters DB).
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
schema_version: 0.1.0
|
|
213
|
+
schema_name: modelparameter.metaschema
|
|
214
214
|
type: object
|
|
215
215
|
additionalProperties: false
|
|
216
216
|
|
|
@@ -16,7 +16,7 @@ definitions:
|
|
|
16
16
|
title:
|
|
17
17
|
type: string
|
|
18
18
|
description: "title for schema file"
|
|
19
|
-
|
|
19
|
+
schema_version:
|
|
20
20
|
type: string
|
|
21
21
|
description: "version of this schema file (semver)"
|
|
22
22
|
meta_schema:
|
|
@@ -64,7 +64,7 @@ definitions:
|
|
|
64
64
|
$ref: 'plot_configuration.metaschema.yml#/definitions/plot'
|
|
65
65
|
description: "List of plotting configurations"
|
|
66
66
|
required:
|
|
67
|
-
-
|
|
67
|
+
- schema_version
|
|
68
68
|
- meta_schema
|
|
69
69
|
- meta_schema_version
|
|
70
70
|
- name
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for adjust_gain model parameter
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for altitude model parameter
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for array_coordinates model parameter
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for array_coordinates_utm input data
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for array_element_position_ground model parameter
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for array_element_position_utm model parameter
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
%YAML 1.2
|
|
2
2
|
---
|
|
3
3
|
title: Schema for array_layouts model parameter
|
|
4
|
-
|
|
4
|
+
schema_version: 0.1.0
|
|
5
5
|
meta_schema: simpipe-schema
|
|
6
6
|
meta_schema_url: https://raw.githubusercontent.com/gammasim/simtools/main/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml
|
|
7
7
|
meta_schema_version: 0.1.0
|