/*****************************************************************************
   Major portions of this software are copyrighted by the Medical College
   of Wisconsin, 1994-2000, and are released under the Gnu General Public
   License, Version 2.  See the file README.Copyright for details.
******************************************************************************/
   
#ifndef _AFNI_EPI_HEADER_
#define _AFNI_EPI_HEADER_

/*****************************  AFNI STUFF *************************************/
#include "iochan.h"                     /* I/O to other processes              */

#define AFNI_CONTROL_PORT  7954         /* always send control data to AFNI    */
#define AFNI_TCP_PORT      7953         /* maybe send image data to AFNI       */

#define AFNI_OPEN_CONTROL_MODE   1      /* 1st time thru: open control channel */
#define AFNI_WAIT_CONTROL_MODE   2      /* waiting for AFNI to open control    */
#define AFNI_OPEN_DATA_MODE      3      /* now can open data channel to AFNI   */
#define AFNI_CATCHUP_MODE        4      /* waiting for AFNI to open data       */
#define AFNI_CONTINUE_MODE       5      /* at last! data channel is ready!     */

/*-- global control variables --*/

#ifdef MAIN
  int      AFNI_mode        = 0 ;    /* if > 0, then means AFNI is active  */
  int      AFNI_use_tcp     = 0 ;    /* if > 0, use TCP/IP to send images */
  char     AFNI_host[128]   = "\0" ; /* hostname of CPU AFNI is on       */
  char     AFNI_iochan[128] = "\0" ; /* I/O channel name to AFNI        */
  IOCHAN * AFNI_ioc         = NULL ; /* ptr to I/O channel itself      */
  int      AFNI_atexit_setup= 0    ; /* is AFNI_exit setup yet?       */
  char     AFNI_buf[1024]          ; /* temporary space              */
  int      AFNI_verbose     = 0    ; /* debugging mode              */

  char     AFNI_infocom[256]= "3T_toafni" ;  /* command for AFNI  */
#else
  extern int      AFNI_mode ;
  extern int      AFNI_use_tcp ;
  extern char     AFNI_host[] ;
  extern char     AFNI_iochan[] ;
  extern IOCHAN * AFNI_ioc ;
  extern char     AFNI_buf[] ;
  extern int      AFNI_atexit_setup ;
  extern char     AFNI_infocom[] ;
  extern int      AFNI_verbose ;
#endif
/*******************************************************************************/

/*-- prototypes --*/

extern void AFNI_start_io(int) ;
extern void AFNI_send_image(int) ;
extern void AFNI_exit(void) ;

/*-- help string --*/

#ifdef MAIN
#define AFNI_HELP_STRING                                                       \
    "\n    -afni host       - Send reconstructed images to AFNI running"       \
    "\n                        CPU 'host'.  If 'host' = '%%' or '.', then"     \
    "\n                        the local CPU and shared memory will be used"   \
    "\n                        to transfer data; otherwise, TCP/IP sockets"    \
    "\n                        will be used.  N.B.: You must start AFNI with"  \
    "\n                        the command 'afni -rt' for this to work."       \
    "\n    -verbose          - turn on AFNI debugging messages"
#endif

/*-- how to execute a command on another system --*/

#ifdef HP
# define RSH "remsh"
#else
# define RSH "rsh"
#endif

/*=============================================================================*/
#endif /* _AFNI_EPI_HEADER_ */


syntax highlighted by Code2HTML, v. 0.9.1