Most of the algorithms are configurable using a YAML configuration file. If you are using Iguana for your analysis, you likely want to customize the algorithm configurations.
The default configuration is installed in the etc/
subdirectory of the Iguana installation. If you have set the Iguana environment variables using, e.g. source this_iguana.sh
, or if you are using the version of Iguana installed on ifarm
, you will have the environment variable $IGUANA_CONFIG_PATH
set to include this etc/
directory.
There are a few ways to configure the algorithms; see the sections below for the options
Important
While algorithm developers are encouraged not to make breaking changes to their algorithms or configuration, in some cases certain changes cannot be prevented. Thus if you have your own algorithm configurations, you may want to keep up-to-date on any changes of the algorithm. We will try to announce all breaking changes in the Iguana release notes.
Note
If the Iguana installation is relocated, the environment variable $IGUANA_CONFIG_PATH
must be used at runtime.
First, copy the default configuration directory to your work area, or to your analysis code source tree; we'll call the copied directory my_iguana_config
, as an example. If $IGUANA_CONFIG_PATH
is the default configuration directory (i.e. you have not set or modified this variable yourself), you may run:
cp -r $IGUANA_CONFIG_PATH my_iguana_config
You may then freely modify any configuration file within my_iguana_config/
. To use this directory in your algorithms, you may do any one of the following:
- Since
$IGUANA_CONFIG_PATH
allows multiple paths, delimited by colons (:
), prependmy_iguana_config/
to$IGUANA_CONFIG_PATH
; the safest way is to use an absolute path:
export IGUANA_CONFIG_PATH=`pwd`/my_iguana_config:$IGUANA_CONFIG_PATH # bash or zsh
setenv IGUANA_CONFIG_PATH `pwd`/my_iguana_config:$IGUANA_CONFIG_PATH # tcsh or csh
The algorithms will then search my_iguana_config
for the configuration before searching the default paths. You may add multiple paths, if needed.
Paths which appear first in $IGUANA_CONFIG_PATH
will be prioritized when the algorithm searches for configuration parameters; this behavior is similar to that of $PATH
or $LD_LIBRARY_PATH
.
- Use
Algorithm::SetConfigDirectory
instead of prepending$IGUANA_CONFIG_PATH
.
Make a new YAML file, containing just the options you want to override; use Algorithm::SetConfigFile
to use this file for each algorithm.
See existing algorithms' configuration, and just copy what you need into your own YAML file; be mindful of the indentation, and that the top-level set of YAML nodes are the algorithm names. For example:
Algorithm default configuration files:
### default configuration file 1
physics::AlgorithmA
cuts: [-1, 1]
### default configuration file 2
physics::AlgorithmB
value: 3
Custom YAML file, widening AlgorithmA
's cuts
and increasing AlgorithmB
's value
:
### custom YAML file
physics::AlgorithmA
cuts: [-2, 2]
physics::AlgorithmB
value: 5