├── .env_template ├── .github ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── CI-docs.yml │ ├── CI-integrationtests.yml │ ├── CI-linter.yml │ ├── CI-schema-validation.yml │ ├── CI-software-update.yml │ ├── CI-unittests.yml │ ├── build-corsika-simtel.yml │ ├── build-simtools-dev.yml │ ├── build-simtools.yml │ ├── changelog.yml │ └── pypi.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── database_scripts ├── README.md ├── dump_remote_db.sh ├── purge_local_db.sh ├── setup_local_db.sh └── upload_dump_to_local_db.sh ├── docker ├── Dockerfile-corsika-simtel ├── Dockerfile-dev ├── Dockerfile-simtools └── README.md ├── docs ├── Makefile ├── _static │ ├── simtools_logo.png │ ├── simtools_logo_no_text.png │ └── switcher.json ├── changes │ ├── .gitkeep │ ├── 1817.feature.md │ ├── 1900.maintenance.md │ ├── 1910.feature.md │ ├── 1914.maintenance.md │ ├── 1916.feature.md │ ├── 1918.model.md │ ├── 1921.feature.md │ ├── 1924.maintenance.md │ ├── 1927.maintenance.md │ ├── 1934.feature.md │ ├── 1936.maintenance.md │ └── 1937.feature.md └── source │ ├── api-reference │ ├── array_layout.md │ ├── camera.md │ ├── configuration_module.md │ ├── corsika.md │ ├── data_model.md │ ├── db_handler.md │ ├── dependencies.md │ ├── index.md │ ├── io.md │ ├── job_execution.md │ ├── mc_model.md │ ├── production_configuration.md │ ├── ray_tracing.md │ ├── reporting.md │ ├── runners.md │ ├── sim_events.md │ ├── sim_telarray.md │ ├── simulators.md │ ├── testing.md │ ├── trigger.md │ ├── utils.md │ └── visualization.md │ ├── changelog.md │ ├── components │ ├── corsika.md │ ├── databases.md │ ├── index.md │ ├── sim_telarray.md │ └── simulation_models.md │ ├── conf.py │ ├── data-model │ ├── index.md │ └── model_parameters.md │ ├── developer-guide │ ├── coding_guidelines.md │ ├── continuous_integration.md │ ├── developer_guidelines.md │ ├── documentation.md │ ├── getting_started_as_developer.md │ ├── index.md │ ├── pull_requests.md │ ├── release.md │ ├── simtools_build_images.md │ └── testing.md │ ├── index.md │ └── user-guide │ ├── applications.md │ ├── applications │ ├── images │ │ ├── derive_mirror_rnda_North-MST-FlashCam-D.png │ │ ├── derive_mirror_rnda_North-MST-FlashCam-D_D80-distributions.png │ │ ├── derive_psf_parameters.png │ │ ├── gradient_descent.png │ │ ├── incident_angles_multi_calculate_incident_angles_SSTS-04.png │ │ ├── incident_angles_primary_multi_calculate_incident_angles_SSTS-04.png │ │ ├── incident_angles_secondary_multi_calculate_incident_angles_SSTS-04.png │ │ ├── plot_array_layout_example.png │ │ ├── primary_angle_vs_radius.png │ │ ├── validate_camera_efficiency_North-MST-NectarCam-D_cherenkov.png │ │ ├── validate_camera_efficiency_North-MST-NectarCam-D_nsb.png │ │ ├── validate_camera_fov_North-LST-1_pixelLayout.png │ │ ├── validate_cumulative_psf_North-LST-1_cumulativePSF.png │ │ ├── validate_cumulative_psf_North-LST-1_image.png │ │ ├── validate_optics_North-LST-1_d80_cm.png │ │ ├── validate_optics_North-LST-1_d80_deg.png │ │ ├── validate_optics_North-LST-1_eff_area.png │ │ └── validate_optics_North-LST-1_eff_flen.png │ ├── simtools-calculate-incident-angles.rst │ ├── simtools-convert-all-model-parameters-from-simtel.rst │ ├── simtools-convert-geo-coordinates-of-array-elements.rst │ ├── simtools-convert-model-parameter-from-simtel.rst │ ├── simtools-db-add-file-to-db.rst │ ├── simtools-db-add-simulation-model-from-repository-to-db.rst │ ├── simtools-db-add-value-from-json-to-db.rst │ ├── simtools-db-generate-compound-indexes.rst │ ├── simtools-db-get-array-layouts-from-db.rst │ ├── simtools-db-get-file-from-db.rst │ ├── simtools-db-get-parameter-from-db.rst │ ├── simtools-db-inspect-databases.rst │ ├── simtools-db-upload-model-repository.rst │ ├── simtools-derive-ctao-array-layouts.rst │ ├── simtools-derive-mirror-rnda.rst │ ├── simtools-derive-photon-electron-spectrum.rst │ ├── simtools-derive-psf-parameters.rst │ ├── simtools-derive-pulse-shape-parameters.rst │ ├── simtools-derive-trigger-rates.rst │ ├── simtools-docs-produce-array-element-report.rst │ ├── simtools-docs-produce-calibration-reports.rst │ ├── simtools-docs-produce-model-parameter-reports.rst │ ├── simtools-docs-produce-simulation-configuration-report.rst │ ├── simtools-generate-array-config.rst │ ├── simtools-generate-corsika-histograms.rst │ ├── simtools-generate-default-metadata.rst │ ├── simtools-generate-regular-arrays.rst │ ├── simtools-generate-simtel-event-data.rst │ ├── simtools-maintain-simulation-model-add-production.rst │ ├── simtools-maintain-simulation-model-compare-productions.rst │ ├── simtools-maintain-simulation-model-verify-production-tables.rst │ ├── simtools-merge-tables.rst │ ├── simtools-plot-array-layout.rst │ ├── simtools-plot-simtel-events.rst │ ├── simtools-plot-simulated-event-distributions.rst │ ├── simtools-plot-tabular-data-for-model-parameter.rst │ ├── simtools-plot-tabular-data.rst │ ├── simtools-print-version.rst │ ├── simtools-production-derive-corsika-limits.rst │ ├── simtools-production-derive-statistics.rst │ ├── simtools-production-generate-grid.rst │ ├── simtools-production-merge-corsika-limits.rst │ ├── simtools-run-application.rst │ ├── simtools-simulate-flasher.rst │ ├── simtools-simulate-illuminator.rst │ ├── simtools-simulate-pedestals.rst │ ├── simtools-simulate-prod-htcondor-generator.rst │ ├── simtools-simulate-prod.rst │ ├── simtools-submit-array-layouts.rst │ ├── simtools-submit-data-from-external.rst │ ├── simtools-submit-model-parameter-from-external.rst │ ├── simtools-validate-camera-efficiency.rst │ ├── simtools-validate-camera-fov.rst │ ├── simtools-validate-cumulative-psf.rst │ ├── simtools-validate-file-using-schema.rst │ └── simtools-validate-optics.rst │ ├── getting_started.md │ ├── index.md │ ├── manage_simulation_models.md │ ├── manage_simulation_models │ ├── model_import.md │ └── simulation_models_database.md │ ├── productions.md │ └── simulate_calibration_data.md ├── environment.yml ├── pyproject.toml ├── src └── simtools │ ├── __init__.py │ ├── _dev_version │ └── __init__.py │ ├── application_control.py │ ├── applications │ ├── calculate_incident_angles.py │ ├── convert_all_model_parameters_from_simtel.py │ ├── convert_geo_coordinates_of_array_elements.py │ ├── convert_model_parameter_from_simtel.py │ ├── db_add_file_to_db.py │ ├── db_add_simulation_model_from_repository_to_db.py │ ├── db_add_value_from_json_to_db.py │ ├── db_development_tools │ │ └── write_array_elements_positions_to_repository.py │ ├── db_generate_compound_indexes.py │ ├── db_get_array_layouts_from_db.py │ ├── db_get_file_from_db.py │ ├── db_get_parameter_from_db.py │ ├── db_inspect_databases.py │ ├── db_upload_model_repository.py │ ├── derive_ctao_array_layouts.py │ ├── derive_mirror_rnda.py │ ├── derive_photon_electron_spectrum.py │ ├── derive_psf_parameters.py │ ├── derive_pulse_shape_parameters.py │ ├── derive_trigger_rates.py │ ├── docs_produce_array_element_report.py │ ├── docs_produce_calibration_reports.py │ ├── docs_produce_model_parameter_reports.py │ ├── docs_produce_simulation_configuration_report.py │ ├── generate_array_config.py │ ├── generate_corsika_histograms.py │ ├── generate_default_metadata.py │ ├── generate_regular_arrays.py │ ├── generate_simtel_event_data.py │ ├── maintain_simulation_model_add_production.py │ ├── maintain_simulation_model_compare_productions.py │ ├── maintain_simulation_model_verify_production_tables.py │ ├── merge_tables.py │ ├── plot_array_layout.py │ ├── plot_simtel_events.py │ ├── plot_simulated_event_distributions.py │ ├── plot_tabular_data.py │ ├── plot_tabular_data_for_model_parameter.py │ ├── print_version.py │ ├── production_derive_corsika_limits.py │ ├── production_derive_statistics.py │ ├── production_generate_grid.py │ ├── production_merge_corsika_limits.py │ ├── run_application.py │ ├── simulate_flasher.py │ ├── simulate_illuminator.py │ ├── simulate_pedestals.py │ ├── simulate_prod.py │ ├── simulate_prod_htcondor_generator.py │ ├── submit_array_layouts.py │ ├── submit_data_from_external.py │ ├── submit_model_parameter_from_external.py │ ├── validate_camera_efficiency.py │ ├── validate_camera_fov.py │ ├── validate_cumulative_psf.py │ ├── validate_file_using_schema.py │ └── validate_optics.py │ ├── camera │ ├── camera_efficiency.py │ └── single_photon_electron_spectrum.py │ ├── configuration │ ├── commandline_parser.py │ └── configurator.py │ ├── constants.py │ ├── corsika │ ├── corsika_config.py │ ├── corsika_histograms.py │ └── primary_particle.py │ ├── data_model │ ├── data_reader.py │ ├── format_checkers.py │ ├── metadata_collector.py │ ├── metadata_model.py │ ├── model_data_writer.py │ ├── schema.py │ └── validate_data.py │ ├── db │ ├── db_handler.py │ ├── db_model_upload.py │ └── mongo_db.py │ ├── dependencies.py │ ├── io │ ├── ascii_handler.py │ ├── hdf5_handler.py │ ├── io_handler.py │ ├── legacy_data_handler.py │ └── table_handler.py │ ├── job_execution │ ├── htcondor_script_generator.py │ └── job_manager.py │ ├── layout │ ├── array_layout.py │ ├── array_layout_utils.py │ ├── geo_coordinates.py │ └── telescope_position.py │ ├── model │ ├── array_model.py │ ├── calibration_model.py │ ├── camera.py │ ├── legacy_model_parameter.py │ ├── mirrors.py │ ├── model_parameter.py │ ├── model_repository.py │ ├── model_utils.py │ ├── site_model.py │ └── telescope_model.py │ ├── production_configuration │ ├── calculate_statistical_uncertainties_grid_point.py │ ├── derive_corsika_limits.py │ ├── derive_production_statistics.py │ ├── derive_production_statistics_handler.py │ ├── generate_production_grid.py │ ├── interpolation_handler.py │ └── merge_corsika_limits.py │ ├── ray_tracing │ ├── incident_angles.py │ ├── mirror_panel_psf.py │ ├── psf_analysis.py │ ├── psf_parameter_optimisation.py │ └── ray_tracing.py │ ├── reporting │ ├── docs_auto_report_generator.py │ └── docs_read_parameters.py │ ├── resources │ ├── array-element-ids.json │ └── array_elements.yml │ ├── runners │ ├── corsika_runner.py │ ├── corsika_simtel_runner.py │ ├── runner_services.py │ ├── simtel_runner.py │ └── simtools_runner.py │ ├── schemas │ ├── application_workflow.metaschema.yml │ ├── common_definitions.schema.yml │ ├── input │ │ ├── MST_mirror_2f_measurements.schema.yml │ │ └── single_pe_spectrum.schema.yml │ ├── metadata.metaschema.yml │ ├── model_parameter.metaschema.yml │ ├── model_parameter_and_data_schema.metaschema.yml │ ├── model_parameters │ │ ├── adjust_gain.schema.yml │ │ ├── altitude.schema.yml │ │ ├── array_coordinates.schema.yml │ │ ├── array_coordinates_UTM.schema.yml │ │ ├── array_element_position_ground.schema.yml │ │ ├── array_element_position_utm.schema.yml │ │ ├── array_layouts.schema.yml │ │ ├── array_triggers.schema.yml │ │ ├── array_window.schema.yml │ │ ├── asum_clipping.schema.yml │ │ ├── asum_offset.schema.yml │ │ ├── asum_shaping.schema.yml │ │ ├── asum_threshold.schema.yml │ │ ├── atmospheric_profile.schema.yml │ │ ├── atmospheric_transmission.schema.yml │ │ ├── axes_offsets.schema.yml │ │ ├── calibration_devices.schema.yml │ │ ├── camera_body_diameter.schema.yml │ │ ├── camera_body_shape.schema.yml │ │ ├── camera_config_file.schema.yml │ │ ├── camera_config_rotate.schema.yml │ │ ├── camera_degraded_efficiency.schema.yml │ │ ├── camera_degraded_map.schema.yml │ │ ├── camera_depth.schema.yml │ │ ├── camera_filter.schema.yml │ │ ├── camera_filter_incidence_angle.schema.yml │ │ ├── camera_pixels.schema.yml │ │ ├── camera_transmission.schema.yml │ │ ├── channels_per_chip.schema.yml │ │ ├── correct_nsb_spectrum_to_telescope_altitude.schema.yml │ │ ├── corsika_cherenkov_photon_bunch_size.schema.yml │ │ ├── corsika_cherenkov_photon_wavelength_range.schema.yml │ │ ├── corsika_first_interaction_height.schema.yml │ │ ├── corsika_iact_io_buffer.schema.yml │ │ ├── corsika_iact_max_bunches.schema.yml │ │ ├── corsika_iact_split_auto.schema.yml │ │ ├── corsika_longitudinal_shower_development.schema.yml │ │ ├── corsika_observation_level.schema.yml │ │ ├── corsika_particle_kinetic_energy_cutoff.schema.yml │ │ ├── corsika_starting_grammage.schema.yml │ │ ├── dark_events.schema.yml │ │ ├── default_trigger.schema.yml │ │ ├── design_model.schema.yml │ │ ├── disc_ac_coupled.schema.yml │ │ ├── disc_bins.schema.yml │ │ ├── disc_start.schema.yml │ │ ├── discriminator_amplitude.schema.yml │ │ ├── discriminator_fall_time.schema.yml │ │ ├── discriminator_gate_length.schema.yml │ │ ├── discriminator_hysteresis.schema.yml │ │ ├── discriminator_output_amplitude.schema.yml │ │ ├── discriminator_output_var_percent.schema.yml │ │ ├── discriminator_pulse_shape.schema.yml │ │ ├── discriminator_rise_time.schema.yml │ │ ├── discriminator_scale_threshold.schema.yml │ │ ├── discriminator_sigsum_over_threshold.schema.yml │ │ ├── discriminator_threshold.schema.yml │ │ ├── discriminator_time_over_threshold.schema.yml │ │ ├── discriminator_var_gate_length.schema.yml │ │ ├── discriminator_var_sigsum_over_threshold.schema.yml │ │ ├── discriminator_var_threshold.schema.yml │ │ ├── discriminator_var_time_over_threshold.schema.yml │ │ ├── dish_shape_length.schema.yml │ │ ├── dsum_clipping.schema.yml │ │ ├── dsum_ignore_below.schema.yml │ │ ├── dsum_offset.schema.yml │ │ ├── dsum_pedsub.schema.yml │ │ ├── dsum_pre_clipping.schema.yml │ │ ├── dsum_prescale.schema.yml │ │ ├── dsum_presum_max.schema.yml │ │ ├── dsum_presum_shift.schema.yml │ │ ├── dsum_shaping.schema.yml │ │ ├── dsum_shaping_renormalize.schema.yml │ │ ├── dsum_threshold.schema.yml │ │ ├── dsum_zero_clip.schema.yml │ │ ├── effective_focal_length.schema.yml │ │ ├── epsg_code.schema.yml │ │ ├── fadc_ac_coupled.schema.yml │ │ ├── fadc_amplitude.schema.yml │ │ ├── fadc_bins.schema.yml │ │ ├── fadc_compensate_pedestal.schema.yml │ │ ├── fadc_dev_pedestal.schema.yml │ │ ├── fadc_err_compensate_pedestal.schema.yml │ │ ├── fadc_err_pedestal.schema.yml │ │ ├── fadc_lg_amplitude.schema.yml │ │ ├── fadc_lg_compensate_pedestal.schema.yml │ │ ├── fadc_lg_dev_pedestal.schema.yml │ │ ├── fadc_lg_err_compensate_pedestal.schema.yml │ │ ├── fadc_lg_err_pedestal.schema.yml │ │ ├── fadc_lg_max_signal.schema.yml │ │ ├── fadc_lg_max_sum.schema.yml │ │ ├── fadc_lg_noise.schema.yml │ │ ├── fadc_lg_pedestal.schema.yml │ │ ├── fadc_lg_sensitivity.schema.yml │ │ ├── fadc_lg_sysvar_pedestal.schema.yml │ │ ├── fadc_lg_var_pedestal.schema.yml │ │ ├── fadc_lg_var_sensitivity.schema.yml │ │ ├── fadc_long_event_threshold.schema.yml │ │ ├── fadc_long_sum_bins.schema.yml │ │ ├── fadc_long_sum_offset.schema.yml │ │ ├── fadc_max_signal.schema.yml │ │ ├── fadc_max_sum.schema.yml │ │ ├── fadc_mhz.schema.yml │ │ ├── fadc_noise.schema.yml │ │ ├── fadc_pedestal.schema.yml │ │ ├── fadc_pulse_shape.schema.yml │ │ ├── fadc_sensitivity.schema.yml │ │ ├── fadc_sum_bins.schema.yml │ │ ├── fadc_sum_offset.schema.yml │ │ ├── fadc_sysvar_pedestal.schema.yml │ │ ├── fadc_var_pedestal.schema.yml │ │ ├── fadc_var_sensitivity.schema.yml │ │ ├── fake_mirror_list.schema.yml │ │ ├── flasher_angular_distribution.schema.yml │ │ ├── flasher_angular_distribution_width.schema.yml │ │ ├── flasher_bunch_size.schema.yml │ │ ├── flasher_external_trigger.schema.yml │ │ ├── flasher_photons.schema.yml │ │ ├── flasher_position.schema.yml │ │ ├── flasher_pulse_exp_decay.schema.yml │ │ ├── flasher_pulse_offset.schema.yml │ │ ├── flasher_pulse_shape.schema.yml │ │ ├── flasher_pulse_width.schema.yml │ │ ├── flasher_type.schema.yml │ │ ├── flasher_var_photons.schema.yml │ │ ├── flasher_wavelength.schema.yml │ │ ├── flatfielding.schema.yml │ │ ├── focal_length.schema.yml │ │ ├── focal_surface_parameters.schema.yml │ │ ├── focal_surface_ref_radius.schema.yml │ │ ├── focus_offset.schema.yml │ │ ├── gain_variation.schema.yml │ │ ├── geomag_horizontal.schema.yml │ │ ├── geomag_rotation.schema.yml │ │ ├── geomag_vertical.schema.yml │ │ ├── hg_lg_variation.schema.yml │ │ ├── iobuf_maximum.schema.yml │ │ ├── iobuf_output_maximum.schema.yml │ │ ├── laser_events.schema.yml │ │ ├── laser_external_trigger.schema.yml │ │ ├── laser_photons.schema.yml │ │ ├── laser_pulse_exptime.schema.yml │ │ ├── laser_pulse_offset.schema.yml │ │ ├── laser_pulse_sigtime.schema.yml │ │ ├── laser_pulse_twidth.schema.yml │ │ ├── laser_var_photons.schema.yml │ │ ├── laser_wavelength.schema.yml │ │ ├── led_events.schema.yml │ │ ├── led_photons.schema.yml │ │ ├── led_pulse_offset.schema.yml │ │ ├── led_pulse_sigtime.schema.yml │ │ ├── led_var_photons.schema.yml │ │ ├── lightguide_efficiency_vs_incidence_angle.schema.yml │ │ ├── lightguide_efficiency_vs_wavelength.schema.yml │ │ ├── min_photoelectrons.schema.yml │ │ ├── min_photons.schema.yml │ │ ├── mirror_align_random_distance.schema.yml │ │ ├── mirror_align_random_horizontal.schema.yml │ │ ├── mirror_align_random_vertical.schema.yml │ │ ├── mirror_class.schema.yml │ │ ├── mirror_degraded_reflection.schema.yml │ │ ├── mirror_focal_length.schema.yml │ │ ├── mirror_list.schema.yml │ │ ├── mirror_offset.schema.yml │ │ ├── mirror_panel_2f_measurements.schema.yml │ │ ├── mirror_reflection_random_angle.schema.yml │ │ ├── mirror_reflectivity.schema.yml │ │ ├── multiplicity_offset.schema.yml │ │ ├── muon_mono_threshold.schema.yml │ │ ├── nsb_autoscale_airmass.schema.yml │ │ ├── nsb_gain_drop_scale.schema.yml │ │ ├── nsb_offaxis.schema.yml │ │ ├── nsb_pixel_rate.schema.yml │ │ ├── nsb_reference_spectrum.schema.yml │ │ ├── nsb_reference_value.schema.yml │ │ ├── nsb_scaling_factor.schema.yml │ │ ├── nsb_sky_map.schema.yml │ │ ├── nsb_spectrum.schema.yml │ │ ├── num_gains.schema.yml │ │ ├── only_triggered_telescopes.schema.yml │ │ ├── optics_properties.schema.yml │ │ ├── parabolic_dish.schema.yml │ │ ├── pedestal_events.schema.yml │ │ ├── photon_delay.schema.yml │ │ ├── photons_per_run.schema.yml │ │ ├── pixel_cells.schema.yml │ │ ├── pixels_parallel.schema.yml │ │ ├── pixeltrg_time_step.schema.yml │ │ ├── pm_average_gain.schema.yml │ │ ├── pm_collection_efficiency.schema.yml │ │ ├── pm_gain_index.schema.yml │ │ ├── pm_photoelectron_spectrum.schema.yml │ │ ├── pm_transit_time.schema.yml │ │ ├── pm_voltage_variation.schema.yml │ │ ├── primary_mirror_degraded_map.schema.yml │ │ ├── primary_mirror_diameter.schema.yml │ │ ├── primary_mirror_hole_diameter.schema.yml │ │ ├── primary_mirror_incidence_angle.schema.yml │ │ ├── primary_mirror_parameters.schema.yml │ │ ├── primary_mirror_ref_radius.schema.yml │ │ ├── primary_mirror_segmentation.schema.yml │ │ ├── qe_variation.schema.yml │ │ ├── quantum_efficiency.schema.yml │ │ ├── random_focal_length.schema.yml │ │ ├── random_generator.schema.yml │ │ ├── random_mono_probability.schema.yml │ │ ├── reference_point_altitude.schema.yml │ │ ├── reference_point_latitude.schema.yml │ │ ├── reference_point_longitude.schema.yml │ │ ├── reference_point_utm_east.schema.yml │ │ ├── reference_point_utm_north.schema.yml │ │ ├── sampled_output.schema.yml │ │ ├── save_pe_with_amplitude.schema.yml │ │ ├── secondary_mirror_baffle.schema.yml │ │ ├── secondary_mirror_degraded_map.schema.yml │ │ ├── secondary_mirror_degraded_reflection.schema.yml │ │ ├── secondary_mirror_diameter.schema.yml │ │ ├── secondary_mirror_hole_diameter.schema.yml │ │ ├── secondary_mirror_incidence_angle.schema.yml │ │ ├── secondary_mirror_parameters.schema.yml │ │ ├── secondary_mirror_ref_radius.schema.yml │ │ ├── secondary_mirror_reflectivity.schema.yml │ │ ├── secondary_mirror_segmentation.schema.yml │ │ ├── secondary_mirror_shadow_diameter.schema.yml │ │ ├── secondary_mirror_shadow_offset.schema.yml │ │ ├── stars.schema.yml │ │ ├── store_photoelectrons.schema.yml │ │ ├── tailcut_scale.schema.yml │ │ ├── telescope_axis_height.schema.yml │ │ ├── telescope_random_angle.schema.yml │ │ ├── telescope_random_error.schema.yml │ │ ├── telescope_sphere_radius.schema.yml │ │ ├── telescope_transmission.schema.yml │ │ ├── teltrig_min_sigsum.schema.yml │ │ ├── teltrig_min_time.schema.yml │ │ ├── transit_time_calib_error.schema.yml │ │ ├── transit_time_compensate_error.schema.yml │ │ ├── transit_time_compensate_step.schema.yml │ │ ├── transit_time_error.schema.yml │ │ ├── transit_time_jitter.schema.yml │ │ ├── transit_time_random.schema.yml │ │ ├── trigger_current_limit.schema.yml │ │ ├── trigger_delay_compensation.schema.yml │ │ └── trigger_pixels.schema.yml │ ├── plot_configuration.metaschema.yml │ ├── production_configuration_metrics.schema.yml │ ├── production_tables.schema.yml │ └── simulation_models_info.schema.yml │ ├── settings.py │ ├── sim_events │ ├── file_info.py │ ├── histograms.py │ ├── reader.py │ └── writer.py │ ├── simtel │ ├── pulse_shapes.py │ ├── simtel_config_reader.py │ ├── simtel_config_writer.py │ ├── simtel_io_metadata.py │ ├── simtel_table_reader.py │ ├── simulator_array.py │ ├── simulator_camera_efficiency.py │ ├── simulator_light_emission.py │ └── simulator_ray_tracing.py │ ├── simulator.py │ ├── telescope_trigger_rates.py │ ├── testing │ ├── assertions.py │ ├── configuration.py │ ├── helpers.py │ ├── log_inspector.py │ ├── sim_telarray_metadata.py │ └── validate_output.py │ ├── utils │ ├── general.py │ ├── geometry.py │ ├── names.py │ └── value_conversion.py │ ├── version.py │ └── visualization │ ├── legend_handlers.py │ ├── plot_array_layout.py │ ├── plot_camera.py │ ├── plot_corsika_histograms.py │ ├── plot_incident_angles.py │ ├── plot_mirrors.py │ ├── plot_pixels.py │ ├── plot_psf.py │ ├── plot_simtel_event_histograms.py │ ├── plot_simtel_events.py │ ├── plot_tables.py │ └── visualize.py └── tests ├── conftest.py ├── integration_tests ├── config │ ├── calculate_incident_angles_run_dual_mirror.yml │ ├── calculate_incident_angles_run_dual_mirror_debug.yml │ ├── calculate_incident_angles_run_single_mirror.yml │ ├── convert_all_model_parameters_from_simtel_num_gains.yml │ ├── convert_geo_coordinates_of_array_elements_ground_to_ground.yml │ ├── convert_geo_coordinates_of_array_elements_ground_to_utm_json.yml │ ├── convert_geo_coordinates_of_array_elements_mercator_to_utm_meta_in_table.yml │ ├── convert_geo_coordinates_of_array_elements_print_compact_corsika_telescopeheights.yml │ ├── convert_geo_coordinates_of_array_elements_print_compact_nocors_corsika.yml │ ├── convert_geo_coordinates_of_array_elements_print_compact_nocors_utm.yml │ ├── convert_geo_coordinates_of_array_elements_print_ground.yml │ ├── convert_geo_coordinates_of_array_elements_utm_to_ground_json.yml │ ├── convert_geo_coordinates_of_array_elements_utm_to_ground_meta_in_table.yml │ ├── convert_geo_coordinates_of_array_elements_utm_to_ground_meta_in_yml.yml │ ├── convert_geo_coordinates_of_array_elements_utm_to_mercator_meta_in_table.yml │ ├── convert_model_parameter_from_simtel_num_gains.yml │ ├── db_add_file_to_db_run.yml │ ├── db_add_value_from_json_to_db_run.yml │ ├── db_get_array_layouts_from_db_layout_list.yml │ ├── db_get_array_layouts_from_db_layout_name.yml │ ├── db_get_array_layouts_from_db_list_arrays.yml │ ├── db_get_file_from_db_CTA-Simulation-Model-two-files.yml │ ├── db_get_file_from_db_CTA-Simulation-Model.yml │ ├── db_get_parameter_from_db_array_element_position_ground.yml │ ├── db_get_parameter_from_db_site_parameter.yml │ ├── db_get_parameter_from_db_telescope_model_version.yml │ ├── db_get_parameter_from_db_telescope_parameter_version.yml │ ├── db_inspect_databases.yml │ ├── derive_ctao_array_layouts.yml │ ├── derive_mirror_rnda_psf_mean.yml │ ├── derive_mirror_rnda_psf_measurement.yml │ ├── derive_mirror_rnda_psf_no_tuning.yml │ ├── derive_mirror_rnda_psf_random_flen.yml │ ├── derive_photon_electron_spectrum_lst_ecsv.yml │ ├── derive_photon_electron_spectrum_lst_legacy_format.yml │ ├── derive_psf_parameters_run.yml │ ├── derive_pulse_shape_parameters.yml │ ├── derive_trigger_rates_db_arrays_short.yml │ ├── docs_produce_array_element_report_run.yml │ ├── docs_produce_calibration_reports.yml │ ├── docs_produce_model_parameter_reports_run.yml │ ├── docs_produce_simulation_configuration_report_run.yml │ ├── generate_array_config_run.yml │ ├── generate_corsika_histograms_1D_run_header.yml │ ├── generate_corsika_histograms_1d_and_2d_run_header.yml │ ├── generate_corsika_histograms_2D_run_header.yml │ ├── generate_corsika_histograms_figures.yml │ ├── generate_corsika_histograms_individual_telescopes_and_indices.yml │ ├── generate_corsika_histograms_output.yml │ ├── generate_corsika_histograms_tables.yml │ ├── generate_corsika_histograms_telescope_indices.yml │ ├── generate_default_metadata_to_json_file.yml │ ├── generate_default_metadata_to_yml_file.yml │ ├── generate_regular_arrays_run_north.yml │ ├── generate_regular_arrays_run_south.yml │ ├── generate_simtel_event_data_fits.yml │ ├── generate_simtel_event_data_hdf5.yml │ ├── merge_tables_one_fits.yml │ ├── merge_tables_two_fits.yml │ ├── merge_tables_two_hdf5.yml │ ├── plot_array_layout_by_name.yml │ ├── plot_array_layout_from_array_layouts_json.yml │ ├── plot_array_layout_from_list_north.yml │ ├── plot_array_layout_from_list_south.yml │ ├── plot_array_layout_from_list_utm_south.yml │ ├── plot_array_layout_one_file.yml │ ├── plot_array_layout_one_file_with_name.yml │ ├── plot_array_layout_two_files.yml │ ├── plot_simtel_events.yml │ ├── plot_simulated_event_distributions.yml │ ├── plot_tabular_data_for_model_parameter_atmospheric_density_all.yml │ ├── plot_tabular_data_for_model_parameter_atmospheric_density_one_type.yml │ ├── plot_tabular_data_for_model_parameter_fadc_pulse_shape.yml │ ├── plot_tabular_data_for_single_pe_from_ecsv_file.yml │ ├── plot_tabular_data_for_single_pe_legacy_data.yml │ ├── print_version.yml │ ├── production_derive_corsika_limits_fits.yml │ ├── production_derive_corsika_limits_hdf5_db_arrays.yml │ ├── production_derive_statistics.yml │ ├── production_generate_grid.yml │ ├── production_merge_corsika_limits_check_only.yml │ ├── production_merge_corsika_limits_merge_and_check.yml │ ├── production_merge_corsika_limits_merge_only.yml │ ├── simulate_flasher_MSFx-FlashCam-full_simulation.yml │ ├── simulate_flasher_direct_injection_LST_North.yml │ ├── simulate_flasher_direct_injection_LST_South.yml │ ├── simulate_flasher_direct_injection_MST_FlashCam.yml │ ├── simulate_flasher_direct_injection_MST_NectarCam.yml │ ├── simulate_flasher_full_simulation_LST_North.yml │ ├── simulate_flasher_full_simulation_LST_South.yml │ ├── simulate_flasher_full_simulation_mst_flashcam.yml │ ├── simulate_flasher_full_simulation_mst_nectarcam.yml │ ├── simulate_illuminator_configurable_position.yml │ ├── simulate_illuminator_layout.yml │ ├── simulate_pedestals_20_deg_North.yml │ ├── simulate_pedestals_dark_20_deg_North.yml │ ├── simulate_pedestals_nsb_only_20_deg_North.yml │ ├── simulate_prod_gamma_20_deg_South_multiple_model_versions.yml │ ├── simulate_prod_gamma_40_deg_North_check_output.yml │ ├── simulate_prod_gamma_40_deg_South_check_output.yml │ ├── simulate_prod_gamma_40_deg_South_corsika_only.yml │ ├── simulate_prod_gamma_40_deg_South_sim_telarray_only.yml │ ├── simulate_prod_gamma_62_deg_South_check_output.yml │ ├── simulate_prod_htcondor_generator_gamma_20_deg_North.yml │ ├── simulate_prod_proton_20_deg_North_check_output.yml │ ├── submit_array_layouts.yml │ ├── submit_data_from_external_submit_table.yml │ ├── submit_model_parameter_from_external_submit_focus_offset.yml │ ├── submit_model_parameter_from_external_submit_mirror_list.yml │ ├── submit_model_parameter_from_external_submit_num_gains.yml │ ├── submit_model_parameter_from_external_submit_num_gains_wildcards.yml │ ├── submit_model_parameter_from_external_submit_reference_point_altitude.yml │ ├── validate_camera_efficiency_lstn-02.yml │ ├── validate_camera_efficiency_mstx_flashcam_south.yml │ ├── validate_camera_efficiency_mstx_nectarcam_north.yml │ ├── validate_camera_efficiency_ssts.yml │ ├── validate_camera_fov_run.yml │ ├── validate_cumulative_psf_prod6_psf.yml │ ├── validate_file_using_schema_ecsv_validate_data.yml │ ├── validate_file_using_schema_ecsv_validate_metadata.yml │ ├── validate_file_using_schema_json_input_test_meta.yml │ ├── validate_file_using_schema_json_validate_data.yml │ ├── validate_file_using_schema_json_validate_data_from_directory.yml │ ├── validate_file_using_schema_json_validate_data_schema_from_meta.yml │ ├── validate_file_using_schema_json_validate_model_parameter.yml │ ├── validate_file_using_schema_json_validate_schema-0.1.0.yml │ ├── validate_file_using_schema_json_validate_schema-0.2.0.yml │ ├── validate_file_using_schema_json_validate_schema-0.3.0.yml │ ├── validate_file_using_schema_validate_directory_of_model_parameters.yml │ ├── validate_file_using_schema_yml_validate_schema.yml │ ├── validate_file_using_schema_yml_validate_schema_schema_from_meta.yml │ └── validate_optics_run.yml ├── test_applications_from_config.py └── test_ray_tracing.py ├── resources ├── Afterpulsing-probability-with-errors.ecsv ├── CTA-North-LSTN-01-Released_test-telescope-model.cfg ├── LST_afterpulses.dat ├── LST_afterpulses.ecsv ├── MLTdata-preproduction.ecsv ├── MLTdata-preproduction.meta.yml ├── PSFcurve_data_v2.ecsv ├── PSFcurve_data_v2.txt ├── SinglePhe_spectrum_totalfit_19pixel-average_20200601.csv ├── SinglePhe_spectrum_totalfit_19pixel-average_20200601.ecsv ├── Transmission_Spectrum_PlexiGlass.dat ├── benn_ellison_spectrum_for_testing.txt ├── camera_efficiency_North_MSTx-NectarCam_za20.0deg_azm000deg_validate_camera_efficiency.dat ├── camera_efficiency_table_North_LSTN-01_za20.0deg_azm000deg_validate_camera_efficiency.ecsv ├── corsikaConfigTest_astropy_headers.yml ├── corsika_simulation_limits │ ├── corsika_simulation_limits_lookup_01.ecsv │ ├── corsika_simulation_limits_lookup_02.ecsv │ ├── grid_definition.yaml │ └── merged_corsika_limits_for_test.ecsv ├── corsika_simulation_limits_lookup.ecsv ├── derive_mirror_rnda_psf_mean.ecsv ├── derive_mirror_rnda_psf_measurement.ecsv ├── derive_mirror_rnda_psf_no_tuning.ecsv ├── derive_mirror_rnda_psf_random_flen.ecsv ├── example_non_utf-8_file.lis ├── ff-1m_flasher.simtel.zst ├── gamma_diffuse_run000010_za20deg_azm000deg_North_alpha_6.0.0_test_file.simtel.zst ├── gamma_diffuse_run000010_za20deg_azm000deg_North_alpha_6.0.0_test_file.simtel │ ├── config.yml │ ├── gamma_diffuse_run000010_za20deg_azm000deg_North_alpha_6.0.0_test_file.corsika.log.gz │ ├── gamma_diffuse_run000010_za20deg_azm000deg_North_alpha_6.0.0_test_file.hdata.zst │ └── gamma_diffuse_run000010_za20deg_azm000deg_North_alpha_6.0.0_test_file.log.gz ├── gamma_run000007_za40deg_azm180deg_South_subsystem_lsts_6.0.2_test.corsika.zst ├── gamma_run000007_za40deg_azm180deg_South_subsystem_lsts_6.0.2_test │ ├── corsika_config_gamma_za40deg_azm180deg_South_subsystem_lsts_6.0.2_test.input │ └── simulate_prod_gamma_40_deg_South_corsika_only.yml ├── gamma_run2_za20deg_azm0deg-North-Prod5_test-production-5.hdata.zst ├── info_test_model_parameter_changes.yml ├── log_sub_corsika_run000001_gamma_North_test_layout_test-production.out ├── mirror_list_CTA-N-LST1_v2019-03-31_rotated.ecsv ├── mirror_list_CTA-N-LST1_v2019-03-31_rotated_simtel.dat ├── model_parameters │ ├── array_element_position_ground-2.0.0.json │ ├── array_element_position_utm-2.0.0.json │ ├── array_layouts-2.0.2.json │ ├── mirror_list-2.0.0.json │ ├── num_gains-0.0.0.json │ ├── schema-0.2.0 │ │ └── num_gains-1.0.0.json │ └── schema-0.3.0 │ │ └── num_gains-1.0.0.json ├── num_gains.meta.yml ├── pixel_layout.dat ├── plot_single_pe_config_data.yml ├── plot_single_pe_config_from_ecsv_file.yml ├── production_dl2_fits │ ├── prod6_LaPalma-20deg_gamma_cone.N.Am-4LSTs09MSTs_ID0_reduced.fits │ ├── prod6_LaPalma-40deg_gamma_cone.N.Am-4LSTs09MSTs_ID0_reduced.fits │ ├── prod6_LaPalma-52deg_gamma_cone.N.Am-4LSTs09MSTs_ID0_reduced.fits │ └── prod6_LaPalma-60deg_gamma_cone.N.Am-4LSTs09MSTs_ID0_reduced.fits ├── production_grid_generation_axes_definition.yml ├── production_grid_points.json ├── production_layouts_telescope_ids.yml ├── production_simulation_config_metrics.yml ├── production_tables_changes_for_threshold_study_6.2.0.yml ├── proton_run000201_za20deg_azm000deg_North_alpha_6.0.0_test_file.simtel.zst ├── proton_run000201_za20deg_azm000deg_North_alpha_6.0.0_test_file │ ├── config.yml │ ├── proton_run000201_za20deg_azm000deg_North_alpha_6.0.0_test_file.corsika.log.gz │ ├── proton_run000201_za20deg_azm000deg_North_alpha_6.0.0_test_file.hdata.zst │ └── proton_run000201_za20deg_azm000deg_North_alpha_6.0.0_test_file.log.gz ├── proton_run000202_za20deg_azm000deg_North_alpha_6.0.0_test_file.simtel.zst ├── proton_run000202_za20deg_azm000deg_North_alpha_6.0.0_test_file │ ├── config.yml │ ├── model_files_6.0.0.tar.gz │ ├── proton_run000202_za20deg_azm000deg_North_alpha_6.0.0_test_file.corsika.log.gz │ ├── proton_run000202_za20deg_azm000deg_North_alpha_6.0.0_test_file.hdata.zst │ └── proton_run000202_za20deg_azm000deg_North_alpha_6.0.0_test_file.log.gz ├── proton_za20deg_azm000deg_North_alpha_6.0.0_reduced_event_data.fits.gz ├── proton_za20deg_azm000deg_North_alpha_6.0.0_reduced_event_data.hdf5 ├── proton_za20deg_azm000deg_North_alpha_6.0.0_reduced_event_data │ ├── config_fits.log │ ├── config_fits.yml │ ├── config_hdf5.log │ ├── config_hdf5.yml │ ├── proton_za20deg_azm000deg_North_alpha_6.0.0_reduced_event_data.fits.meta.yml │ └── proton_za20deg_azm000deg_North_alpha_6.0.0_reduced_event_data.meta.yml ├── ray_tracing_North_LSTN-01_d10.0km_za20.0deg_validate_optics.ecsv ├── ray_tracing_photons_North_LSTN-01_d10.0km_za20.0deg_off0.000deg_validate_optics.lis.gz ├── reference_point_altitude.json ├── sim_telarray_configurations │ ├── 5.0.0 │ │ ├── CTA-North-LSTN-01_test.cfg │ │ ├── CTA-North-LSTN-02_test.cfg │ │ ├── CTA-North-MSTN-01_test.cfg │ │ ├── CTA-South-LSTS-01_test.cfg │ │ ├── CTA-South-MSTS-01_test.cfg │ │ ├── CTA-South-SSTS-01_test.cfg │ │ ├── CTA-alpha-North_test.cfg │ │ └── CTA-beta-South_test.cfg │ └── 6.0.2 │ │ ├── CTA-North-LSTN-01_test.cfg │ │ ├── CTA-North-LSTN-02_test.cfg │ │ ├── CTA-North-MSTN-01_test.cfg │ │ ├── CTA-South-LSTS-01_test.cfg │ │ ├── CTA-South-MSTS-01_test.cfg │ │ ├── CTA-South-SSTS-01_test.cfg │ │ ├── CTA-alpha-North_test.cfg │ │ └── CTA-beta-South_test.cfg ├── simtel_config_test_la_palma.cfg ├── spe_LST_2022-04-27_AP2.0e-4.dat ├── spe_LST_2022-04-27_AP2.0e-4.ecsv ├── spe_LST_2025-02-15-used.ecsv ├── tel_output_10GeV-2-gamma-20deg-CTAO-South.corsikaio ├── telescope_positions-North-ground.ecsv ├── telescope_positions-North-mercator.ecsv ├── telescope_positions-North-utm-without-cta-meta.ecsv ├── telescope_positions-North-utm.ecsv ├── telescope_positions-North-utm.meta.yml ├── telescope_positions-North-with-calibration-devices-ground.ecsv ├── telescope_positions-South-ground.ecsv ├── test_file.list └── xyzls_layout.simtel.gz └── unit_tests ├── __init__.py ├── camera ├── test_camera_efficiency.py └── test_single_photon_electron_spectrum.py ├── configuration ├── test_commandline_parser.py └── test_configurator.py ├── corsika ├── test_corsika_config.py ├── test_corsika_histograms.py └── test_primary_particle.py ├── data_model ├── test_data_reader.py ├── test_format_checkers.py ├── test_metadata_collector.py ├── test_metadata_model.py ├── test_model_data_writer.py ├── test_schema.py └── test_validate_data.py ├── db ├── test_db_handler.py ├── test_db_model_upload.py └── test_mongo_db.py ├── io ├── test_ascii_handler.py ├── test_hdf5_handler.py ├── test_io_handler.py ├── test_legacy_data_handler.py └── test_table_handler.py ├── job_execution ├── test_htcondor_script_generator.py └── test_job_manager.py ├── layout ├── test_array_layout.py ├── test_array_layout_utils.py ├── test_geo_coordinates.py └── test_telescope_position.py ├── model ├── test_array_model.py ├── test_calibration_model.py ├── test_camera.py ├── test_legacy_model_parameter.py ├── test_mirrors.py ├── test_model_parameter.py ├── test_model_repository.py ├── test_model_utils.py ├── test_site_model.py └── test_telescope_model.py ├── production_configuration ├── test_calculate_statistical_uncertainties_grid.py ├── test_derive_corsika_limits.py ├── test_derive_production_statistics.py ├── test_derive_production_statistics_handler.py ├── test_generate_production_grid.py ├── test_interpolation_handler.py └── test_merge_corsika_limits.py ├── ray_tracing ├── test_incident_angles.py ├── test_mirror_panel_psf.py ├── test_psf_analysis.py ├── test_psf_parameter_optimisation.py └── test_ray_tracing.py ├── reporting ├── test_docs_auto_report_generator.py └── test_docs_read_parameters.py ├── runners ├── test_corsika_runner.py ├── test_corsika_simtel_runner.py ├── test_runner_services.py ├── test_simtel_runner.py └── test_simtools_runner.py ├── sim_events ├── test_file_info.py ├── test_histograms.py ├── test_reader.py └── test_writer.py ├── simtel ├── test_pulse_shapes.py ├── test_simtel_config_reader.py ├── test_simtel_config_writer.py ├── test_simtel_io_metadata.py ├── test_simtel_table_reader.py ├── test_simulator_array.py ├── test_simulator_camera_efficiency.py ├── test_simulator_light_emission.py └── test_simulator_ray_tracing.py ├── test_application_control.py ├── test_constants.py ├── test_dependencies.py ├── test_settings.py ├── test_simulator.py ├── test_telescope_trigger_rates.py ├── test_version.py ├── testing ├── test_assertions.py ├── test_configuration.py ├── test_helpers.py ├── test_log_inspector.py ├── test_sim_telarray_metadata.py └── test_validate_output.py ├── utils ├── test_general.py ├── test_geometry.py ├── test_names.py └── test_value_conversion.py └── visualization ├── test_legend_handlers.py ├── test_plot_array_layout.py ├── test_plot_corsika_histograms.py ├── test_plot_incident_angles.py ├── test_plot_mirrors.py ├── test_plot_pixels.py ├── test_plot_psf.py ├── test_plot_simtel_event_histograms.py ├── test_plot_simtel_events.py ├── test_plot_tables.py └── test_visualize.py /.env_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.env_template -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/CI-docs.yml -------------------------------------------------------------------------------- /.github/workflows/CI-integrationtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/CI-integrationtests.yml -------------------------------------------------------------------------------- /.github/workflows/CI-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/CI-linter.yml -------------------------------------------------------------------------------- /.github/workflows/CI-schema-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/CI-schema-validation.yml -------------------------------------------------------------------------------- /.github/workflows/CI-software-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/CI-software-update.yml -------------------------------------------------------------------------------- /.github/workflows/CI-unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/CI-unittests.yml -------------------------------------------------------------------------------- /.github/workflows/build-corsika-simtel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/build-corsika-simtel.yml -------------------------------------------------------------------------------- /.github/workflows/build-simtools-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/build-simtools-dev.yml -------------------------------------------------------------------------------- /.github/workflows/build-simtools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/build-simtools.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/README.md -------------------------------------------------------------------------------- /database_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/database_scripts/README.md -------------------------------------------------------------------------------- /database_scripts/dump_remote_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/database_scripts/dump_remote_db.sh -------------------------------------------------------------------------------- /database_scripts/purge_local_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/database_scripts/purge_local_db.sh -------------------------------------------------------------------------------- /database_scripts/setup_local_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/database_scripts/setup_local_db.sh -------------------------------------------------------------------------------- /database_scripts/upload_dump_to_local_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/database_scripts/upload_dump_to_local_db.sh -------------------------------------------------------------------------------- /docker/Dockerfile-corsika-simtel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docker/Dockerfile-corsika-simtel -------------------------------------------------------------------------------- /docker/Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docker/Dockerfile-dev -------------------------------------------------------------------------------- /docker/Dockerfile-simtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docker/Dockerfile-simtools -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docker/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/simtools_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/_static/simtools_logo.png -------------------------------------------------------------------------------- /docs/_static/simtools_logo_no_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/_static/simtools_logo_no_text.png -------------------------------------------------------------------------------- /docs/_static/switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/_static/switcher.json -------------------------------------------------------------------------------- /docs/changes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/changes/1817.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1817.feature.md -------------------------------------------------------------------------------- /docs/changes/1900.maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1900.maintenance.md -------------------------------------------------------------------------------- /docs/changes/1910.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1910.feature.md -------------------------------------------------------------------------------- /docs/changes/1914.maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1914.maintenance.md -------------------------------------------------------------------------------- /docs/changes/1916.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1916.feature.md -------------------------------------------------------------------------------- /docs/changes/1918.model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1918.model.md -------------------------------------------------------------------------------- /docs/changes/1921.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1921.feature.md -------------------------------------------------------------------------------- /docs/changes/1924.maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1924.maintenance.md -------------------------------------------------------------------------------- /docs/changes/1927.maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1927.maintenance.md -------------------------------------------------------------------------------- /docs/changes/1934.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1934.feature.md -------------------------------------------------------------------------------- /docs/changes/1936.maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1936.maintenance.md -------------------------------------------------------------------------------- /docs/changes/1937.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/changes/1937.feature.md -------------------------------------------------------------------------------- /docs/source/api-reference/array_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/array_layout.md -------------------------------------------------------------------------------- /docs/source/api-reference/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/camera.md -------------------------------------------------------------------------------- /docs/source/api-reference/configuration_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/configuration_module.md -------------------------------------------------------------------------------- /docs/source/api-reference/corsika.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/corsika.md -------------------------------------------------------------------------------- /docs/source/api-reference/data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/data_model.md -------------------------------------------------------------------------------- /docs/source/api-reference/db_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/db_handler.md -------------------------------------------------------------------------------- /docs/source/api-reference/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/dependencies.md -------------------------------------------------------------------------------- /docs/source/api-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/index.md -------------------------------------------------------------------------------- /docs/source/api-reference/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/io.md -------------------------------------------------------------------------------- /docs/source/api-reference/job_execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/job_execution.md -------------------------------------------------------------------------------- /docs/source/api-reference/mc_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/mc_model.md -------------------------------------------------------------------------------- /docs/source/api-reference/production_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/production_configuration.md -------------------------------------------------------------------------------- /docs/source/api-reference/ray_tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/ray_tracing.md -------------------------------------------------------------------------------- /docs/source/api-reference/reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/reporting.md -------------------------------------------------------------------------------- /docs/source/api-reference/runners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/runners.md -------------------------------------------------------------------------------- /docs/source/api-reference/sim_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/sim_events.md -------------------------------------------------------------------------------- /docs/source/api-reference/sim_telarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/sim_telarray.md -------------------------------------------------------------------------------- /docs/source/api-reference/simulators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/simulators.md -------------------------------------------------------------------------------- /docs/source/api-reference/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/testing.md -------------------------------------------------------------------------------- /docs/source/api-reference/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/trigger.md -------------------------------------------------------------------------------- /docs/source/api-reference/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/utils.md -------------------------------------------------------------------------------- /docs/source/api-reference/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/api-reference/visualization.md -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../../CHANGELOG.md 2 | -------------------------------------------------------------------------------- /docs/source/components/corsika.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/components/corsika.md -------------------------------------------------------------------------------- /docs/source/components/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/components/databases.md -------------------------------------------------------------------------------- /docs/source/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/components/index.md -------------------------------------------------------------------------------- /docs/source/components/sim_telarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/components/sim_telarray.md -------------------------------------------------------------------------------- /docs/source/components/simulation_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/components/simulation_models.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/data-model/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/data-model/index.md -------------------------------------------------------------------------------- /docs/source/data-model/model_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/data-model/model_parameters.md -------------------------------------------------------------------------------- /docs/source/developer-guide/coding_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/coding_guidelines.md -------------------------------------------------------------------------------- /docs/source/developer-guide/continuous_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/continuous_integration.md -------------------------------------------------------------------------------- /docs/source/developer-guide/developer_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/developer_guidelines.md -------------------------------------------------------------------------------- /docs/source/developer-guide/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/documentation.md -------------------------------------------------------------------------------- /docs/source/developer-guide/getting_started_as_developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/getting_started_as_developer.md -------------------------------------------------------------------------------- /docs/source/developer-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/index.md -------------------------------------------------------------------------------- /docs/source/developer-guide/pull_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/pull_requests.md -------------------------------------------------------------------------------- /docs/source/developer-guide/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/release.md -------------------------------------------------------------------------------- /docs/source/developer-guide/simtools_build_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/simtools_build_images.md -------------------------------------------------------------------------------- /docs/source/developer-guide/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/developer-guide/testing.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/user-guide/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications.md -------------------------------------------------------------------------------- /docs/source/user-guide/applications/images/derive_psf_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/images/derive_psf_parameters.png -------------------------------------------------------------------------------- /docs/source/user-guide/applications/images/gradient_descent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/images/gradient_descent.png -------------------------------------------------------------------------------- /docs/source/user-guide/applications/images/plot_array_layout_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/images/plot_array_layout_example.png -------------------------------------------------------------------------------- /docs/source/user-guide/applications/images/primary_angle_vs_radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/images/primary_angle_vs_radius.png -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-calculate-incident-angles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-calculate-incident-angles.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-add-file-to-db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-add-file-to-db.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-add-value-from-json-to-db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-add-value-from-json-to-db.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-generate-compound-indexes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-generate-compound-indexes.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-get-array-layouts-from-db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-get-array-layouts-from-db.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-get-file-from-db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-get-file-from-db.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-get-parameter-from-db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-get-parameter-from-db.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-inspect-databases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-inspect-databases.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-db-upload-model-repository.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-db-upload-model-repository.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-derive-ctao-array-layouts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-derive-ctao-array-layouts.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-derive-mirror-rnda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-derive-mirror-rnda.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-derive-psf-parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-derive-psf-parameters.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-derive-trigger-rates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-derive-trigger-rates.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-generate-array-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-generate-array-config.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-generate-corsika-histograms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-generate-corsika-histograms.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-generate-default-metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-generate-default-metadata.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-generate-regular-arrays.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-generate-regular-arrays.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-generate-simtel-event-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-generate-simtel-event-data.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-merge-tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-merge-tables.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-plot-array-layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-plot-array-layout.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-plot-simtel-events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-plot-simtel-events.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-plot-tabular-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-plot-tabular-data.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-print-version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-print-version.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-production-derive-statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-production-derive-statistics.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-production-generate-grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-production-generate-grid.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-run-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-run-application.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-simulate-flasher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-simulate-flasher.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-simulate-illuminator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-simulate-illuminator.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-simulate-pedestals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-simulate-pedestals.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-simulate-prod.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-simulate-prod.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-submit-array-layouts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-submit-array-layouts.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-submit-data-from-external.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-submit-data-from-external.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-validate-camera-efficiency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-validate-camera-efficiency.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-validate-camera-fov.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-validate-camera-fov.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-validate-cumulative-psf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-validate-cumulative-psf.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-validate-file-using-schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-validate-file-using-schema.rst -------------------------------------------------------------------------------- /docs/source/user-guide/applications/simtools-validate-optics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/applications/simtools-validate-optics.rst -------------------------------------------------------------------------------- /docs/source/user-guide/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/getting_started.md -------------------------------------------------------------------------------- /docs/source/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/index.md -------------------------------------------------------------------------------- /docs/source/user-guide/manage_simulation_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/manage_simulation_models.md -------------------------------------------------------------------------------- /docs/source/user-guide/manage_simulation_models/model_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/manage_simulation_models/model_import.md -------------------------------------------------------------------------------- /docs/source/user-guide/manage_simulation_models/simulation_models_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/manage_simulation_models/simulation_models_database.md -------------------------------------------------------------------------------- /docs/source/user-guide/productions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/productions.md -------------------------------------------------------------------------------- /docs/source/user-guide/simulate_calibration_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/docs/source/user-guide/simulate_calibration_data.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/environment.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/simtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/__init__.py -------------------------------------------------------------------------------- /src/simtools/_dev_version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/_dev_version/__init__.py -------------------------------------------------------------------------------- /src/simtools/application_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/application_control.py -------------------------------------------------------------------------------- /src/simtools/applications/calculate_incident_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/calculate_incident_angles.py -------------------------------------------------------------------------------- /src/simtools/applications/convert_all_model_parameters_from_simtel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/convert_all_model_parameters_from_simtel.py -------------------------------------------------------------------------------- /src/simtools/applications/convert_geo_coordinates_of_array_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/convert_geo_coordinates_of_array_elements.py -------------------------------------------------------------------------------- /src/simtools/applications/convert_model_parameter_from_simtel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/convert_model_parameter_from_simtel.py -------------------------------------------------------------------------------- /src/simtools/applications/db_add_file_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_add_file_to_db.py -------------------------------------------------------------------------------- /src/simtools/applications/db_add_simulation_model_from_repository_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_add_simulation_model_from_repository_to_db.py -------------------------------------------------------------------------------- /src/simtools/applications/db_add_value_from_json_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_add_value_from_json_to_db.py -------------------------------------------------------------------------------- /src/simtools/applications/db_generate_compound_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_generate_compound_indexes.py -------------------------------------------------------------------------------- /src/simtools/applications/db_get_array_layouts_from_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_get_array_layouts_from_db.py -------------------------------------------------------------------------------- /src/simtools/applications/db_get_file_from_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_get_file_from_db.py -------------------------------------------------------------------------------- /src/simtools/applications/db_get_parameter_from_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_get_parameter_from_db.py -------------------------------------------------------------------------------- /src/simtools/applications/db_inspect_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_inspect_databases.py -------------------------------------------------------------------------------- /src/simtools/applications/db_upload_model_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/db_upload_model_repository.py -------------------------------------------------------------------------------- /src/simtools/applications/derive_ctao_array_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/derive_ctao_array_layouts.py -------------------------------------------------------------------------------- /src/simtools/applications/derive_mirror_rnda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/derive_mirror_rnda.py -------------------------------------------------------------------------------- /src/simtools/applications/derive_photon_electron_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/derive_photon_electron_spectrum.py -------------------------------------------------------------------------------- /src/simtools/applications/derive_psf_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/derive_psf_parameters.py -------------------------------------------------------------------------------- /src/simtools/applications/derive_pulse_shape_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/derive_pulse_shape_parameters.py -------------------------------------------------------------------------------- /src/simtools/applications/derive_trigger_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/derive_trigger_rates.py -------------------------------------------------------------------------------- /src/simtools/applications/docs_produce_array_element_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/docs_produce_array_element_report.py -------------------------------------------------------------------------------- /src/simtools/applications/docs_produce_calibration_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/docs_produce_calibration_reports.py -------------------------------------------------------------------------------- /src/simtools/applications/docs_produce_model_parameter_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/docs_produce_model_parameter_reports.py -------------------------------------------------------------------------------- /src/simtools/applications/docs_produce_simulation_configuration_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/docs_produce_simulation_configuration_report.py -------------------------------------------------------------------------------- /src/simtools/applications/generate_array_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/generate_array_config.py -------------------------------------------------------------------------------- /src/simtools/applications/generate_corsika_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/generate_corsika_histograms.py -------------------------------------------------------------------------------- /src/simtools/applications/generate_default_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/generate_default_metadata.py -------------------------------------------------------------------------------- /src/simtools/applications/generate_regular_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/generate_regular_arrays.py -------------------------------------------------------------------------------- /src/simtools/applications/generate_simtel_event_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/generate_simtel_event_data.py -------------------------------------------------------------------------------- /src/simtools/applications/maintain_simulation_model_add_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/maintain_simulation_model_add_production.py -------------------------------------------------------------------------------- /src/simtools/applications/maintain_simulation_model_compare_productions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/maintain_simulation_model_compare_productions.py -------------------------------------------------------------------------------- /src/simtools/applications/merge_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/merge_tables.py -------------------------------------------------------------------------------- /src/simtools/applications/plot_array_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/plot_array_layout.py -------------------------------------------------------------------------------- /src/simtools/applications/plot_simtel_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/plot_simtel_events.py -------------------------------------------------------------------------------- /src/simtools/applications/plot_simulated_event_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/plot_simulated_event_distributions.py -------------------------------------------------------------------------------- /src/simtools/applications/plot_tabular_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/plot_tabular_data.py -------------------------------------------------------------------------------- /src/simtools/applications/plot_tabular_data_for_model_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/plot_tabular_data_for_model_parameter.py -------------------------------------------------------------------------------- /src/simtools/applications/print_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/print_version.py -------------------------------------------------------------------------------- /src/simtools/applications/production_derive_corsika_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/production_derive_corsika_limits.py -------------------------------------------------------------------------------- /src/simtools/applications/production_derive_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/production_derive_statistics.py -------------------------------------------------------------------------------- /src/simtools/applications/production_generate_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/production_generate_grid.py -------------------------------------------------------------------------------- /src/simtools/applications/production_merge_corsika_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/production_merge_corsika_limits.py -------------------------------------------------------------------------------- /src/simtools/applications/run_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/run_application.py -------------------------------------------------------------------------------- /src/simtools/applications/simulate_flasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/simulate_flasher.py -------------------------------------------------------------------------------- /src/simtools/applications/simulate_illuminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/simulate_illuminator.py -------------------------------------------------------------------------------- /src/simtools/applications/simulate_pedestals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/simulate_pedestals.py -------------------------------------------------------------------------------- /src/simtools/applications/simulate_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/simulate_prod.py -------------------------------------------------------------------------------- /src/simtools/applications/simulate_prod_htcondor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/simulate_prod_htcondor_generator.py -------------------------------------------------------------------------------- /src/simtools/applications/submit_array_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/submit_array_layouts.py -------------------------------------------------------------------------------- /src/simtools/applications/submit_data_from_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/submit_data_from_external.py -------------------------------------------------------------------------------- /src/simtools/applications/submit_model_parameter_from_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/submit_model_parameter_from_external.py -------------------------------------------------------------------------------- /src/simtools/applications/validate_camera_efficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/validate_camera_efficiency.py -------------------------------------------------------------------------------- /src/simtools/applications/validate_camera_fov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/validate_camera_fov.py -------------------------------------------------------------------------------- /src/simtools/applications/validate_cumulative_psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/validate_cumulative_psf.py -------------------------------------------------------------------------------- /src/simtools/applications/validate_file_using_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/validate_file_using_schema.py -------------------------------------------------------------------------------- /src/simtools/applications/validate_optics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/applications/validate_optics.py -------------------------------------------------------------------------------- /src/simtools/camera/camera_efficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/camera/camera_efficiency.py -------------------------------------------------------------------------------- /src/simtools/camera/single_photon_electron_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/camera/single_photon_electron_spectrum.py -------------------------------------------------------------------------------- /src/simtools/configuration/commandline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/configuration/commandline_parser.py -------------------------------------------------------------------------------- /src/simtools/configuration/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/configuration/configurator.py -------------------------------------------------------------------------------- /src/simtools/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/constants.py -------------------------------------------------------------------------------- /src/simtools/corsika/corsika_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/corsika/corsika_config.py -------------------------------------------------------------------------------- /src/simtools/corsika/corsika_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/corsika/corsika_histograms.py -------------------------------------------------------------------------------- /src/simtools/corsika/primary_particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/corsika/primary_particle.py -------------------------------------------------------------------------------- /src/simtools/data_model/data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/data_reader.py -------------------------------------------------------------------------------- /src/simtools/data_model/format_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/format_checkers.py -------------------------------------------------------------------------------- /src/simtools/data_model/metadata_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/metadata_collector.py -------------------------------------------------------------------------------- /src/simtools/data_model/metadata_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/metadata_model.py -------------------------------------------------------------------------------- /src/simtools/data_model/model_data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/model_data_writer.py -------------------------------------------------------------------------------- /src/simtools/data_model/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/schema.py -------------------------------------------------------------------------------- /src/simtools/data_model/validate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/data_model/validate_data.py -------------------------------------------------------------------------------- /src/simtools/db/db_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/db/db_handler.py -------------------------------------------------------------------------------- /src/simtools/db/db_model_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/db/db_model_upload.py -------------------------------------------------------------------------------- /src/simtools/db/mongo_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/db/mongo_db.py -------------------------------------------------------------------------------- /src/simtools/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/dependencies.py -------------------------------------------------------------------------------- /src/simtools/io/ascii_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/io/ascii_handler.py -------------------------------------------------------------------------------- /src/simtools/io/hdf5_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/io/hdf5_handler.py -------------------------------------------------------------------------------- /src/simtools/io/io_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/io/io_handler.py -------------------------------------------------------------------------------- /src/simtools/io/legacy_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/io/legacy_data_handler.py -------------------------------------------------------------------------------- /src/simtools/io/table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/io/table_handler.py -------------------------------------------------------------------------------- /src/simtools/job_execution/htcondor_script_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/job_execution/htcondor_script_generator.py -------------------------------------------------------------------------------- /src/simtools/job_execution/job_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/job_execution/job_manager.py -------------------------------------------------------------------------------- /src/simtools/layout/array_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/layout/array_layout.py -------------------------------------------------------------------------------- /src/simtools/layout/array_layout_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/layout/array_layout_utils.py -------------------------------------------------------------------------------- /src/simtools/layout/geo_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/layout/geo_coordinates.py -------------------------------------------------------------------------------- /src/simtools/layout/telescope_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/layout/telescope_position.py -------------------------------------------------------------------------------- /src/simtools/model/array_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/array_model.py -------------------------------------------------------------------------------- /src/simtools/model/calibration_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/calibration_model.py -------------------------------------------------------------------------------- /src/simtools/model/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/camera.py -------------------------------------------------------------------------------- /src/simtools/model/legacy_model_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/legacy_model_parameter.py -------------------------------------------------------------------------------- /src/simtools/model/mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/mirrors.py -------------------------------------------------------------------------------- /src/simtools/model/model_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/model_parameter.py -------------------------------------------------------------------------------- /src/simtools/model/model_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/model_repository.py -------------------------------------------------------------------------------- /src/simtools/model/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/model_utils.py -------------------------------------------------------------------------------- /src/simtools/model/site_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/site_model.py -------------------------------------------------------------------------------- /src/simtools/model/telescope_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/model/telescope_model.py -------------------------------------------------------------------------------- /src/simtools/production_configuration/derive_corsika_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/production_configuration/derive_corsika_limits.py -------------------------------------------------------------------------------- /src/simtools/production_configuration/derive_production_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/production_configuration/derive_production_statistics.py -------------------------------------------------------------------------------- /src/simtools/production_configuration/derive_production_statistics_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/production_configuration/derive_production_statistics_handler.py -------------------------------------------------------------------------------- /src/simtools/production_configuration/generate_production_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/production_configuration/generate_production_grid.py -------------------------------------------------------------------------------- /src/simtools/production_configuration/interpolation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/production_configuration/interpolation_handler.py -------------------------------------------------------------------------------- /src/simtools/production_configuration/merge_corsika_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/production_configuration/merge_corsika_limits.py -------------------------------------------------------------------------------- /src/simtools/ray_tracing/incident_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/ray_tracing/incident_angles.py -------------------------------------------------------------------------------- /src/simtools/ray_tracing/mirror_panel_psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/ray_tracing/mirror_panel_psf.py -------------------------------------------------------------------------------- /src/simtools/ray_tracing/psf_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/ray_tracing/psf_analysis.py -------------------------------------------------------------------------------- /src/simtools/ray_tracing/psf_parameter_optimisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/ray_tracing/psf_parameter_optimisation.py -------------------------------------------------------------------------------- /src/simtools/ray_tracing/ray_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/ray_tracing/ray_tracing.py -------------------------------------------------------------------------------- /src/simtools/reporting/docs_auto_report_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/reporting/docs_auto_report_generator.py -------------------------------------------------------------------------------- /src/simtools/reporting/docs_read_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/reporting/docs_read_parameters.py -------------------------------------------------------------------------------- /src/simtools/resources/array-element-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/resources/array-element-ids.json -------------------------------------------------------------------------------- /src/simtools/resources/array_elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/resources/array_elements.yml -------------------------------------------------------------------------------- /src/simtools/runners/corsika_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/runners/corsika_runner.py -------------------------------------------------------------------------------- /src/simtools/runners/corsika_simtel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/runners/corsika_simtel_runner.py -------------------------------------------------------------------------------- /src/simtools/runners/runner_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/runners/runner_services.py -------------------------------------------------------------------------------- /src/simtools/runners/simtel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/runners/simtel_runner.py -------------------------------------------------------------------------------- /src/simtools/runners/simtools_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/runners/simtools_runner.py -------------------------------------------------------------------------------- /src/simtools/schemas/application_workflow.metaschema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/application_workflow.metaschema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/common_definitions.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/common_definitions.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/input/MST_mirror_2f_measurements.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/input/MST_mirror_2f_measurements.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/input/single_pe_spectrum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/input/single_pe_spectrum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/metadata.metaschema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/metadata.metaschema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameter.metaschema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameter.metaschema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameter_and_data_schema.metaschema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/adjust_gain.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/adjust_gain.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/altitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/altitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/array_coordinates.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/array_coordinates.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/array_coordinates_UTM.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/array_coordinates_UTM.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/array_element_position_utm.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/array_element_position_utm.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/array_layouts.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/array_layouts.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/array_triggers.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/array_triggers.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/array_window.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/array_window.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/asum_clipping.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/asum_clipping.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/asum_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/asum_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/asum_shaping.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/asum_shaping.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/asum_threshold.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/asum_threshold.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/atmospheric_profile.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/atmospheric_profile.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/atmospheric_transmission.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/atmospheric_transmission.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/axes_offsets.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/axes_offsets.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/calibration_devices.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/calibration_devices.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_body_diameter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_body_diameter.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_body_shape.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_body_shape.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_config_file.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_config_file.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_config_rotate.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_config_rotate.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_degraded_efficiency.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_degraded_map.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_degraded_map.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_depth.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_depth.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_filter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_filter.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_pixels.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_pixels.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/camera_transmission.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/camera_transmission.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/channels_per_chip.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/channels_per_chip.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/corsika_iact_io_buffer.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/corsika_iact_io_buffer.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/corsika_iact_max_bunches.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/corsika_iact_max_bunches.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/corsika_iact_split_auto.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/corsika_iact_split_auto.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/corsika_observation_level.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/corsika_observation_level.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/corsika_starting_grammage.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/corsika_starting_grammage.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dark_events.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dark_events.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/default_trigger.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/default_trigger.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/design_model.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/design_model.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/disc_ac_coupled.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/disc_ac_coupled.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/disc_bins.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/disc_bins.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/disc_start.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/disc_start.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_amplitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_amplitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_fall_time.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_fall_time.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_gate_length.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_gate_length.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_hysteresis.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_pulse_shape.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_pulse_shape.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_rise_time.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_rise_time.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_threshold.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_threshold.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/discriminator_var_threshold.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dish_shape_length.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dish_shape_length.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_clipping.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_clipping.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_ignore_below.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_ignore_below.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_pedsub.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_pedsub.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_pre_clipping.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_prescale.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_prescale.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_presum_max.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_presum_max.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_presum_shift.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_presum_shift.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_shaping.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_shaping.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_shaping_renormalize.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_shaping_renormalize.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_threshold.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_threshold.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/dsum_zero_clip.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/dsum_zero_clip.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/effective_focal_length.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/effective_focal_length.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/epsg_code.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/epsg_code.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_ac_coupled.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_ac_coupled.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_amplitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_amplitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_bins.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_bins.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_compensate_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_dev_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_dev_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_err_compensate_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_err_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_amplitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_compensate_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_dev_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_dev_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_err_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_max_signal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_max_sum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_max_sum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_noise.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_noise.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_sensitivity.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_sysvar_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_var_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_lg_var_sensitivity.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_long_event_threshold.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_long_event_threshold.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_long_sum_bins.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_long_sum_bins.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_long_sum_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_long_sum_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_max_signal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_max_signal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_max_sum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_max_sum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_mhz.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_mhz.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_noise.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_noise.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_pulse_shape.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_pulse_shape.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_sensitivity.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_sensitivity.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_sum_bins.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_sum_bins.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_sum_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_sum_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_sysvar_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_var_pedestal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fadc_var_sensitivity.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/fake_mirror_list.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/fake_mirror_list.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_angular_distribution.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_angular_distribution.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_bunch_size.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_bunch_size.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_external_trigger.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_external_trigger.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_position.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_position.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_pulse_exp_decay.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_pulse_exp_decay.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_pulse_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_pulse_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_pulse_shape.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_pulse_shape.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_pulse_width.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_pulse_width.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_type.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_type.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_var_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_var_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flasher_wavelength.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flasher_wavelength.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/flatfielding.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/flatfielding.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/focal_length.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/focal_length.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/focal_surface_parameters.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/focal_surface_parameters.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/focal_surface_ref_radius.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/focal_surface_ref_radius.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/focus_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/focus_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/gain_variation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/gain_variation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/geomag_horizontal.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/geomag_horizontal.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/geomag_rotation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/geomag_rotation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/geomag_vertical.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/geomag_vertical.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/hg_lg_variation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/hg_lg_variation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/iobuf_maximum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/iobuf_maximum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/iobuf_output_maximum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_events.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_events.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_external_trigger.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_external_trigger.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_pulse_exptime.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_pulse_exptime.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_pulse_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_pulse_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_pulse_sigtime.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_pulse_sigtime.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_pulse_twidth.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_pulse_twidth.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_var_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_var_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/laser_wavelength.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/laser_wavelength.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/led_events.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/led_events.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/led_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/led_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/led_pulse_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/led_pulse_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/led_pulse_sigtime.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/led_pulse_sigtime.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/led_var_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/led_var_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/min_photoelectrons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/min_photoelectrons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/min_photons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/min_photons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_align_random_distance.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_align_random_vertical.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_class.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_class.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_degraded_reflection.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_focal_length.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_focal_length.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_list.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_list.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_panel_2f_measurements.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_panel_2f_measurements.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/mirror_reflectivity.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/mirror_reflectivity.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/multiplicity_offset.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/multiplicity_offset.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/muon_mono_threshold.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/muon_mono_threshold.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_autoscale_airmass.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_gain_drop_scale.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_gain_drop_scale.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_offaxis.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_offaxis.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_pixel_rate.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_reference_spectrum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_reference_spectrum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_reference_value.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_reference_value.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_scaling_factor.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_scaling_factor.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_sky_map.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_sky_map.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/nsb_spectrum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/nsb_spectrum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/num_gains.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/num_gains.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/only_triggered_telescopes.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/only_triggered_telescopes.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/optics_properties.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/optics_properties.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/parabolic_dish.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/parabolic_dish.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pedestal_events.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pedestal_events.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/photon_delay.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/photon_delay.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/photons_per_run.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/photons_per_run.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pixel_cells.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pixel_cells.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pixels_parallel.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pixels_parallel.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pixeltrg_time_step.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pm_average_gain.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pm_average_gain.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pm_collection_efficiency.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pm_gain_index.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pm_gain_index.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pm_photoelectron_spectrum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pm_photoelectron_spectrum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pm_transit_time.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pm_transit_time.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/pm_voltage_variation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/pm_voltage_variation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/primary_mirror_degraded_map.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/primary_mirror_diameter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/primary_mirror_diameter.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/primary_mirror_hole_diameter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/primary_mirror_hole_diameter.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/primary_mirror_parameters.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/primary_mirror_parameters.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/primary_mirror_ref_radius.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/primary_mirror_ref_radius.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/primary_mirror_segmentation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/primary_mirror_segmentation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/qe_variation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/qe_variation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/quantum_efficiency.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/quantum_efficiency.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/random_focal_length.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/random_focal_length.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/random_generator.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/random_generator.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/random_mono_probability.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/random_mono_probability.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/reference_point_altitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/reference_point_altitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/reference_point_latitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/reference_point_latitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/reference_point_longitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/reference_point_longitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/reference_point_utm_east.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/reference_point_utm_east.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/reference_point_utm_north.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/reference_point_utm_north.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/sampled_output.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/sampled_output.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/save_pe_with_amplitude.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/save_pe_with_amplitude.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/secondary_mirror_baffle.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/secondary_mirror_baffle.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/secondary_mirror_diameter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/secondary_mirror_diameter.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/secondary_mirror_parameters.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/secondary_mirror_parameters.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/secondary_mirror_ref_radius.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/secondary_mirror_ref_radius.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/stars.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/stars.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/store_photoelectrons.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/store_photoelectrons.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/tailcut_scale.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/tailcut_scale.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/telescope_axis_height.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/telescope_axis_height.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/telescope_random_angle.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/telescope_random_angle.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/telescope_random_error.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/telescope_random_error.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/telescope_sphere_radius.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/telescope_transmission.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/telescope_transmission.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/teltrig_min_sigsum.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/teltrig_min_time.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/teltrig_min_time.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/transit_time_calib_error.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/transit_time_calib_error.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/transit_time_compensate_step.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/transit_time_error.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/transit_time_error.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/transit_time_jitter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/transit_time_jitter.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/transit_time_random.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/transit_time_random.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/trigger_current_limit.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/trigger_current_limit.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/trigger_delay_compensation.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/model_parameters/trigger_pixels.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/model_parameters/trigger_pixels.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/plot_configuration.metaschema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/plot_configuration.metaschema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/production_configuration_metrics.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/production_configuration_metrics.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/production_tables.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/production_tables.schema.yml -------------------------------------------------------------------------------- /src/simtools/schemas/simulation_models_info.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/schemas/simulation_models_info.schema.yml -------------------------------------------------------------------------------- /src/simtools/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/settings.py -------------------------------------------------------------------------------- /src/simtools/sim_events/file_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/sim_events/file_info.py -------------------------------------------------------------------------------- /src/simtools/sim_events/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/sim_events/histograms.py -------------------------------------------------------------------------------- /src/simtools/sim_events/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/sim_events/reader.py -------------------------------------------------------------------------------- /src/simtools/sim_events/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/sim_events/writer.py -------------------------------------------------------------------------------- /src/simtools/simtel/pulse_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/pulse_shapes.py -------------------------------------------------------------------------------- /src/simtools/simtel/simtel_config_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simtel_config_reader.py -------------------------------------------------------------------------------- /src/simtools/simtel/simtel_config_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simtel_config_writer.py -------------------------------------------------------------------------------- /src/simtools/simtel/simtel_io_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simtel_io_metadata.py -------------------------------------------------------------------------------- /src/simtools/simtel/simtel_table_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simtel_table_reader.py -------------------------------------------------------------------------------- /src/simtools/simtel/simulator_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simulator_array.py -------------------------------------------------------------------------------- /src/simtools/simtel/simulator_camera_efficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simulator_camera_efficiency.py -------------------------------------------------------------------------------- /src/simtools/simtel/simulator_light_emission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simulator_light_emission.py -------------------------------------------------------------------------------- /src/simtools/simtel/simulator_ray_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simtel/simulator_ray_tracing.py -------------------------------------------------------------------------------- /src/simtools/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/simulator.py -------------------------------------------------------------------------------- /src/simtools/telescope_trigger_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/telescope_trigger_rates.py -------------------------------------------------------------------------------- /src/simtools/testing/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/testing/assertions.py -------------------------------------------------------------------------------- /src/simtools/testing/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/testing/configuration.py -------------------------------------------------------------------------------- /src/simtools/testing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/testing/helpers.py -------------------------------------------------------------------------------- /src/simtools/testing/log_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/testing/log_inspector.py -------------------------------------------------------------------------------- /src/simtools/testing/sim_telarray_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/testing/sim_telarray_metadata.py -------------------------------------------------------------------------------- /src/simtools/testing/validate_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/testing/validate_output.py -------------------------------------------------------------------------------- /src/simtools/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/utils/general.py -------------------------------------------------------------------------------- /src/simtools/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/utils/geometry.py -------------------------------------------------------------------------------- /src/simtools/utils/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/utils/names.py -------------------------------------------------------------------------------- /src/simtools/utils/value_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/utils/value_conversion.py -------------------------------------------------------------------------------- /src/simtools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/version.py -------------------------------------------------------------------------------- /src/simtools/visualization/legend_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/legend_handlers.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_array_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_array_layout.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_camera.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_corsika_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_corsika_histograms.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_incident_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_incident_angles.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_mirrors.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_pixels.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_psf.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_simtel_event_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_simtel_event_histograms.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_simtel_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_simtel_events.py -------------------------------------------------------------------------------- /src/simtools/visualization/plot_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/plot_tables.py -------------------------------------------------------------------------------- /src/simtools/visualization/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/src/simtools/visualization/visualize.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration_tests/config/calculate_incident_angles_run_dual_mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/calculate_incident_angles_run_dual_mirror.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_add_file_to_db_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_add_file_to_db_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_add_value_from_json_to_db_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_add_value_from_json_to_db_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_get_array_layouts_from_db_layout_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_get_array_layouts_from_db_layout_list.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_get_array_layouts_from_db_layout_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_get_array_layouts_from_db_layout_name.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_get_array_layouts_from_db_list_arrays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_get_array_layouts_from_db_list_arrays.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_get_file_from_db_CTA-Simulation-Model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_get_file_from_db_CTA-Simulation-Model.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_get_parameter_from_db_site_parameter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_get_parameter_from_db_site_parameter.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/db_inspect_databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/db_inspect_databases.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_ctao_array_layouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_ctao_array_layouts.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_mirror_rnda_psf_mean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_mirror_rnda_psf_mean.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_mirror_rnda_psf_measurement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_mirror_rnda_psf_measurement.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_mirror_rnda_psf_no_tuning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_mirror_rnda_psf_no_tuning.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_mirror_rnda_psf_random_flen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_mirror_rnda_psf_random_flen.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_photon_electron_spectrum_lst_ecsv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_photon_electron_spectrum_lst_ecsv.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_psf_parameters_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_psf_parameters_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_pulse_shape_parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_pulse_shape_parameters.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/derive_trigger_rates_db_arrays_short.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/derive_trigger_rates_db_arrays_short.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/docs_produce_array_element_report_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/docs_produce_array_element_report_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/docs_produce_calibration_reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/docs_produce_calibration_reports.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/docs_produce_model_parameter_reports_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/docs_produce_model_parameter_reports_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_array_config_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_array_config_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_corsika_histograms_1D_run_header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_corsika_histograms_1D_run_header.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_corsika_histograms_2D_run_header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_corsika_histograms_2D_run_header.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_corsika_histograms_figures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_corsika_histograms_figures.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_corsika_histograms_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_corsika_histograms_output.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_corsika_histograms_tables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_corsika_histograms_tables.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_default_metadata_to_json_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_default_metadata_to_json_file.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_default_metadata_to_yml_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_default_metadata_to_yml_file.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_regular_arrays_run_north.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_regular_arrays_run_north.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_regular_arrays_run_south.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_regular_arrays_run_south.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_simtel_event_data_fits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_simtel_event_data_fits.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/generate_simtel_event_data_hdf5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/generate_simtel_event_data_hdf5.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/merge_tables_one_fits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/merge_tables_one_fits.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/merge_tables_two_fits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/merge_tables_two_fits.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/merge_tables_two_hdf5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/merge_tables_two_hdf5.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_by_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_by_name.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_from_array_layouts_json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_from_array_layouts_json.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_from_list_north.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_from_list_north.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_from_list_south.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_from_list_south.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_from_list_utm_south.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_from_list_utm_south.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_one_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_one_file.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_one_file_with_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_one_file_with_name.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_array_layout_two_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_array_layout_two_files.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_simtel_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_simtel_events.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/plot_simulated_event_distributions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/plot_simulated_event_distributions.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/print_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/print_version.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/production_derive_corsika_limits_fits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/production_derive_corsika_limits_fits.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/production_derive_statistics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/production_derive_statistics.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/production_generate_grid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/production_generate_grid.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/production_merge_corsika_limits_check_only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/production_merge_corsika_limits_check_only.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/production_merge_corsika_limits_merge_only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/production_merge_corsika_limits_merge_only.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_flasher_full_simulation_LST_North.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_flasher_full_simulation_LST_North.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_flasher_full_simulation_LST_South.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_flasher_full_simulation_LST_South.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_illuminator_configurable_position.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_illuminator_configurable_position.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_illuminator_layout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_illuminator_layout.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_pedestals_20_deg_North.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_pedestals_20_deg_North.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_pedestals_dark_20_deg_North.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_pedestals_dark_20_deg_North.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/simulate_pedestals_nsb_only_20_deg_North.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/simulate_pedestals_nsb_only_20_deg_North.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/submit_array_layouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/submit_array_layouts.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/submit_data_from_external_submit_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/submit_data_from_external_submit_table.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/validate_camera_efficiency_lstn-02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/validate_camera_efficiency_lstn-02.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/validate_camera_efficiency_ssts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/validate_camera_efficiency_ssts.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/validate_camera_fov_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/validate_camera_fov_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/validate_cumulative_psf_prod6_psf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/validate_cumulative_psf_prod6_psf.yml -------------------------------------------------------------------------------- /tests/integration_tests/config/validate_optics_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/config/validate_optics_run.yml -------------------------------------------------------------------------------- /tests/integration_tests/test_applications_from_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/test_applications_from_config.py -------------------------------------------------------------------------------- /tests/integration_tests/test_ray_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/integration_tests/test_ray_tracing.py -------------------------------------------------------------------------------- /tests/resources/Afterpulsing-probability-with-errors.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/Afterpulsing-probability-with-errors.ecsv -------------------------------------------------------------------------------- /tests/resources/CTA-North-LSTN-01-Released_test-telescope-model.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/CTA-North-LSTN-01-Released_test-telescope-model.cfg -------------------------------------------------------------------------------- /tests/resources/LST_afterpulses.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/LST_afterpulses.dat -------------------------------------------------------------------------------- /tests/resources/LST_afterpulses.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/LST_afterpulses.ecsv -------------------------------------------------------------------------------- /tests/resources/MLTdata-preproduction.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/MLTdata-preproduction.ecsv -------------------------------------------------------------------------------- /tests/resources/MLTdata-preproduction.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/MLTdata-preproduction.meta.yml -------------------------------------------------------------------------------- /tests/resources/PSFcurve_data_v2.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/PSFcurve_data_v2.ecsv -------------------------------------------------------------------------------- /tests/resources/PSFcurve_data_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/PSFcurve_data_v2.txt -------------------------------------------------------------------------------- /tests/resources/SinglePhe_spectrum_totalfit_19pixel-average_20200601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/SinglePhe_spectrum_totalfit_19pixel-average_20200601.csv -------------------------------------------------------------------------------- /tests/resources/SinglePhe_spectrum_totalfit_19pixel-average_20200601.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/SinglePhe_spectrum_totalfit_19pixel-average_20200601.ecsv -------------------------------------------------------------------------------- /tests/resources/Transmission_Spectrum_PlexiGlass.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/Transmission_Spectrum_PlexiGlass.dat -------------------------------------------------------------------------------- /tests/resources/benn_ellison_spectrum_for_testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/benn_ellison_spectrum_for_testing.txt -------------------------------------------------------------------------------- /tests/resources/corsikaConfigTest_astropy_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/corsikaConfigTest_astropy_headers.yml -------------------------------------------------------------------------------- /tests/resources/corsika_simulation_limits/grid_definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/corsika_simulation_limits/grid_definition.yaml -------------------------------------------------------------------------------- /tests/resources/corsika_simulation_limits_lookup.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/corsika_simulation_limits_lookup.ecsv -------------------------------------------------------------------------------- /tests/resources/derive_mirror_rnda_psf_mean.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/derive_mirror_rnda_psf_mean.ecsv -------------------------------------------------------------------------------- /tests/resources/derive_mirror_rnda_psf_measurement.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/derive_mirror_rnda_psf_measurement.ecsv -------------------------------------------------------------------------------- /tests/resources/derive_mirror_rnda_psf_no_tuning.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/derive_mirror_rnda_psf_no_tuning.ecsv -------------------------------------------------------------------------------- /tests/resources/derive_mirror_rnda_psf_random_flen.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/derive_mirror_rnda_psf_random_flen.ecsv -------------------------------------------------------------------------------- /tests/resources/example_non_utf-8_file.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/example_non_utf-8_file.lis -------------------------------------------------------------------------------- /tests/resources/ff-1m_flasher.simtel.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/ff-1m_flasher.simtel.zst -------------------------------------------------------------------------------- /tests/resources/info_test_model_parameter_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/info_test_model_parameter_changes.yml -------------------------------------------------------------------------------- /tests/resources/log_sub_corsika_run000001_gamma_North_test_layout_test-production.out: -------------------------------------------------------------------------------- 1 | RUNTIME: 6 2 | -------------------------------------------------------------------------------- /tests/resources/mirror_list_CTA-N-LST1_v2019-03-31_rotated.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/mirror_list_CTA-N-LST1_v2019-03-31_rotated.ecsv -------------------------------------------------------------------------------- /tests/resources/mirror_list_CTA-N-LST1_v2019-03-31_rotated_simtel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/mirror_list_CTA-N-LST1_v2019-03-31_rotated_simtel.dat -------------------------------------------------------------------------------- /tests/resources/model_parameters/array_element_position_ground-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/array_element_position_ground-2.0.0.json -------------------------------------------------------------------------------- /tests/resources/model_parameters/array_element_position_utm-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/array_element_position_utm-2.0.0.json -------------------------------------------------------------------------------- /tests/resources/model_parameters/array_layouts-2.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/array_layouts-2.0.2.json -------------------------------------------------------------------------------- /tests/resources/model_parameters/mirror_list-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/mirror_list-2.0.0.json -------------------------------------------------------------------------------- /tests/resources/model_parameters/num_gains-0.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/num_gains-0.0.0.json -------------------------------------------------------------------------------- /tests/resources/model_parameters/schema-0.2.0/num_gains-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/schema-0.2.0/num_gains-1.0.0.json -------------------------------------------------------------------------------- /tests/resources/model_parameters/schema-0.3.0/num_gains-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/model_parameters/schema-0.3.0/num_gains-1.0.0.json -------------------------------------------------------------------------------- /tests/resources/num_gains.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/num_gains.meta.yml -------------------------------------------------------------------------------- /tests/resources/pixel_layout.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/pixel_layout.dat -------------------------------------------------------------------------------- /tests/resources/plot_single_pe_config_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/plot_single_pe_config_data.yml -------------------------------------------------------------------------------- /tests/resources/plot_single_pe_config_from_ecsv_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/plot_single_pe_config_from_ecsv_file.yml -------------------------------------------------------------------------------- /tests/resources/production_grid_generation_axes_definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/production_grid_generation_axes_definition.yml -------------------------------------------------------------------------------- /tests/resources/production_grid_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/production_grid_points.json -------------------------------------------------------------------------------- /tests/resources/production_layouts_telescope_ids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/production_layouts_telescope_ids.yml -------------------------------------------------------------------------------- /tests/resources/production_simulation_config_metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/production_simulation_config_metrics.yml -------------------------------------------------------------------------------- /tests/resources/production_tables_changes_for_threshold_study_6.2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/production_tables_changes_for_threshold_study_6.2.0.yml -------------------------------------------------------------------------------- /tests/resources/reference_point_altitude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/reference_point_altitude.json -------------------------------------------------------------------------------- /tests/resources/sim_telarray_configurations/5.0.0/CTA-alpha-North_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/sim_telarray_configurations/5.0.0/CTA-alpha-North_test.cfg -------------------------------------------------------------------------------- /tests/resources/sim_telarray_configurations/5.0.0/CTA-beta-South_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/sim_telarray_configurations/5.0.0/CTA-beta-South_test.cfg -------------------------------------------------------------------------------- /tests/resources/sim_telarray_configurations/6.0.2/CTA-alpha-North_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/sim_telarray_configurations/6.0.2/CTA-alpha-North_test.cfg -------------------------------------------------------------------------------- /tests/resources/sim_telarray_configurations/6.0.2/CTA-beta-South_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/sim_telarray_configurations/6.0.2/CTA-beta-South_test.cfg -------------------------------------------------------------------------------- /tests/resources/simtel_config_test_la_palma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/simtel_config_test_la_palma.cfg -------------------------------------------------------------------------------- /tests/resources/spe_LST_2022-04-27_AP2.0e-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/spe_LST_2022-04-27_AP2.0e-4.dat -------------------------------------------------------------------------------- /tests/resources/spe_LST_2022-04-27_AP2.0e-4.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/spe_LST_2022-04-27_AP2.0e-4.ecsv -------------------------------------------------------------------------------- /tests/resources/spe_LST_2025-02-15-used.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/spe_LST_2025-02-15-used.ecsv -------------------------------------------------------------------------------- /tests/resources/tel_output_10GeV-2-gamma-20deg-CTAO-South.corsikaio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/tel_output_10GeV-2-gamma-20deg-CTAO-South.corsikaio -------------------------------------------------------------------------------- /tests/resources/telescope_positions-North-ground.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/telescope_positions-North-ground.ecsv -------------------------------------------------------------------------------- /tests/resources/telescope_positions-North-mercator.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/telescope_positions-North-mercator.ecsv -------------------------------------------------------------------------------- /tests/resources/telescope_positions-North-utm-without-cta-meta.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/telescope_positions-North-utm-without-cta-meta.ecsv -------------------------------------------------------------------------------- /tests/resources/telescope_positions-North-utm.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/telescope_positions-North-utm.ecsv -------------------------------------------------------------------------------- /tests/resources/telescope_positions-North-utm.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/telescope_positions-North-utm.meta.yml -------------------------------------------------------------------------------- /tests/resources/telescope_positions-South-ground.ecsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/telescope_positions-South-ground.ecsv -------------------------------------------------------------------------------- /tests/resources/test_file.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/test_file.list -------------------------------------------------------------------------------- /tests/resources/xyzls_layout.simtel.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/resources/xyzls_layout.simtel.gz -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/__init__.py -------------------------------------------------------------------------------- /tests/unit_tests/camera/test_camera_efficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/camera/test_camera_efficiency.py -------------------------------------------------------------------------------- /tests/unit_tests/camera/test_single_photon_electron_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/camera/test_single_photon_electron_spectrum.py -------------------------------------------------------------------------------- /tests/unit_tests/configuration/test_commandline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/configuration/test_commandline_parser.py -------------------------------------------------------------------------------- /tests/unit_tests/configuration/test_configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/configuration/test_configurator.py -------------------------------------------------------------------------------- /tests/unit_tests/corsika/test_corsika_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/corsika/test_corsika_config.py -------------------------------------------------------------------------------- /tests/unit_tests/corsika/test_corsika_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/corsika/test_corsika_histograms.py -------------------------------------------------------------------------------- /tests/unit_tests/corsika/test_primary_particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/corsika/test_primary_particle.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_data_reader.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_format_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_format_checkers.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_metadata_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_metadata_collector.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_metadata_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_metadata_model.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_model_data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_model_data_writer.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_schema.py -------------------------------------------------------------------------------- /tests/unit_tests/data_model/test_validate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/data_model/test_validate_data.py -------------------------------------------------------------------------------- /tests/unit_tests/db/test_db_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/db/test_db_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/db/test_db_model_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/db/test_db_model_upload.py -------------------------------------------------------------------------------- /tests/unit_tests/db/test_mongo_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/db/test_mongo_db.py -------------------------------------------------------------------------------- /tests/unit_tests/io/test_ascii_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/io/test_ascii_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/io/test_hdf5_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/io/test_hdf5_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/io/test_io_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/io/test_io_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/io/test_legacy_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/io/test_legacy_data_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/io/test_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/io/test_table_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/job_execution/test_htcondor_script_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/job_execution/test_htcondor_script_generator.py -------------------------------------------------------------------------------- /tests/unit_tests/job_execution/test_job_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/job_execution/test_job_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/layout/test_array_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/layout/test_array_layout.py -------------------------------------------------------------------------------- /tests/unit_tests/layout/test_array_layout_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/layout/test_array_layout_utils.py -------------------------------------------------------------------------------- /tests/unit_tests/layout/test_geo_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/layout/test_geo_coordinates.py -------------------------------------------------------------------------------- /tests/unit_tests/layout/test_telescope_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/layout/test_telescope_position.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_array_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_array_model.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_calibration_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_calibration_model.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_camera.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_legacy_model_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_legacy_model_parameter.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_mirrors.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_model_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_model_parameter.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_model_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_model_repository.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_model_utils.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_site_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_site_model.py -------------------------------------------------------------------------------- /tests/unit_tests/model/test_telescope_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/model/test_telescope_model.py -------------------------------------------------------------------------------- /tests/unit_tests/production_configuration/test_derive_corsika_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/production_configuration/test_derive_corsika_limits.py -------------------------------------------------------------------------------- /tests/unit_tests/production_configuration/test_generate_production_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/production_configuration/test_generate_production_grid.py -------------------------------------------------------------------------------- /tests/unit_tests/production_configuration/test_interpolation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/production_configuration/test_interpolation_handler.py -------------------------------------------------------------------------------- /tests/unit_tests/production_configuration/test_merge_corsika_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/production_configuration/test_merge_corsika_limits.py -------------------------------------------------------------------------------- /tests/unit_tests/ray_tracing/test_incident_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/ray_tracing/test_incident_angles.py -------------------------------------------------------------------------------- /tests/unit_tests/ray_tracing/test_mirror_panel_psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/ray_tracing/test_mirror_panel_psf.py -------------------------------------------------------------------------------- /tests/unit_tests/ray_tracing/test_psf_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/ray_tracing/test_psf_analysis.py -------------------------------------------------------------------------------- /tests/unit_tests/ray_tracing/test_psf_parameter_optimisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/ray_tracing/test_psf_parameter_optimisation.py -------------------------------------------------------------------------------- /tests/unit_tests/ray_tracing/test_ray_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/ray_tracing/test_ray_tracing.py -------------------------------------------------------------------------------- /tests/unit_tests/reporting/test_docs_auto_report_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/reporting/test_docs_auto_report_generator.py -------------------------------------------------------------------------------- /tests/unit_tests/reporting/test_docs_read_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/reporting/test_docs_read_parameters.py -------------------------------------------------------------------------------- /tests/unit_tests/runners/test_corsika_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/runners/test_corsika_runner.py -------------------------------------------------------------------------------- /tests/unit_tests/runners/test_corsika_simtel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/runners/test_corsika_simtel_runner.py -------------------------------------------------------------------------------- /tests/unit_tests/runners/test_runner_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/runners/test_runner_services.py -------------------------------------------------------------------------------- /tests/unit_tests/runners/test_simtel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/runners/test_simtel_runner.py -------------------------------------------------------------------------------- /tests/unit_tests/runners/test_simtools_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/runners/test_simtools_runner.py -------------------------------------------------------------------------------- /tests/unit_tests/sim_events/test_file_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/sim_events/test_file_info.py -------------------------------------------------------------------------------- /tests/unit_tests/sim_events/test_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/sim_events/test_histograms.py -------------------------------------------------------------------------------- /tests/unit_tests/sim_events/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/sim_events/test_reader.py -------------------------------------------------------------------------------- /tests/unit_tests/sim_events/test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/sim_events/test_writer.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_pulse_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_pulse_shapes.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simtel_config_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simtel_config_reader.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simtel_config_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simtel_config_writer.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simtel_io_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simtel_io_metadata.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simtel_table_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simtel_table_reader.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simulator_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simulator_array.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simulator_camera_efficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simulator_camera_efficiency.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simulator_light_emission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simulator_light_emission.py -------------------------------------------------------------------------------- /tests/unit_tests/simtel/test_simulator_ray_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/simtel/test_simulator_ray_tracing.py -------------------------------------------------------------------------------- /tests/unit_tests/test_application_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_application_control.py -------------------------------------------------------------------------------- /tests/unit_tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_constants.py -------------------------------------------------------------------------------- /tests/unit_tests/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_dependencies.py -------------------------------------------------------------------------------- /tests/unit_tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_settings.py -------------------------------------------------------------------------------- /tests/unit_tests/test_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_simulator.py -------------------------------------------------------------------------------- /tests/unit_tests/test_telescope_trigger_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_telescope_trigger_rates.py -------------------------------------------------------------------------------- /tests/unit_tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/test_version.py -------------------------------------------------------------------------------- /tests/unit_tests/testing/test_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/testing/test_assertions.py -------------------------------------------------------------------------------- /tests/unit_tests/testing/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/testing/test_configuration.py -------------------------------------------------------------------------------- /tests/unit_tests/testing/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/testing/test_helpers.py -------------------------------------------------------------------------------- /tests/unit_tests/testing/test_log_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/testing/test_log_inspector.py -------------------------------------------------------------------------------- /tests/unit_tests/testing/test_sim_telarray_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/testing/test_sim_telarray_metadata.py -------------------------------------------------------------------------------- /tests/unit_tests/testing/test_validate_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/testing/test_validate_output.py -------------------------------------------------------------------------------- /tests/unit_tests/utils/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/utils/test_general.py -------------------------------------------------------------------------------- /tests/unit_tests/utils/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/utils/test_geometry.py -------------------------------------------------------------------------------- /tests/unit_tests/utils/test_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/utils/test_names.py -------------------------------------------------------------------------------- /tests/unit_tests/utils/test_value_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/utils/test_value_conversion.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_legend_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_legend_handlers.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_array_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_array_layout.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_corsika_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_corsika_histograms.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_incident_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_incident_angles.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_mirrors.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_pixels.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_psf.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_simtel_event_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_simtel_event_histograms.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_simtel_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_simtel_events.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_plot_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_plot_tables.py -------------------------------------------------------------------------------- /tests/unit_tests/visualization/test_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammasim/simtools/HEAD/tests/unit_tests/visualization/test_visualize.py --------------------------------------------------------------------------------