some more

This commit is contained in:
Dhanya Maliakal
2015-10-13 15:22:30 +02:00
parent e915245c10
commit 5ac37c2154
6 changed files with 1241 additions and 1417 deletions

View File

@ -439,10 +439,10 @@ class UDPInterface {
* Get the buffer-current frame read by receiver
* @param c pointer to current file name
* @param raw address of pointer, pointing to current frame to send to gui
* @param startAcquisitionIndex start index of the acquisition
* @param startFrameIndex start index of the scan
* @param startAcq start index of the acquisition
* @param startFrame start index of the scan
*/
virtual void readFrame(char* c,char** raw, uint64_t &startAcquisitionIndex, uint64_t &startFrameIndex)=0;
virtual void readFrame(char* c,char** raw, uint64_t &startAcq, uint64_t &startFrame)=0;
/**
* abort acquisition with minimum damage: close open files, cleanup.
@ -451,8 +451,8 @@ class UDPInterface {
virtual void abort() = 0; //FIXME: needed, isnt stopReceiver enough?
/**
* Closes all files
* @param i thread index, -1 for all threads
* Closes file / all files(if multiple files)
* @param i thread index (if multiple files used eg. root files) -1 for all threads
*/
virtual void closeFile(int i = -1) = 0;