diff --git a/Control/CalypsoExample/ClusterReadExample/python/ClusterReadExampleConfig.py b/Control/CalypsoExample/ClusterReadExample/python/ClusterReadExampleConfig.py
index a8d2ea3905509f8ec3d045a138cfce8879c3b6d2..3ad490882dfd029eb61f8011b21fa7eccb177e22 100644
--- a/Control/CalypsoExample/ClusterReadExample/python/ClusterReadExampleConfig.py
+++ b/Control/CalypsoExample/ClusterReadExample/python/ClusterReadExampleConfig.py
@@ -6,15 +6,15 @@ from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
 from AthenaConfiguration.ComponentFactory import CompFactory
 
 def ClusterReadExampleCfg(flags, **kwargs):
-    """Return ComponentAccumulator for Tracker ClusterReadAlg"""
+    """Return ComponentAccumulator for ClusterReadAlg"""
     acc = ComponentAccumulator()
     # clusterTool = acc.popToolsAndMerge(FaserSCT_ClusterizationToolCfg(flags))
     # kwargs.setdefault("SCT_ClusteringTool", clusterTool)
     # kwargs.setdefault("DataObjectName", "SCT_RDOs")
-    kwargs.setdefault("ClustersName", "SCT_ClusterContainer")
+    #kwargs.setdefault("ClustersName", "SCT_ClusterContainer")
     # kwargs.setdefault("SCT_FlaggedCondData", "SCT_Flags")
-    Tracker__ClusterReadAlg=CompFactory.Tracker.ClusterReadAlg
-    acc.addEventAlgo(Tracker__ClusterReadAlg(**kwargs))
+    TEST_ClusterReadAlg=CompFactory.ClusterReadAlg
+    acc.addEventAlgo(TEST_ClusterReadAlg(**kwargs))
     
     thistSvc = CompFactory.THistSvc()
     thistSvc.Output += ["HIST DATAFILE='ClusterReadHistograms.root' OPT='RECREATE'"]
diff --git a/Control/CalypsoExample/ClusterReadExample/src/ClusterReadAlg.cxx b/Control/CalypsoExample/ClusterReadExample/src/ClusterReadAlg.cxx
index 41f799cc7b113d44b2bd55f2598e3bf8f11a6471..a311ea9667aee22f4081ab5d1a1aa24fcd8f4b9e 100644
--- a/Control/CalypsoExample/ClusterReadExample/src/ClusterReadAlg.cxx
+++ b/Control/CalypsoExample/ClusterReadExample/src/ClusterReadAlg.cxx
@@ -80,8 +80,8 @@ StatusCode ClusterReadAlg::execute(const EventContext& ctx) const
   SG::WriteHandle trackContainer{m_trackCollection, ctx};
   std::unique_ptr<TrackCollection> outputTracks = std::make_unique<TrackCollection>();
 
-  SG::ReadHandle<xAOD::FaserTriggerData> triggerContainer{m_faserTriggerDataKey, ctx};
-  ATH_CHECK(triggerContainer.isValid());
+  //SG::ReadHandle<xAOD::FaserTriggerData> triggerContainer{m_faserTriggerDataKey, ctx};
+  //ATH_CHECK(triggerContainer.isValid());
 
   
   ++m_numberOfTriggeredEvents;