Skip to content
Snippets Groups Projects
Commit 77e2a355 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: invert has_ecal_barrel_scfi logic

parent 7b56d702
No related branches found
No related tags found
1 merge request!295fix: invert has_ecal_barrel_scfi logic
...@@ -17,11 +17,11 @@ detector_path = str(os.environ.get("DETECTOR_PATH", ".")) ...@@ -17,11 +17,11 @@ detector_path = str(os.environ.get("DETECTOR_PATH", "."))
compact_path = os.path.join(detector_path, detector_config) compact_path = os.path.join(detector_path, detector_config)
# Detector features that affect reconstruction # Detector features that affect reconstruction
has_ecal_barrel_scfi = False has_ecal_barrel_scfi = True
if 'epic' in detector_name and 'imaging' in detector_config: if "epic" in detector_name and "sciglass" in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
if 'epic' in detector_name and 'brycecanyon' in detector_config: if 'epic' in detector_name and 'arches' in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
# input arguments from calibration file # input arguments from calibration file
with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f: with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f:
......
...@@ -21,11 +21,11 @@ compact_path = str( ...@@ -21,11 +21,11 @@ compact_path = str(
) )
# Detector features that affect reconstruction # Detector features that affect reconstruction
has_ecal_barrel_scfi = False has_ecal_barrel_scfi = True
if "epic" in detector_name and "imaging" in detector_config: if "epic" in detector_name and "sciglass" in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
if 'epic' in detector_name and 'brycecanyon' in detector_config: if 'epic' in detector_name and 'arches' in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
# input and output # input and output
input_sims = [ input_sims = [
......
...@@ -22,11 +22,11 @@ detector_version = str(os.environ.get("DETECTOR_VERSION", "main")) ...@@ -22,11 +22,11 @@ detector_version = str(os.environ.get("DETECTOR_VERSION", "main"))
detector_path = str(os.environ.get("DETECTOR_PATH", ".")) detector_path = str(os.environ.get("DETECTOR_PATH", "."))
# Detector features that affect reconstruction # Detector features that affect reconstruction
has_ecal_barrel_scfi = False has_ecal_barrel_scfi = True
if 'epic' in detector_name and 'imaging' in detector_config: if "epic" in detector_name and "sciglass" in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
if 'epic' in detector_name and 'brycecanyon' in detector_config: if 'epic' in detector_name and 'arches' in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
# input arguments from calibration file # input arguments from calibration file
with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f: with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f:
......
...@@ -19,11 +19,11 @@ detector_version = str(os.environ.get("DETECTOR_VERSION", "main")) ...@@ -19,11 +19,11 @@ detector_version = str(os.environ.get("DETECTOR_VERSION", "main"))
detector_path = str(os.environ.get("DETECTOR_PATH", ".")) detector_path = str(os.environ.get("DETECTOR_PATH", "."))
# Detector features that affect reconstruction # Detector features that affect reconstruction
has_ecal_barrel_scfi = False has_ecal_barrel_scfi = True
if 'epic' in detector_name and 'imaging' in detector_config: if "epic" in detector_name and "sciglass" in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
if 'epic' in detector_name and 'brycecanyon' in detector_config: if 'epic' in detector_name and 'arches' in detector_config:
has_ecal_barrel_scfi = True has_ecal_barrel_scfi = False
# input arguments from calibration file # input arguments from calibration file
with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f: with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment