- Fixes to hkl code
- Fixes to make RITA work - tasub extended to calculate UB from cell alone, support for elastic mode - New MultiCounter as abstraction for counting on HM's - regression test driver for counters
This commit is contained in:
19
multicounter.h
Normal file
19
multicounter.h
Normal file
@ -0,0 +1,19 @@
|
||||
/**
|
||||
* The MultiCounter is another counter which coordinates multiple
|
||||
* counting objects, counters and histogram memories. It also calls a
|
||||
* script function after TransferData which collects counters and monitors.
|
||||
* The purpose is to have a flexible counter abstraction for upper level
|
||||
* code such as maximizers and scan functions. The script can deal with
|
||||
* counting on monitors or on sums of histogram memories.
|
||||
*
|
||||
* copyright: see file COPYRIGHT
|
||||
*
|
||||
* Mark Koennecke, September 2006
|
||||
*/
|
||||
#ifndef MULTICOUNTER_H_
|
||||
#define MULTICOUNTER_H_
|
||||
#include <sics.h>
|
||||
|
||||
int MakeMultiCounter(SConnection *pCon, SicsInterp *pSics,
|
||||
void *pData, int argc, char *argv[]);
|
||||
#endif /*MULTICOUNTER_H_*/
|
Reference in New Issue
Block a user