|
staticinherited |
Have to be overwritten and called in your implementation.
With this methods, global parameters/variables are set. The first argument is a path to a directory in which you may have a particular file (or set of files) required to help you algorithm running.
It could be for instance cross section tables for tracking, base signals for PSA etc ...
This method is static because it is called once per PC (with the possibility to have one thread per core/CPU in multiple core/CPU systems). It would not be efficient to load the same informations several times, especially if this informations is huge.
NarvalInterface::process_config() has to be called in your implementation do_adf_conf = 0 (default) means adf is not, in any cases, reconfigured here do_adf_conf = 1 means adf is reconfigured only if ADF_CONF_PATH is not defined
(look for ADF.conf in path) do_adf_conf = 2 means adf is reconfigured even if ADF_CONF_PATH is defined
(allows a specific actor to have a specific configuration)
Definition at line 270 of file NarvalInterface.cpp.