* Allow application of multiple cuts to the same variable in `aict_apply_cuts`, the old format is still supported, but new files should use a list of cuts instead of a dict:
Old:
selection:
width: ['<=', 20]
New:
selection:
- width: ['<=', 20]
- width: ['>=', 5] now possible
* call tight_layout before saving plots in `aict_plot_*_performance` 113
* Add option for an alternative definition of the true value of disp, see 106