"""Simulator class for managing simulations of showers and array of telescopes."""
import logging
import re
from collections import defaultdict
from pathlib import Path
import numpy as np
import simtools.utils.general as gen
from simtools.corsika.corsika_config import CorsikaConfig
from simtools.io_operations import io_handler
from simtools.job_execution.job_manager import JobManager
from simtools.model.array_model import ArrayModel
from simtools.runners.corsika_runner import CorsikaRunner
from simtools.runners.corsika_simtel_runner import CorsikaSimtelRunner
from simtools.simtel.simulator_array import SimulatorArray
__all__ = [
"Simulator",
"InvalidRunsToSimulateError",
]
[docs]
class InvalidRunsToSimulateError(Exception):
"""Exception for invalid runs to simulate."""
[docs]
class Simulator:
"""
Simulator is managing the simulation of showers and of the array of telescopes.
It interfaces with simulation software packages (e.g., CORSIKA or sim_telarray).
The configuration is set as a dict corresponding to the command line configuration groups
(especially simulation_software, simulation_model, simulation_parameters).
Parameters
----------
args_dict : dict
Configuration dictionary
(includes simulation_software, simulation_model, simulation_parameters groups).
label: str
Instance label.
extra_commands: str or list of str
Extra commands to be added to the run script before the run command.
mongo_db_config: dict
MongoDB configuration.
"""
def __init__(
self,
args_dict,
label=None,
extra_commands=None,
mongo_db_config=None,
):
"""Initialize Simulator class."""
self._logger = logging.getLogger(__name__)
self.args_dict = args_dict
self.simulation_software = self.args_dict["simulation_software"]
self._logger.debug(f"Init Simulator {self.simulation_software}")
self.label = label
self.io_handler = io_handler.IOHandler()
self.runs = self._initialize_run_list()
self._results = defaultdict(list)
self._test = self.args_dict.get("test", False)
self._submit_engine = self.args_dict.get("submit_engine", "local")
self._submit_options = self.args_dict.get("submit_options", None)
self._extra_commands = extra_commands
self.array_model = self._initialize_array_model(mongo_db_config)
self._simulation_runner = self._initialize_simulation_runner(mongo_db_config)
@property
def simulation_software(self):
"""The attribute simulation_software."""
return self._simulation_software
@simulation_software.setter
def simulation_software(self, simulation_software):
"""
Set and test simulation_software type.
Parameters
----------
simulation_software: choices: [simtel, corsika, corsika_simtel]
implemented are sim_telarray and CORSIKA or corsika_simtel
(running CORSIKA and piping it directly to sim_telarray)
Raises
------
gen.InvalidConfigDataError
"""
if simulation_software not in ["simtel", "corsika", "corsika_simtel"]:
self._logger.error(f"Invalid simulation software: {simulation_software}")
raise gen.InvalidConfigDataError
self._simulation_software = simulation_software.lower()
def _initialize_array_model(self, mongo_db_config):
"""
Initialize array simulation model.
Parameters
----------
mongo_db_config: dict
Database configuration.
Returns
-------
ArrayModel
ArrayModel object.
"""
return ArrayModel(
label=self.label,
site=self.args_dict.get("site"),
layout_name=self.args_dict.get("array_layout_name"),
mongo_db_config=mongo_db_config,
model_version=self.args_dict.get("model_version", None),
)
def _initialize_run_list(self):
"""
Initialize run list using the configuration values 'run_number_start' and 'number_of_runs'.
Returns
-------
list
List of run numbers.
Raises
------
KeyError
If 'run_number_start' or 'number_of_runs' are not found in the configuration.
"""
try:
return self._validate_run_list_and_range(
run_list=None,
run_range=[
self.args_dict["run_number_start"],
self.args_dict["run_number_start"] + self.args_dict["number_of_runs"],
],
)
except KeyError as exc:
self._logger.error(
"Error in initializing run list (missing 'run_number_start' or 'number_of_runs')"
)
raise exc
def _validate_run_list_and_range(self, run_list, run_range):
"""
Prepare list of run numbers from a list or from a range.
If both arguments are given, they will be merged into a single list.
Attributes
----------
run_list: list
list of runs (integers)
run_range:list
min and max of range of runs to be simulated (two list entries)
Returns
-------
list
list of unique run numbers (integers)
"""
if run_list is None and run_range is None:
self._logger.debug("Nothing to validate - run_list and run_range not given.")
return None
validated_runs = []
if run_list is not None:
if not isinstance(run_list, list):
run_list = [run_list]
if not all(isinstance(r, int) for r in run_list):
msg = "run_list must contain only integers."
self._logger.error(msg)
raise InvalidRunsToSimulateError
validated_runs = list(run_list)
if run_range is not None:
if not all(isinstance(r, int) for r in run_range) or len(run_range) != 2:
msg = "run_range must contain two integers only."
self._logger.error(msg)
raise InvalidRunsToSimulateError
run_range = np.arange(run_range[0], run_range[1])
self._logger.debug(f"run_range: {run_range}")
validated_runs.extend(list(run_range))
validated_runs_unique = sorted(set(validated_runs))
self._logger.info(f"run_list: {validated_runs_unique}")
return list(validated_runs_unique)
def _initialize_simulation_runner(self, db_config):
"""
Initialize corsika configuration and simulation runners.
Parameters
----------
db_config: dict
Database configuration.
Returns
-------
CorsikaRunner or SimulatorArray or CorsikaSimtelRunner
Simulation runner object.
"""
corsika_config = CorsikaConfig(
array_model=self.array_model,
label=self.label,
args_dict=self.args_dict,
db_config=db_config,
)
runner_class = {
"corsika": CorsikaRunner,
"simtel": SimulatorArray,
"corsika_simtel": CorsikaSimtelRunner,
}.get(self.simulation_software)
runner_args = {
"label": self.label,
"corsika_config": corsika_config,
"simtel_path": self.args_dict.get("simtel_path"),
"use_multipipe": runner_class is CorsikaSimtelRunner,
}
if runner_class is not SimulatorArray:
runner_args["keep_seeds"] = self.args_dict.get("corsika_test_seeds", False)
if runner_class is not CorsikaRunner:
runner_args["sim_telarray_seeds"] = self.args_dict.get("sim_telarray_seeds")
return runner_class(**runner_args)
def _fill_results_without_run(self, input_file_list):
"""
Fill results dict without calling submit (e.g., for testing).
Parameters
----------
input_file_list: str or list of str
Single file or list of files of shower simulations.
"""
input_file_list = self._enforce_list_type(input_file_list)
for file in input_file_list:
run = self._guess_run_from_file(file)
self._fill_results(file, run)
if run not in self.runs:
self.runs.append(run)
[docs]
def simulate(self, input_file_list=None):
"""
Submit a run script as a job.
Parameters
----------
input_file_list: str or list of str
Single file or list of files of shower simulations.
"""
self._logger.info(f"Submission command: {self._submit_engine}")
runs_and_files_to_submit = self._get_runs_and_files_to_submit(
input_file_list=input_file_list
)
self._logger.info(
f"Starting submission for {len(runs_and_files_to_submit)} "
f"run{'s' if len(runs_and_files_to_submit) > 1 else ''}"
)
for run_number, input_file in runs_and_files_to_submit.items():
run_script = self._simulation_runner.prepare_run_script(
run_number=run_number, input_file=input_file, extra_commands=self._extra_commands
)
job_manager = JobManager(
submit_engine=self._submit_engine,
submit_options=self._submit_options,
test=self._test,
)
job_manager.submit(
run_script=run_script,
run_out_file=self._simulation_runner.get_file_name(
file_type="sub_log", run_number=run_number
),
log_file=self._simulation_runner.get_file_name(
file_type=("log"), run_number=run_number
),
)
self._fill_results(input_file, run_number)
def _get_runs_and_files_to_submit(self, input_file_list=None):
"""
Return a dictionary with run numbers and simulation files.
The latter are expected to be given for the simtel simulator.
Parameters
----------
input_file_list: str or list of str
Single file or list of files of shower simulations.
Returns
-------
runs_and_files: dict
dictionary with run number as key and (if available) simulation
file name as value
Raises
------
ValueError
If no runs are to be submitted.
"""
_runs_and_files = {}
self._logger.debug(f"Getting runs and files to submit ({input_file_list})")
if self.simulation_software == "simtel":
input_file_list = self._enforce_list_type(input_file_list)
_runs_and_files = {self._guess_run_from_file(file): file for file in input_file_list}
elif self.simulation_software in ["corsika", "corsika_simtel"]:
_runs_and_files = {run: None for run in self._get_runs_to_simulate()}
if len(_runs_and_files) == 0:
raise ValueError("No runs to submit.")
return _runs_and_files
@staticmethod
def _enforce_list_type(input_file_list):
"""
Enforce the input list to be a list.
Parameters
----------
input_file_list: str or list of str
Single file or list of files of shower simulations.
Returns
-------
list
List of input files.
"""
if not input_file_list:
return []
return input_file_list if isinstance(input_file_list, list) else [input_file_list]
def _guess_run_from_file(self, file):
"""
Extract the run number from the given file name.
Input file names can follow any pattern with the
string 'run' followed by the run number.
Parameters
----------
file: Path
Simulation file name
Returns
-------
int
The extracted run number. If extraction fails, returns 1 and logs a warning.
"""
file_name = str(Path(file).name)
try:
run_str = re.search(r"run\d*", file_name).group()
return int(run_str[3:])
except (ValueError, AttributeError):
self._logger.warning(f"Run number could not be guessed from {file_name} using run = 1")
return 1
def _fill_results(self, file, run_number):
"""
Fill the results dict with input, output, hist, and log files.
Parameters
----------
file: str
input file name
run_number: int
run number
"""
self._results["output"].append(
str(self._simulation_runner.get_file_name(file_type="output", run_number=run_number))
)
self._results["sub_out"].append(
str(
self._simulation_runner.get_file_name(
file_type="sub_log", run_number=run_number, mode="out"
)
)
)
if self.simulation_software in ["simtel", "corsika_simtel"]:
self._results["log"].append(
str(
self._simulation_runner.get_file_name(
simulation_software="simtel", file_type="log", run_number=run_number
)
)
)
self._results["input"].append(str(file))
self._results["hist"].append(
str(
self._simulation_runner.get_file_name(
simulation_software="simtel", file_type="histogram", run_number=run_number
)
)
)
else:
self._results["corsika_autoinputs_log"].append(
str(
self._simulation_runner.get_file_name(
simulation_software="corsika", file_type="log", run_number=run_number
)
)
)
self._results["input"].append(None)
self._results["hist"].append(None)
self._results["log"].append(None)
[docs]
def get_file_list(self, file_type="output"):
"""
Get list of files generated by simulations.
Options are "input", "output", "hist", "log".
Not all file types are available for all simulation types.
Returns an empty list for an unknown file type.
Parameters
----------
file_type : str
File type to be listed.
Returns
-------
list
List with the full path of all output files.
"""
self._logger.info(f"Getting list of {file_type} files")
return self._results[file_type]
[docs]
def print_list_of_files(self, file_type="output"):
"""
Print list of output files generated by simulations.
Options are "input", "output", "hist", "log".
Parameters
----------
file_type : str
File type to be listed.
"""
self._logger.info(f"Printing list of {file_type} files")
for file in self._results[file_type]:
print(file)
def _make_resources_report(self, input_file_list):
"""
Prepare a simple report on computing wall clock time used in the simulations.
Parameters
----------
input_file_list: str or list of str
Single file or list of files of shower simulations.
Returns
-------
dict
Dictionary with reports on computing resources
"""
if len(self._results["sub_out"]) == 0:
if input_file_list is None:
return {"Wall time/run [sec]": np.nan}
self._fill_results_without_run(input_file_list)
runtime = []
_resources = {}
for run in self.runs:
_resources = self._simulation_runner.get_resources(run_number=run)
if _resources.get("runtime"):
runtime.append(_resources["runtime"])
mean_runtime = np.mean(runtime)
resource_summary = {}
resource_summary["Wall time/run [sec]"] = mean_runtime
if "n_events" in _resources and _resources["n_events"] > 0:
resource_summary["#events/run"] = _resources["n_events"]
resource_summary["Wall time/1000 events [sec]"] = (
mean_runtime * 1000 / _resources["n_events"]
)
return resource_summary
[docs]
def resources(self, input_file_list=None):
"""
Print a simple report on computing resources used.
Includes run time per run only at this point.
Parameters
----------
input_file_list: str or list of str
Single file or list of files of shower simulations.
"""
resources = self._make_resources_report(input_file_list)
print("-----------------------------")
print(f"Computing Resources Report - {self.simulation_software} Simulations")
for key, value in resources.items():
print(f"{key} = {value:.2f}")
print("-----------------------------")
def _get_runs_to_simulate(self, run_list=None, run_range=None):
"""
Process run_list and run_range and return the validated list of runs.
Attributes
----------
run_list: list
list of runs (integers)
run_range:list
min and max of range of runs to be simulated (two list entries)
Returns
-------
list
list of unique run numbers (integers)
"""
if run_list is None and run_range is None:
return [] if self.runs is None else self.runs
return self._validate_run_list_and_range(run_list, run_range)
[docs]
def save_file_lists(self):
"""Save files lists for output and log files."""
for file_type in ["output", "log", "hist"]:
file_name = self.io_handler.get_output_directory(label=self.label).joinpath(
f"{file_type}_files.txt"
)
file_list = self.get_file_list(file_type=file_type)
if all(element is not None for element in file_list) and len(file_list) > 0:
self._logger.info(f"Saving list of {file_type} files to {file_name}")
with open(file_name, "w", encoding="utf-8") as f:
for line in self.get_file_list(file_type=file_type):
f.write(f"{line}\n")
else:
self._logger.debug(f"No files to save for {file_type} files.")