Skip to content
Snippets Groups Projects
Commit f2ce3eec authored by John Romein's avatar John Romein
Browse files

BugID: 225

Bug fix.
parent 1bfc48eb
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ namespace LOFAR
ASSERT(nrInputChannels > 0);
uint nrPsetsPerStorage = itsParamSet.getUint32("OLAP.psetsPerStorage");
ASSERT(nrSubbands % nrSubbandsPerCell == 0);
ASSERT(nrSubbandsPerCell % nrPsetsPerStorage == 0);
ASSERT(nrSubbands / nrSubbandsPerCell % nrPsetsPerStorage == 0);
// We must derive how many WH_SubbandWriter objects we have to
// create. Each WH_SubbandWriter will write up to \a nrSubbandsPerCell
......
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