- Switched to NAPI-3.0 with XML support
- Fixed exeman to write files by default into the first directory in batchpath - Fixed a bug in nxdict which prevented it from handling attributes containing :/ properly - Removed junk files - Fixed a bug in hklscan.c which made it dump core - Added XML support to nxscript.c - Added support for writing NeXus-XML data files to tasub
This commit is contained in:
3
scan.c
3
scan.c
@ -94,6 +94,7 @@ static void ConfigureScanDict(pStringDict dict)
|
||||
StringDictAddPair(dict,"collect","stdscan collect");
|
||||
StringDictAddPair(dict,"writepoint","stdscan writepoint");
|
||||
StringDictAddPair(dict,"userdata","unknown");
|
||||
StringDictAddPair(dict,"finish","stdscan finish");
|
||||
}
|
||||
/*--------------------------------------------------------------------------*/
|
||||
pScanData CreateScanObject(char *pRecover, char *pHeader,pCounter pCount,
|
||||
@ -670,6 +671,7 @@ CountEntry CollectCounterData(pScanData self)
|
||||
|
||||
self->iActive = 1;
|
||||
iRet = ScanLoop(self);
|
||||
ScriptScanFinish(self);
|
||||
InvokeCallBack(self->pCall,SCANEND,self);
|
||||
SendQuieck(QUIECK,self->pFile);
|
||||
self->iActive = 0;
|
||||
@ -834,6 +836,7 @@ CountEntry CollectCounterData(pScanData self)
|
||||
|
||||
self->iActive = 1;
|
||||
iRet = ScanLoop(self);
|
||||
ScriptScanFinish(self);
|
||||
InvokeCallBack(self->pCall,SCANEND,self);
|
||||
SendQuieck(QUIECK,self->pFile);
|
||||
self->iActive = 0;
|
||||
|
Reference in New Issue
Block a user