diff --git a/.buildinfo b/.buildinfo
index c9505303..d994a785 100644
--- a/.buildinfo
+++ b/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: dd9adcd658a9006359833a9f28eae627
+config: 041a713502a6a271555c3c18a9ede23f
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/_modules/index.html b/_modules/index.html
index cb45748a..2bb10831 100644
--- a/_modules/index.html
+++ b/_modules/index.html
@@ -3,7 +3,7 @@
- Overview: module code — omc3 0.15.1 documentation
+ Overview: module code — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/amplitude_detuning_analysis.html b/_modules/omc3/amplitude_detuning_analysis.html
index 11dc42b8..c1e75dee 100644
--- a/_modules/omc3/amplitude_detuning_analysis.html
+++ b/_modules/omc3/amplitude_detuning_analysis.html
@@ -3,7 +3,7 @@
- omc3.amplitude_detuning_analysis — omc3 0.15.1 documentation
+ omc3.amplitude_detuning_analysis — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/check_corrections.html b/_modules/omc3/check_corrections.html
index 7d5ac7de..6e58dd92 100644
--- a/_modules/omc3/check_corrections.html
+++ b/_modules/omc3/check_corrections.html
@@ -3,7 +3,7 @@
- omc3.check_corrections — omc3 0.15.1 documentation
+ omc3.check_corrections — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/filters.html b/_modules/omc3/correction/filters.html
index e2b8b106..c4d81ad5 100644
--- a/_modules/omc3/correction/filters.html
+++ b/_modules/omc3/correction/filters.html
@@ -3,7 +3,7 @@
- omc3.correction.filters — omc3 0.15.1 documentation
+ omc3.correction.filters — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/handler.html b/_modules/omc3/correction/handler.html
index 960f29fd..36671b9c 100644
--- a/_modules/omc3/correction/handler.html
+++ b/_modules/omc3/correction/handler.html
@@ -3,7 +3,7 @@
- omc3.correction.handler — omc3 0.15.1 documentation
+ omc3.correction.handler — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/model_appenders.html b/_modules/omc3/correction/model_appenders.html
index 2ec4f3a6..cdeb8a3b 100644
--- a/_modules/omc3/correction/model_appenders.html
+++ b/_modules/omc3/correction/model_appenders.html
@@ -3,7 +3,7 @@
- omc3.correction.model_appenders — omc3 0.15.1 documentation
+ omc3.correction.model_appenders — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/model_diff.html b/_modules/omc3/correction/model_diff.html
index 2f061861..bc38b0b3 100644
--- a/_modules/omc3/correction/model_diff.html
+++ b/_modules/omc3/correction/model_diff.html
@@ -3,7 +3,7 @@
- omc3.correction.model_diff — omc3 0.15.1 documentation
+ omc3.correction.model_diff — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/response_io.html b/_modules/omc3/correction/response_io.html
index 590e759d..3c09b6c0 100644
--- a/_modules/omc3/correction/response_io.html
+++ b/_modules/omc3/correction/response_io.html
@@ -3,7 +3,7 @@
- omc3.correction.response_io — omc3 0.15.1 documentation
+ omc3.correction.response_io — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/response_madx.html b/_modules/omc3/correction/response_madx.html
index 171eed82..4904bcc1 100644
--- a/_modules/omc3/correction/response_madx.html
+++ b/_modules/omc3/correction/response_madx.html
@@ -3,7 +3,7 @@
- omc3.correction.response_madx — omc3 0.15.1 documentation
+ omc3.correction.response_madx — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
@@ -231,11 +231,12 @@ Source code for omc3.correction.response_madx import zipfile
import pandas as pd
import tfs
+from numpy.exceptions import ComplexWarning
from optics_functions.coupling import coupling_via_cmatrix
import omc3.madx_wrapper as madx_wrapper
from omc3.optics_measurements.constants import ( BETA , DISPERSION , F1001 , F1010 ,
- NORM_DISPERSION , PHASE_ADV , TUNE )
+ NORM_DISPERSION , PHASE_ADV , TUNE )
from omc3.correction.constants import INCR
from omc3.model.accelerators.accelerator import Accelerator , AccElementTypes
from omc3.utils import logging_tools
@@ -367,7 +368,7 @@ Source code for omc3.correction.response_madx def _load_madx_results (
variables : List [ str ],
- process_pool : multiprocessing . Pool ,
+ process_pool ,
incr_dict : dict ,
temp_dir : Path
) -> Dict [ str , tfs . TfsDataFrame ]:
@@ -426,7 +427,7 @@ Source code for omc3.correction.response_madx resp = np . divide ( resp , resp [ columns . index ( f " { INCR } " )])
Q_arr = np . column_stack (( resp [ columns . index ( f " { TUNE } 1" ), 0 , :], resp [ columns . index ( f " { TUNE } 2" ), 0 , :])) . T
- with suppress_warnings ( np . ComplexWarning ): # raised as everything is complex-type now
+ with suppress_warnings ( ComplexWarning ): # raised as everything is complex-type now
return {
f " { PHASE_ADV } X" : pd . DataFrame ( data = resp [ columns . index ( f " { PHASE_ADV } X" )], index = bpms , columns = keys ) . astype ( np . float64 ),
f " { PHASE_ADV } Y" : pd . DataFrame ( data = resp [ columns . index ( f " { PHASE_ADV } Y" )], index = bpms , columns = keys ) . astype ( np . float64 ),
diff --git a/_modules/omc3/correction/response_twiss.html b/_modules/omc3/correction/response_twiss.html
index 129233f0..0a4fcb48 100644
--- a/_modules/omc3/correction/response_twiss.html
+++ b/_modules/omc3/correction/response_twiss.html
@@ -3,7 +3,7 @@
- omc3.correction.response_twiss — omc3 0.15.1 documentation
+ omc3.correction.response_twiss — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/correction/sequence_evaluation.html b/_modules/omc3/correction/sequence_evaluation.html
index f7d80e56..fc528c8e 100644
--- a/_modules/omc3/correction/sequence_evaluation.html
+++ b/_modules/omc3/correction/sequence_evaluation.html
@@ -3,7 +3,7 @@
- omc3.correction.sequence_evaluation — omc3 0.15.1 documentation
+ omc3.correction.sequence_evaluation — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/definitions/formats.html b/_modules/omc3/definitions/formats.html
index dbd69369..2844e353 100644
--- a/_modules/omc3/definitions/formats.html
+++ b/_modules/omc3/definitions/formats.html
@@ -3,7 +3,7 @@
- omc3.definitions.formats — omc3 0.15.1 documentation
+ omc3.definitions.formats — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/global_correction.html b/_modules/omc3/global_correction.html
index c48b8a17..b5503f89 100644
--- a/_modules/omc3/global_correction.html
+++ b/_modules/omc3/global_correction.html
@@ -3,7 +3,7 @@
- omc3.global_correction — omc3 0.15.1 documentation
+ omc3.global_correction — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/harpy/clean.html b/_modules/omc3/harpy/clean.html
index bb3f4795..0bdd6006 100644
--- a/_modules/omc3/harpy/clean.html
+++ b/_modules/omc3/harpy/clean.html
@@ -3,7 +3,7 @@
- omc3.harpy.clean — omc3 0.15.1 documentation
+ omc3.harpy.clean — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/harpy/frequency.html b/_modules/omc3/harpy/frequency.html
index 557aa0f4..c2f86b16 100644
--- a/_modules/omc3/harpy/frequency.html
+++ b/_modules/omc3/harpy/frequency.html
@@ -3,7 +3,7 @@
- omc3.harpy.frequency — omc3 0.15.1 documentation
+ omc3.harpy.frequency — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/harpy/handler.html b/_modules/omc3/harpy/handler.html
index 835a1e05..026c541c 100644
--- a/_modules/omc3/harpy/handler.html
+++ b/_modules/omc3/harpy/handler.html
@@ -3,7 +3,7 @@
- omc3.harpy.handler — omc3 0.15.1 documentation
+ omc3.harpy.handler — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/harpy/kicker.html b/_modules/omc3/harpy/kicker.html
index 35eed4d7..a2d5838a 100644
--- a/_modules/omc3/harpy/kicker.html
+++ b/_modules/omc3/harpy/kicker.html
@@ -3,7 +3,7 @@
- omc3.harpy.kicker — omc3 0.15.1 documentation
+ omc3.harpy.kicker — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/hole_in_one.html b/_modules/omc3/hole_in_one.html
index 0232980d..78301def 100644
--- a/_modules/omc3/hole_in_one.html
+++ b/_modules/omc3/hole_in_one.html
@@ -3,7 +3,7 @@
- omc3.hole_in_one — omc3 0.15.1 documentation
+ omc3.hole_in_one — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/kmod/analysis.html b/_modules/omc3/kmod/analysis.html
index dc505e8b..8f7688d8 100644
--- a/_modules/omc3/kmod/analysis.html
+++ b/_modules/omc3/kmod/analysis.html
@@ -3,7 +3,7 @@
- omc3.kmod.analysis — omc3 0.15.1 documentation
+ omc3.kmod.analysis — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/knob_extractor.html b/_modules/omc3/knob_extractor.html
index d10d8e6e..53614018 100644
--- a/_modules/omc3/knob_extractor.html
+++ b/_modules/omc3/knob_extractor.html
@@ -3,7 +3,7 @@
- omc3.knob_extractor — omc3 0.15.1 documentation
+ omc3.knob_extractor — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/madx_wrapper.html b/_modules/omc3/madx_wrapper.html
index 11bab335..99c70191 100644
--- a/_modules/omc3/madx_wrapper.html
+++ b/_modules/omc3/madx_wrapper.html
@@ -3,7 +3,7 @@
- omc3.madx_wrapper — omc3 0.15.1 documentation
+ omc3.madx_wrapper — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/accelerator.html b/_modules/omc3/model/accelerators/accelerator.html
index 9b05d336..2c6c6cc0 100644
--- a/_modules/omc3/model/accelerators/accelerator.html
+++ b/_modules/omc3/model/accelerators/accelerator.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.accelerator — omc3 0.15.1 documentation
+ omc3.model.accelerators.accelerator — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/esrf.html b/_modules/omc3/model/accelerators/esrf.html
index 3a85fd67..bbff01c6 100644
--- a/_modules/omc3/model/accelerators/esrf.html
+++ b/_modules/omc3/model/accelerators/esrf.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.esrf — omc3 0.15.1 documentation
+ omc3.model.accelerators.esrf — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/iota.html b/_modules/omc3/model/accelerators/iota.html
index b4f1b514..f8faeabb 100644
--- a/_modules/omc3/model/accelerators/iota.html
+++ b/_modules/omc3/model/accelerators/iota.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.iota — omc3 0.15.1 documentation
+ omc3.model.accelerators.iota — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/lhc.html b/_modules/omc3/model/accelerators/lhc.html
index 9e5ba8a4..743d3d2c 100644
--- a/_modules/omc3/model/accelerators/lhc.html
+++ b/_modules/omc3/model/accelerators/lhc.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.lhc — omc3 0.15.1 documentation
+ omc3.model.accelerators.lhc — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/petra.html b/_modules/omc3/model/accelerators/petra.html
index bf3b90aa..6575cb15 100644
--- a/_modules/omc3/model/accelerators/petra.html
+++ b/_modules/omc3/model/accelerators/petra.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.petra — omc3 0.15.1 documentation
+ omc3.model.accelerators.petra — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/ps.html b/_modules/omc3/model/accelerators/ps.html
index 56beb903..870b13ef 100644
--- a/_modules/omc3/model/accelerators/ps.html
+++ b/_modules/omc3/model/accelerators/ps.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.ps — omc3 0.15.1 documentation
+ omc3.model.accelerators.ps — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/psbooster.html b/_modules/omc3/model/accelerators/psbooster.html
index 758127e1..2a2466b3 100644
--- a/_modules/omc3/model/accelerators/psbooster.html
+++ b/_modules/omc3/model/accelerators/psbooster.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.psbooster — omc3 0.15.1 documentation
+ omc3.model.accelerators.psbooster — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/accelerators/skekb.html b/_modules/omc3/model/accelerators/skekb.html
index 5920b478..aa89ea81 100644
--- a/_modules/omc3/model/accelerators/skekb.html
+++ b/_modules/omc3/model/accelerators/skekb.html
@@ -3,7 +3,7 @@
- omc3.model.accelerators.skekb — omc3 0.15.1 documentation
+ omc3.model.accelerators.skekb — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/manager.html b/_modules/omc3/model/manager.html
index e9e70618..d89ee1b4 100644
--- a/_modules/omc3/model/manager.html
+++ b/_modules/omc3/model/manager.html
@@ -3,7 +3,7 @@
- omc3.model.manager — omc3 0.15.1 documentation
+ omc3.model.manager — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/model_creators/lhc_model_creator.html b/_modules/omc3/model/model_creators/lhc_model_creator.html
index 893b33d4..8f9cd03e 100644
--- a/_modules/omc3/model/model_creators/lhc_model_creator.html
+++ b/_modules/omc3/model/model_creators/lhc_model_creator.html
@@ -3,7 +3,7 @@
- omc3.model.model_creators.lhc_model_creator — omc3 0.15.1 documentation
+ omc3.model.model_creators.lhc_model_creator — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/model_creators/ps_model_creator.html b/_modules/omc3/model/model_creators/ps_model_creator.html
index cc279a1b..e57b5e8f 100644
--- a/_modules/omc3/model/model_creators/ps_model_creator.html
+++ b/_modules/omc3/model/model_creators/ps_model_creator.html
@@ -3,7 +3,7 @@
- omc3.model.model_creators.ps_model_creator — omc3 0.15.1 documentation
+ omc3.model.model_creators.ps_model_creator — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model/model_creators/psbooster_model_creator.html b/_modules/omc3/model/model_creators/psbooster_model_creator.html
index c7ad2ae4..68950c5e 100644
--- a/_modules/omc3/model/model_creators/psbooster_model_creator.html
+++ b/_modules/omc3/model/model_creators/psbooster_model_creator.html
@@ -3,7 +3,7 @@
- omc3.model.model_creators.psbooster_model_creator — omc3 0.15.1 documentation
+ omc3.model.model_creators.psbooster_model_creator — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/model_creator.html b/_modules/omc3/model_creator.html
index 64863d04..75ff225a 100644
--- a/_modules/omc3/model_creator.html
+++ b/_modules/omc3/model_creator.html
@@ -3,7 +3,7 @@
- omc3.model_creator — omc3 0.15.1 documentation
+ omc3.model_creator — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/beta_from_amplitude.html b/_modules/omc3/optics_measurements/beta_from_amplitude.html
index 8c860feb..1653062c 100644
--- a/_modules/omc3/optics_measurements/beta_from_amplitude.html
+++ b/_modules/omc3/optics_measurements/beta_from_amplitude.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.beta_from_amplitude — omc3 0.15.1 documentation
+ omc3.optics_measurements.beta_from_amplitude — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/beta_from_phase.html b/_modules/omc3/optics_measurements/beta_from_phase.html
index df203cfa..229c64d7 100644
--- a/_modules/omc3/optics_measurements/beta_from_phase.html
+++ b/_modules/omc3/optics_measurements/beta_from_phase.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.beta_from_phase — omc3 0.15.1 documentation
+ omc3.optics_measurements.beta_from_phase — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/data_models.html b/_modules/omc3/optics_measurements/data_models.html
index 871a4df9..e9d174eb 100644
--- a/_modules/omc3/optics_measurements/data_models.html
+++ b/_modules/omc3/optics_measurements/data_models.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.data_models — omc3 0.15.1 documentation
+ omc3.optics_measurements.data_models — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/dispersion.html b/_modules/omc3/optics_measurements/dispersion.html
index 62591734..ec9da0e1 100644
--- a/_modules/omc3/optics_measurements/dispersion.html
+++ b/_modules/omc3/optics_measurements/dispersion.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.dispersion — omc3 0.15.1 documentation
+ omc3.optics_measurements.dispersion — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/dpp.html b/_modules/omc3/optics_measurements/dpp.html
index 0e32bfdd..d7e32579 100644
--- a/_modules/omc3/optics_measurements/dpp.html
+++ b/_modules/omc3/optics_measurements/dpp.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.dpp — omc3 0.15.1 documentation
+ omc3.optics_measurements.dpp — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/interaction_point.html b/_modules/omc3/optics_measurements/interaction_point.html
index 34c937be..f9fb8f91 100644
--- a/_modules/omc3/optics_measurements/interaction_point.html
+++ b/_modules/omc3/optics_measurements/interaction_point.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.interaction_point — omc3 0.15.1 documentation
+ omc3.optics_measurements.interaction_point — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/kick.html b/_modules/omc3/optics_measurements/kick.html
index 350f6919..e4988c1b 100644
--- a/_modules/omc3/optics_measurements/kick.html
+++ b/_modules/omc3/optics_measurements/kick.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.kick — omc3 0.15.1 documentation
+ omc3.optics_measurements.kick — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/measure_optics.html b/_modules/omc3/optics_measurements/measure_optics.html
index c4b887eb..b0bd7ad1 100644
--- a/_modules/omc3/optics_measurements/measure_optics.html
+++ b/_modules/omc3/optics_measurements/measure_optics.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.measure_optics — omc3 0.15.1 documentation
+ omc3.optics_measurements.measure_optics — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/phase.html b/_modules/omc3/optics_measurements/phase.html
index 2c41a24e..11134d34 100644
--- a/_modules/omc3/optics_measurements/phase.html
+++ b/_modules/omc3/optics_measurements/phase.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.phase — omc3 0.15.1 documentation
+ omc3.optics_measurements.phase — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/rdt.html b/_modules/omc3/optics_measurements/rdt.html
index 5f4b489e..86a3b83a 100644
--- a/_modules/omc3/optics_measurements/rdt.html
+++ b/_modules/omc3/optics_measurements/rdt.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.rdt — omc3 0.15.1 documentation
+ omc3.optics_measurements.rdt — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/toolbox.html b/_modules/omc3/optics_measurements/toolbox.html
index 4f978905..675f5978 100644
--- a/_modules/omc3/optics_measurements/toolbox.html
+++ b/_modules/omc3/optics_measurements/toolbox.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.toolbox — omc3 0.15.1 documentation
+ omc3.optics_measurements.toolbox — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/optics_measurements/tune.html b/_modules/omc3/optics_measurements/tune.html
index 6001393c..f1d0eb8d 100644
--- a/_modules/omc3/optics_measurements/tune.html
+++ b/_modules/omc3/optics_measurements/tune.html
@@ -3,7 +3,7 @@
- omc3.optics_measurements.tune — omc3 0.15.1 documentation
+ omc3.optics_measurements.tune — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/optics_measurements/utils.html b/_modules/omc3/plotting/optics_measurements/utils.html
index 3171653a..a965c1ce 100644
--- a/_modules/omc3/plotting/optics_measurements/utils.html
+++ b/_modules/omc3/plotting/optics_measurements/utils.html
@@ -3,7 +3,7 @@
- omc3.plotting.optics_measurements.utils — omc3 0.15.1 documentation
+ omc3.plotting.optics_measurements.utils — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/plot_amplitude_detuning.html b/_modules/omc3/plotting/plot_amplitude_detuning.html
index c65c7e0e..ffa1c4f2 100644
--- a/_modules/omc3/plotting/plot_amplitude_detuning.html
+++ b/_modules/omc3/plotting/plot_amplitude_detuning.html
@@ -3,7 +3,7 @@
- omc3.plotting.plot_amplitude_detuning — omc3 0.15.1 documentation
+ omc3.plotting.plot_amplitude_detuning — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/plot_bbq.html b/_modules/omc3/plotting/plot_bbq.html
index 2db97e16..5c6fc812 100644
--- a/_modules/omc3/plotting/plot_bbq.html
+++ b/_modules/omc3/plotting/plot_bbq.html
@@ -3,7 +3,7 @@
- omc3.plotting.plot_bbq — omc3 0.15.1 documentation
+ omc3.plotting.plot_bbq — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/plot_checked_corrections.html b/_modules/omc3/plotting/plot_checked_corrections.html
index 659a21b9..c8351617 100644
--- a/_modules/omc3/plotting/plot_checked_corrections.html
+++ b/_modules/omc3/plotting/plot_checked_corrections.html
@@ -3,7 +3,7 @@
- omc3.plotting.plot_checked_corrections — omc3 0.15.1 documentation
+ omc3.plotting.plot_checked_corrections — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/plot_optics_measurements.html b/_modules/omc3/plotting/plot_optics_measurements.html
index 412c06d0..8586e710 100644
--- a/_modules/omc3/plotting/plot_optics_measurements.html
+++ b/_modules/omc3/plotting/plot_optics_measurements.html
@@ -3,7 +3,7 @@
- omc3.plotting.plot_optics_measurements — omc3 0.15.1 documentation
+ omc3.plotting.plot_optics_measurements — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/plot_spectrum.html b/_modules/omc3/plotting/plot_spectrum.html
index a6be7af3..ffee816d 100644
--- a/_modules/omc3/plotting/plot_spectrum.html
+++ b/_modules/omc3/plotting/plot_spectrum.html
@@ -3,7 +3,7 @@
- omc3.plotting.plot_spectrum — omc3 0.15.1 documentation
+ omc3.plotting.plot_spectrum — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/plot_tfs.html b/_modules/omc3/plotting/plot_tfs.html
index db364585..49807575 100644
--- a/_modules/omc3/plotting/plot_tfs.html
+++ b/_modules/omc3/plotting/plot_tfs.html
@@ -3,7 +3,7 @@
- omc3.plotting.plot_tfs — omc3 0.15.1 documentation
+ omc3.plotting.plot_tfs — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/spectrum/stem.html b/_modules/omc3/plotting/spectrum/stem.html
index 111c3756..8ef16e68 100644
--- a/_modules/omc3/plotting/spectrum/stem.html
+++ b/_modules/omc3/plotting/spectrum/stem.html
@@ -3,7 +3,7 @@
- omc3.plotting.spectrum.stem — omc3 0.15.1 documentation
+ omc3.plotting.spectrum.stem — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/spectrum/utils.html b/_modules/omc3/plotting/spectrum/utils.html
index 3dc84b5a..c3164820 100644
--- a/_modules/omc3/plotting/spectrum/utils.html
+++ b/_modules/omc3/plotting/spectrum/utils.html
@@ -3,7 +3,7 @@
- omc3.plotting.spectrum.utils — omc3 0.15.1 documentation
+ omc3.plotting.spectrum.utils — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/spectrum/waterfall.html b/_modules/omc3/plotting/spectrum/waterfall.html
index 7d9cb2d8..7214efbe 100644
--- a/_modules/omc3/plotting/spectrum/waterfall.html
+++ b/_modules/omc3/plotting/spectrum/waterfall.html
@@ -3,7 +3,7 @@
- omc3.plotting.spectrum.waterfall — omc3 0.15.1 documentation
+ omc3.plotting.spectrum.waterfall — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/utils/annotations.html b/_modules/omc3/plotting/utils/annotations.html
index a7715ff8..b7d99dae 100644
--- a/_modules/omc3/plotting/utils/annotations.html
+++ b/_modules/omc3/plotting/utils/annotations.html
@@ -3,7 +3,7 @@
- omc3.plotting.utils.annotations — omc3 0.15.1 documentation
+ omc3.plotting.utils.annotations — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/utils/colors.html b/_modules/omc3/plotting/utils/colors.html
index 2459145f..340e71c9 100644
--- a/_modules/omc3/plotting/utils/colors.html
+++ b/_modules/omc3/plotting/utils/colors.html
@@ -3,7 +3,7 @@
- omc3.plotting.utils.colors — omc3 0.15.1 documentation
+ omc3.plotting.utils.colors — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/utils/lines.html b/_modules/omc3/plotting/utils/lines.html
index ab659a2b..567bccef 100644
--- a/_modules/omc3/plotting/utils/lines.html
+++ b/_modules/omc3/plotting/utils/lines.html
@@ -3,7 +3,7 @@
- omc3.plotting.utils.lines — omc3 0.15.1 documentation
+ omc3.plotting.utils.lines — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/utils/style.html b/_modules/omc3/plotting/utils/style.html
index 15ca6b5a..561665f1 100644
--- a/_modules/omc3/plotting/utils/style.html
+++ b/_modules/omc3/plotting/utils/style.html
@@ -3,7 +3,7 @@
- omc3.plotting.utils.style — omc3 0.15.1 documentation
+ omc3.plotting.utils.style — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/plotting/utils/windows.html b/_modules/omc3/plotting/utils/windows.html
index 1e59a911..9c73c187 100644
--- a/_modules/omc3/plotting/utils/windows.html
+++ b/_modules/omc3/plotting/utils/windows.html
@@ -3,7 +3,7 @@
- omc3.plotting.utils.windows — omc3 0.15.1 documentation
+ omc3.plotting.utils.windows — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/response_creator.html b/_modules/omc3/response_creator.html
index 54980500..f733f0c4 100644
--- a/_modules/omc3/response_creator.html
+++ b/_modules/omc3/response_creator.html
@@ -3,7 +3,7 @@
- omc3.response_creator — omc3 0.15.1 documentation
+ omc3.response_creator — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/run_kmod.html b/_modules/omc3/run_kmod.html
index 50137214..e61a9fc4 100644
--- a/_modules/omc3/run_kmod.html
+++ b/_modules/omc3/run_kmod.html
@@ -3,7 +3,7 @@
- omc3.run_kmod — omc3 0.15.1 documentation
+ omc3.run_kmod — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/scripts/betabeatsrc_output_converter.html b/_modules/omc3/scripts/betabeatsrc_output_converter.html
index 300f00ec..6c5703d0 100644
--- a/_modules/omc3/scripts/betabeatsrc_output_converter.html
+++ b/_modules/omc3/scripts/betabeatsrc_output_converter.html
@@ -3,7 +3,7 @@
- omc3.scripts.betabeatsrc_output_converter — omc3 0.15.1 documentation
+ omc3.scripts.betabeatsrc_output_converter — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/scripts/fake_measurement_from_model.html b/_modules/omc3/scripts/fake_measurement_from_model.html
index f28d5ef3..acf0d9b2 100644
--- a/_modules/omc3/scripts/fake_measurement_from_model.html
+++ b/_modules/omc3/scripts/fake_measurement_from_model.html
@@ -3,7 +3,7 @@
- omc3.scripts.fake_measurement_from_model — omc3 0.15.1 documentation
+ omc3.scripts.fake_measurement_from_model — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/scripts/linfile_clean.html b/_modules/omc3/scripts/linfile_clean.html
index 16064703..44be8245 100644
--- a/_modules/omc3/scripts/linfile_clean.html
+++ b/_modules/omc3/scripts/linfile_clean.html
@@ -3,7 +3,7 @@
- omc3.scripts.linfile_clean — omc3 0.15.1 documentation
+ omc3.scripts.linfile_clean — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/scripts/merge_kmod_results.html b/_modules/omc3/scripts/merge_kmod_results.html
index 25c048d9..aba3df53 100644
--- a/_modules/omc3/scripts/merge_kmod_results.html
+++ b/_modules/omc3/scripts/merge_kmod_results.html
@@ -3,7 +3,7 @@
- omc3.scripts.merge_kmod_results — omc3 0.15.1 documentation
+ omc3.scripts.merge_kmod_results — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/tbt_converter.html b/_modules/omc3/tbt_converter.html
index 9cfeca1d..7a308d9a 100644
--- a/_modules/omc3/tbt_converter.html
+++ b/_modules/omc3/tbt_converter.html
@@ -3,7 +3,7 @@
- omc3.tbt_converter — omc3 0.15.1 documentation
+ omc3.tbt_converter — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/tune_analysis/bbq_tools.html b/_modules/omc3/tune_analysis/bbq_tools.html
index bc1629a8..d284157c 100644
--- a/_modules/omc3/tune_analysis/bbq_tools.html
+++ b/_modules/omc3/tune_analysis/bbq_tools.html
@@ -3,7 +3,7 @@
- omc3.tune_analysis.bbq_tools — omc3 0.15.1 documentation
+ omc3.tune_analysis.bbq_tools — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/tune_analysis/constants.html b/_modules/omc3/tune_analysis/constants.html
index 836b06c4..148e1e4e 100644
--- a/_modules/omc3/tune_analysis/constants.html
+++ b/_modules/omc3/tune_analysis/constants.html
@@ -3,7 +3,7 @@
- omc3.tune_analysis.constants — omc3 0.15.1 documentation
+ omc3.tune_analysis.constants — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/tune_analysis/fitting_tools.html b/_modules/omc3/tune_analysis/fitting_tools.html
index 040d4939..a9bc99c5 100644
--- a/_modules/omc3/tune_analysis/fitting_tools.html
+++ b/_modules/omc3/tune_analysis/fitting_tools.html
@@ -3,7 +3,7 @@
- omc3.tune_analysis.fitting_tools — omc3 0.15.1 documentation
+ omc3.tune_analysis.fitting_tools — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/tune_analysis/kick_file_modifiers.html b/_modules/omc3/tune_analysis/kick_file_modifiers.html
index f147b7a2..77b9631c 100644
--- a/_modules/omc3/tune_analysis/kick_file_modifiers.html
+++ b/_modules/omc3/tune_analysis/kick_file_modifiers.html
@@ -3,7 +3,7 @@
- omc3.tune_analysis.kick_file_modifiers — omc3 0.15.1 documentation
+ omc3.tune_analysis.kick_file_modifiers — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/tune_analysis/timber_extract.html b/_modules/omc3/tune_analysis/timber_extract.html
index d6ff6875..19820c8f 100644
--- a/_modules/omc3/tune_analysis/timber_extract.html
+++ b/_modules/omc3/tune_analysis/timber_extract.html
@@ -3,7 +3,7 @@
- omc3.tune_analysis.timber_extract — omc3 0.15.1 documentation
+ omc3.tune_analysis.timber_extract — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/contexts.html b/_modules/omc3/utils/contexts.html
index bff6143b..818ef2fc 100644
--- a/_modules/omc3/utils/contexts.html
+++ b/_modules/omc3/utils/contexts.html
@@ -3,7 +3,7 @@
- omc3.utils.contexts — omc3 0.15.1 documentation
+ omc3.utils.contexts — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/iotools.html b/_modules/omc3/utils/iotools.html
index 9df61aff..bf50d69d 100644
--- a/_modules/omc3/utils/iotools.html
+++ b/_modules/omc3/utils/iotools.html
@@ -3,7 +3,7 @@
- omc3.utils.iotools — omc3 0.15.1 documentation
+ omc3.utils.iotools — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/logging_tools.html b/_modules/omc3/utils/logging_tools.html
index bc060868..abae8f46 100644
--- a/_modules/omc3/utils/logging_tools.html
+++ b/_modules/omc3/utils/logging_tools.html
@@ -3,7 +3,7 @@
- omc3.utils.logging_tools — omc3 0.15.1 documentation
+ omc3.utils.logging_tools — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/mock.html b/_modules/omc3/utils/mock.html
index 2e51a6c9..255fe04e 100644
--- a/_modules/omc3/utils/mock.html
+++ b/_modules/omc3/utils/mock.html
@@ -3,7 +3,7 @@
- omc3.utils.mock — omc3 0.15.1 documentation
+ omc3.utils.mock — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/outliers.html b/_modules/omc3/utils/outliers.html
index 7398b0cd..543fb7f6 100644
--- a/_modules/omc3/utils/outliers.html
+++ b/_modules/omc3/utils/outliers.html
@@ -3,7 +3,7 @@
- omc3.utils.outliers — omc3 0.15.1 documentation
+ omc3.utils.outliers — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/stats.html b/_modules/omc3/utils/stats.html
index e3b09359..cf264423 100644
--- a/_modules/omc3/utils/stats.html
+++ b/_modules/omc3/utils/stats.html
@@ -3,7 +3,7 @@
- omc3.utils.stats — omc3 0.15.1 documentation
+ omc3.utils.stats — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_modules/omc3/utils/time_tools.html b/_modules/omc3/utils/time_tools.html
index b0140c77..93a9224a 100644
--- a/_modules/omc3/utils/time_tools.html
+++ b/_modules/omc3/utils/time_tools.html
@@ -3,7 +3,7 @@
- omc3.utils.time_tools — omc3 0.15.1 documentation
+ omc3.utils.time_tools — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/_static/documentation_options.js b/_static/documentation_options.js
index 0e79c8c2..ebd21801 100644
--- a/_static/documentation_options.js
+++ b/_static/documentation_options.js
@@ -1,5 +1,5 @@
const DOCUMENTATION_OPTIONS = {
- VERSION: '0.15.1',
+ VERSION: '0.15.2',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
diff --git a/entrypoints/analysis.html b/entrypoints/analysis.html
index d5b421f5..432b715c 100644
--- a/entrypoints/analysis.html
+++ b/entrypoints/analysis.html
@@ -4,7 +4,7 @@
- Analysis — omc3 0.15.1 documentation
+ Analysis — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/entrypoints/correction.html b/entrypoints/correction.html
index 98a8d517..78b89fb5 100644
--- a/entrypoints/correction.html
+++ b/entrypoints/correction.html
@@ -4,7 +4,7 @@
- Correction — omc3 0.15.1 documentation
+ Correction — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/entrypoints/other.html b/entrypoints/other.html
index 0ffb3583..e9a352ca 100644
--- a/entrypoints/other.html
+++ b/entrypoints/other.html
@@ -4,7 +4,7 @@
- Other — omc3 0.15.1 documentation
+ Other — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/entrypoints/plotting.html b/entrypoints/plotting.html
index 174c8c05..592e1f79 100644
--- a/entrypoints/plotting.html
+++ b/entrypoints/plotting.html
@@ -4,7 +4,7 @@
- Plotting — omc3 0.15.1 documentation
+ Plotting — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/entrypoints/scripts.html b/entrypoints/scripts.html
index fa85cf3f..abfa26db 100644
--- a/entrypoints/scripts.html
+++ b/entrypoints/scripts.html
@@ -4,7 +4,7 @@
- Scripts — omc3 0.15.1 documentation
+ Scripts — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/environment.pickle b/environment.pickle
index 318c0408..0f9b278a 100644
Binary files a/environment.pickle and b/environment.pickle differ
diff --git a/genindex.html b/genindex.html
index e63369fa..ee3b449a 100644
--- a/genindex.html
+++ b/genindex.html
@@ -3,7 +3,7 @@
- Index — omc3 0.15.1 documentation
+ Index — omc3 0.15.2 documentation
@@ -15,7 +15,7 @@
-
+
diff --git a/index.html b/index.html
index ad77aab5..bf184a62 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
- Welcome to omc3’s documentation! — omc3 0.15.1 documentation
+ Welcome to omc3’s documentation! — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/correction.html b/modules/correction.html
index ec9d184c..b7edd54d 100644
--- a/modules/correction.html
+++ b/modules/correction.html
@@ -4,7 +4,7 @@
- Correction — omc3 0.15.1 documentation
+ Correction — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/definitions.html b/modules/definitions.html
index 3eb6b106..fe462ff8 100644
--- a/modules/definitions.html
+++ b/modules/definitions.html
@@ -4,7 +4,7 @@
- Definitions — omc3 0.15.1 documentation
+ Definitions — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/harpy.html b/modules/harpy.html
index 6b0af2a0..193f802d 100644
--- a/modules/harpy.html
+++ b/modules/harpy.html
@@ -4,7 +4,7 @@
- Harpy — omc3 0.15.1 documentation
+ Harpy — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/kmod.html b/modules/kmod.html
index 7412e8c5..20030d8b 100644
--- a/modules/kmod.html
+++ b/modules/kmod.html
@@ -4,7 +4,7 @@
- Kmod — omc3 0.15.1 documentation
+ Kmod — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/model.html b/modules/model.html
index 06cfe975..d8f9cb03 100644
--- a/modules/model.html
+++ b/modules/model.html
@@ -4,7 +4,7 @@
- Model — omc3 0.15.1 documentation
+ Model — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/optics_measurements.html b/modules/optics_measurements.html
index 40fca56b..cd251c8c 100644
--- a/modules/optics_measurements.html
+++ b/modules/optics_measurements.html
@@ -4,7 +4,7 @@
- Optics Measurements — omc3 0.15.1 documentation
+ Optics Measurements — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/plotting.html b/modules/plotting.html
index ec10d33c..8401b447 100644
--- a/modules/plotting.html
+++ b/modules/plotting.html
@@ -4,7 +4,7 @@
- Plot-Subfunctions — omc3 0.15.1 documentation
+ Plot-Subfunctions — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/tune_analysis.html b/modules/tune_analysis.html
index fcd65564..24df1ecc 100644
--- a/modules/tune_analysis.html
+++ b/modules/tune_analysis.html
@@ -4,7 +4,7 @@
- Tune Analysis — omc3 0.15.1 documentation
+ Tune Analysis — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/modules/utils.html b/modules/utils.html
index 4d6d2ebe..9964853e 100644
--- a/modules/utils.html
+++ b/modules/utils.html
@@ -4,7 +4,7 @@
- Utils — omc3 0.15.1 documentation
+ Utils — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+
diff --git a/search.html b/search.html
index bcdc0c5e..4f67f9bf 100644
--- a/search.html
+++ b/search.html
@@ -3,7 +3,7 @@
- Search — omc3 0.15.1 documentation
+ Search — omc3 0.15.2 documentation
@@ -16,7 +16,7 @@
-
+