- Fixed a few problems with hklscan

- Added transfer of zipped data to conman.c, histogram memory software
  in order to support the TRICS status display.
- Upgraded TRICS data file writing.
- First installment of triple axis spectrometer support: initialization of
  data structures and an implementation of the MAD dr(ive) command.
This commit is contained in:
cvs
2000-11-21 08:16:46 +00:00
parent f9a31d2065
commit e83d3e6946
39 changed files with 5301 additions and 563 deletions

View File

@@ -269,6 +269,7 @@ extern int close(int fp);
Req_buff.cmnd = htonl (SQHM_CONFIG);
Req_buff.u.cnfg.mode = htonl (iMode);
Req_buff.u.cnfg.u.hm_dig.n_hists = htonl (iRank);
printf("%d\n", ntohl(Req_buff.u.cnfg.u.hm_dig.n_hists));
Req_buff.u.cnfg.u.hm_dig.lo_bin = htonl (iLowBin);
Req_buff.u.cnfg.u.hm_dig.num_bins = htonl (iLength);
Req_buff.u.cnfg.u.hm_dig.bytes_per_bin = htonl (iBinWidth);
@@ -465,7 +466,7 @@ extern int close(int fp);
/* fill in the request data structure */
Req_buff.bigend = htonl (0x12345678);
Req_buff.cmnd = htonl (SQHM_DBG);
Req_buff.u.dbg.level = htonl(iLevel);
Req_buff.u.dbg.mask = htonl(iLevel);
/* try, get a connection to master server */
status = OpenMasterConnection(self);