From c05f2eb450e97967ae6a6d216f4f41602d64c039 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Mon, 1 Aug 2022 01:59:34 +0000 Subject: [PATCH] fix: cache calibrations in DETECTOR_PATH --- containers/jug/setup_detectors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/jug/setup_detectors.py b/containers/jug/setup_detectors.py index efc931b5b..0b15f084c 100755 --- a/containers/jug/setup_detectors.py +++ b/containers/jug/setup_detectors.py @@ -152,12 +152,12 @@ if __name__ == '__main__': file=f) ## run once inside global prefix to initialize artifacts in /opt/detectors os.environ['DETECTOR_PATH'] = args.prefix - cmd = f'bash -c \'cd {args.prefix} && source {prefix}/setup.sh && npdet_info print world_z {prefix}/share/{det}/{det}.xml\'' + cmd = f'bash -c \'cd {args.prefix} && source {prefix}/setup.sh && checkGeometry -c {prefix}/share/{det}/{det}.xml\'' print(cmd) os.system(cmd) ## run once inside specific prefix to initialize artifacts in $DETECTOR_PATH os.environ['DETECTOR_PATH'] = args.prefix - cmd = f'bash -c \'cd {prefix} && source {prefix}/setup.sh && npdet_info print world_z {prefix}/share/{det}/{det}.xml\'' + cmd = f'bash -c \'cd {prefix}/share/{det} && source {prefix}/setup.sh && checkGeometry -c {prefix}/share/{det}/{det}.xml\'' print(cmd) os.system(cmd) -- GitLab