Skip to content
Snippets Groups Projects
Commit db90a36e authored by zwart's avatar zwart
Browse files

BugID: 719

Use the right key for SubbandsPerCell
parent c4dd3c6b
No related branches found
No related tags found
No related merge requests found
......@@ -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()");
......
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment