new
- add possibility to call finalizer after `rt1.rtprocess.run_processing()` finished
- to *"clean-up"* after processing is done (or the process is terminated)
- add option to save dumps in `rtprocess.run_processing()` even if `postprocess` is not called via
`rt1.rtprocess.run_processing(..., dump_fit=True)`
**Multiconfig Fits**
- add possibility to specify multiple configs in a single .ini file
- processing of multiple configs involves only a single call to `read()`!
- you can specify as many configs as you like in a single `.ini` file!
- to specify multiconfigs, add the config-specific changes to sections starting with `[config <NAME> <SECTION>]`
for example:
ini
[defdict]
--- the default defdict ---
[config NAME defdict]
--- all specifications that differ from the default defdict ---
- Multiconfig fits will be handled with a `rt1.rtfits.MultiFits` object
- use `rt1.rtfits.MultiFits.accessor` to access `Fits` propeties of all configs
- all processed configurations can be saved in a single `.dump`-file!
- this avoids duplicating data that is shared between the configs
fixes
- fix issue in the default *"domainfuncs"* of `rt1.general_functions.scale()`
- make sure `rt1.rtfits.reinit_object()` only copies relevant properties
- speed up `rtprocess.RTresults` initialization for folders with many files