- Refactored site specific stuff into a site module - PSI specific stuff is now in the PSI directory. - The old version has been tagged with pre-ansto
30 lines
828 B
C
30 lines
828 B
C
|
|
/*------------------------------------------------------------------------
|
|
N X A M O R
|
|
|
|
Some routines for writing NeXus files for the reflectometer AMOR at
|
|
SINQ.
|
|
|
|
copyright: see copyright.h
|
|
|
|
Mark Koennecke, September 1999
|
|
----------------------------------------------------------------------*/
|
|
#ifndef NXAMOR
|
|
#define NXAMOR
|
|
#include <scan.h>
|
|
#include <HistMem.h>
|
|
|
|
int WriteAmorHeader(char *file, SConnection *pCon);
|
|
|
|
int WriteAmorScan(char *file, SConnection *pCon, pScanData pScan);
|
|
|
|
int WriteAmorTOF(char *file, SConnection *pCon, pHistMem pHM);
|
|
|
|
int AmorStore(SConnection *pCon, SicsInterp *pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
int AmorStoreMake(SConnection *pCon, SicsInterp *pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
|
|
|
|
#endif
|