diff --git a/Appl/CEP/CS1/CS1_InputSection/src/AH_InputSection.cc b/Appl/CEP/CS1/CS1_InputSection/src/AH_InputSection.cc
index 9312113f521e51097f0f213ee69ad2e817a6d747..d71d452e63c1f841f7a92a9b6f7f61adeee66b69 100644
--- a/Appl/CEP/CS1/CS1_InputSection/src/AH_InputSection.cc
+++ b/Appl/CEP/CS1/CS1_InputSection/src/AH_InputSection.cc
@@ -108,7 +108,7 @@ namespace LOFAR {
 	comp.addBlock(RSPSteps[r]);
     
 	// Connect the Delay Controller
-	itsInputStub->connect(r, (RSPSteps.back())->getInDataManager(0), 0);
+	//itsInputStub->connect(r, (RSPSteps.back())->getInDataManager(0), 0);
       }
   
       LOG_TRACE_FLOW_STR("Create output side interface stubs");
@@ -131,15 +131,15 @@ namespace LOFAR {
 	  }
 	}
 	// connect outputs to FIR stub
+#if 0
 	for (int core = 0; core < nNodesPerCell; core++) {
-#if 1
 	  //collectSteps.back()->getOutDataManager(0).setOutBuffer(core, false, 10);
 	  itsOutputStub->connect(cell,
 				 core,
 				 (collectSteps.back())->getOutDataManager(0), 
 				 core);
-#endif
 	}
+#endif
       }
       LOG_TRACE_FLOW_STR("Finished define()");
 
diff --git a/Appl/CEP/CS1/CS1_InputSection/src/WH_RSPInput.cc b/Appl/CEP/CS1/CS1_InputSection/src/WH_RSPInput.cc
index 34577c6816a488d77ea859b0d924a8273e4ddacc..a90955f9df2907e722b56d2f17c598792e1616a4 100644
--- a/Appl/CEP/CS1/CS1_InputSection/src/WH_RSPInput.cc
+++ b/Appl/CEP/CS1/CS1_InputSection/src/WH_RSPInput.cc
@@ -44,7 +44,7 @@ namespace LOFAR {
 			     ACC::APS::ParameterSet& ps,
 			     TransportHolder& th)
       : WorkHolder (1, 
-		    ps.getInt32("Observation.NSubbands") * ps.getInt32("Observation.NStations") / (ps.getInt32("Input.NRSPBoards") * ps.getInt32("General.NSubbandsPerCell")), 
+		    ps.getInt32("Observation.NSubbands") * ps.getInt32("Observation.NStations") / (ps.getInt32("Input.NRSPBoards") * ps.getInt32("General.SubbandsPerCell")), 
 		    name, 
 		    "WH_RSPInput"),
 	itsTH(th),