Start implementing new way to build command line arguments and defaults based on options classes directly

This commit is contained in:
2025-08-27 17:19:40 +02:00
parent b6e3cb2eef
commit 7f01f89f2b
7 changed files with 321 additions and 211 deletions

View File

@@ -35,6 +35,7 @@ class FullAmorTest(TestCase):
def test_time_slicing(self):
experiment_config = options.ExperimentConfig(
chopperSpeed=options.Defaults.chopperSpeed,
chopperPhase=-13.5,
chopperPhaseOffset=-5,
monitorType=options.Defaults.monitorType,
@@ -75,6 +76,7 @@ class FullAmorTest(TestCase):
def test_noslicing(self):
experiment_config = options.ExperimentConfig(
chopperSpeed=options.Defaults.chopperSpeed,
chopperPhase=-13.5,
chopperPhaseOffset=-5,
monitorType=options.Defaults.monitorType,