- Rearranged directory structure for forking out ANSTO

- 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
This commit is contained in:
cvs
2003-06-20 10:18:47 +00:00
commit 064ec37e9a
271 changed files with 115513 additions and 0 deletions

29
nxamor.h Normal file
View File

@@ -0,0 +1,29 @@
/*------------------------------------------------------------------------
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