diff --git a/benchmarks/clustering/options/full_cal_reco.py b/benchmarks/clustering/options/full_cal_reco.py
index daf4eb503fa9769efdb78e90c32efc5c4bae4030..8be58592639ad3fe0987b503f042c7df07e014e6 100644
--- a/benchmarks/clustering/options/full_cal_reco.py
+++ b/benchmarks/clustering/options/full_cal_reco.py
@@ -17,11 +17,11 @@ detector_path = str(os.environ.get("DETECTOR_PATH", "."))
 compact_path = os.path.join(detector_path, detector_config)
 
 # Detector features that affect reconstruction
-has_ecal_barrel_scfi = False
-if 'epic' in detector_name and 'imaging' in detector_config:
-    has_ecal_barrel_scfi = True
-if 'epic' in detector_name and 'brycecanyon' in detector_config:
-    has_ecal_barrel_scfi = True
+has_ecal_barrel_scfi = True 
+if "epic" in detector_name and "sciglass" in detector_config:
+    has_ecal_barrel_scfi = False
+if 'epic' in detector_name and 'arches' in detector_config:
+    has_ecal_barrel_scfi = False
 
 # input arguments from calibration file
 with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f:
diff --git a/benchmarks/ecal/options/barrel.py b/benchmarks/ecal/options/barrel.py
index 6bfe72fc96091af1f816c93770b1008d3ef433fa..d6761f0902f52cf92f341e1715ef3efbe6f597eb 100644
--- a/benchmarks/ecal/options/barrel.py
+++ b/benchmarks/ecal/options/barrel.py
@@ -21,11 +21,11 @@ compact_path = str(
 )
 
 # Detector features that affect reconstruction
-has_ecal_barrel_scfi = False
-if "epic" in detector_name and "imaging" in detector_config:
-    has_ecal_barrel_scfi = True
-if 'epic' in detector_name and 'brycecanyon' in detector_config:
-    has_ecal_barrel_scfi = True
+has_ecal_barrel_scfi = True
+if "epic" in detector_name and "sciglass" in detector_config:
+    has_ecal_barrel_scfi = False
+if 'epic' in detector_name and 'arches' in detector_config:
+    has_ecal_barrel_scfi = False
 
 # input and output
 input_sims = [
diff --git a/benchmarks/imaging_ecal/options/hybrid_cluster.py b/benchmarks/imaging_ecal/options/hybrid_cluster.py
index a457fe69891275964e13046a532f15472f9c2441..dcb348d82bfe3b0a3127a13572cccfd3b6b50c47 100644
--- a/benchmarks/imaging_ecal/options/hybrid_cluster.py
+++ b/benchmarks/imaging_ecal/options/hybrid_cluster.py
@@ -22,11 +22,11 @@ detector_version = str(os.environ.get("DETECTOR_VERSION", "main"))
 detector_path = str(os.environ.get("DETECTOR_PATH", "."))
 
 # Detector features that affect reconstruction
-has_ecal_barrel_scfi = False
-if 'epic' in detector_name and 'imaging' in detector_config:
-    has_ecal_barrel_scfi = True
-if 'epic' in detector_name and 'brycecanyon' in detector_config:
-    has_ecal_barrel_scfi = True
+has_ecal_barrel_scfi = True 
+if "epic" in detector_name and "sciglass" in detector_config:
+    has_ecal_barrel_scfi = False
+if 'epic' in detector_name and 'arches' in detector_config:
+    has_ecal_barrel_scfi = False
 
 # input arguments from calibration file
 with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f:
diff --git a/benchmarks/imaging_ecal/options/scfi_cluster.py b/benchmarks/imaging_ecal/options/scfi_cluster.py
index a06d043e7d6a479069e194c935774d5492e19caa..8c7ede00117ccb61ce04d5854fc4d688813a4aeb 100644
--- a/benchmarks/imaging_ecal/options/scfi_cluster.py
+++ b/benchmarks/imaging_ecal/options/scfi_cluster.py
@@ -19,11 +19,11 @@ detector_version = str(os.environ.get("DETECTOR_VERSION", "main"))
 detector_path = str(os.environ.get("DETECTOR_PATH", "."))
 
 # Detector features that affect reconstruction
-has_ecal_barrel_scfi = False
-if 'epic' in detector_name and 'imaging' in detector_config:
-    has_ecal_barrel_scfi = True
-if 'epic' in detector_name and 'brycecanyon' in detector_config:
-    has_ecal_barrel_scfi = True
+has_ecal_barrel_scfi = True 
+if "epic" in detector_name and "sciglass" in detector_config:
+    has_ecal_barrel_scfi = False
+if 'epic' in detector_name and 'arches' in detector_config:
+    has_ecal_barrel_scfi = False
 
 # input arguments from calibration file
 with open(f'{detector_path}/calibrations/emcal_barrel_calibration.json') as f: