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

BugID: 225

Bug fix: do not throw away the first block of data
parent ee31f04a
No related branches found
No related tags found
No related merge requests found
...@@ -255,11 +255,8 @@ namespace LOFAR ...@@ -255,11 +255,8 @@ namespace LOFAR
// Select the next input // Select the next input
int inHolderNr = getDataManager().getInputSelector()->getCurrentSelection(); int inHolderNr = getDataManager().getInputSelector()->getCurrentSelection();
//cerr<<"Current selection "<<inHolderNr<<endl; //cerr<<"Current selection "<<inHolderNr<<endl;
getDataManager().getInHolder(inHolderNr);
getDataManager().readyWithInHolder(inHolderNr);
DH_Visibilities* inputDH = (DH_Visibilities*)getDataManager().getInHolder(inHolderNr); DH_Visibilities* inputDH = (DH_Visibilities*)getDataManager().getInHolder(inHolderNr);
//Dump input //Dump input
// Write 1 DH_Visibilities of size // Write 1 DH_Visibilities of size
...@@ -311,6 +308,7 @@ namespace LOFAR ...@@ -311,6 +308,7 @@ namespace LOFAR
} }
cout <<sb<<" from inputholder "<<getDataManager().getInputSelector()->getCurrentSelection()<<endl; cout <<sb<<" from inputholder "<<getDataManager().getInputSelector()->getCurrentSelection()<<endl;
#endif #endif
getDataManager().readyWithInHolder(inHolderNr);
getDataManager().getInputSelector()->selectNext(); getDataManager().getInputSelector()->selectNext();
} }
......
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