home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume24 / chemtab / part02 / tune.h < prev    next >
Text File  |  1991-03-12  |  3KB  |  69 lines

  1. /*
  2.  * chemtab - a periodic table data base 1990 Jim King (pulsar@lsrhs)
  3.  *
  4.  * tune.h    Site Specifics
  5.  */
  6.  
  7. /***********
  8.  *********** DEFINES which MUST be defined.
  9.  ***********/
  10.  
  11. /* PERTABLE is the path up to and including the list of elements, elist */
  12. #define PERTABLE    "/usr/local/lib/chemtab/elist"
  13.  
  14. /* BINTABLE is the binary form (faster to read in) of PERTABLE */
  15. #define BINTABLE    "/usr/local/lib/chemtab/binlist"
  16.  
  17. /* TABLE is the path up to and including the periodic table outline, pertab */
  18. /* NOTE: the names of the file pertab and pertab_graphic should not be changed.
  19.          if you want to change the name change then to name and name_graphic */
  20.  
  21. #define TABLE        "/usr/local/lib/chemtab/pertab"
  22.  
  23. /* HELPFILE is the path up to and including the online helpfile */
  24. #define HELPFILE    "/usr/local/lib/chemtab/online_help"
  25.  
  26. /* CLOSEFILE is the filename which contains the close values, meaning if
  27.          someone searches for a value 'close to' something, this is the
  28.          defined good range to look for. */
  29. #define CLOSEFILE    "/usr/local/lib/chemtab/closevalues"
  30.  
  31. /* Now go to scrmisc.c and change the 'SPACING' define.  It is required. */
  32.  
  33. /**********
  34.  ********** DEFINES which are conditional on IF they are defined.
  35.  **********/
  36.  
  37. /* If you have a digital LN03 compatible laser printer, define this and
  38.    you will be able to print copies of your ReGIS graphs! */
  39. #define LASERPRT
  40.  
  41. /* USERSHELL is the command to run if a person tries to stop the program
  42.    with a ^Z if you do NOT want the program to stop, comment this out */
  43. /* Obviously, this was not written on a SYSV system..  If you have SYSV
  44.    it is advised you comment this out */
  45. #define USERSHELL    "/bin/csh"
  46.  
  47. /* PRINTER is the printer program or shell script you use to print on
  48.    the desired printer for Chemtab output.  Preferably, when using lpr,
  49.    you want to add the '-h' function to skip the header page. */
  50. /* If you do NOT want to program to print anything out at the end of the
  51.    transcript section, do NOT define this.  If it is defined, the printouts
  52.    will automagically be printed with this command */
  53. /* With PRINTER, an optional define is PRINTQ.  If you have multiple
  54.    printers or print queues, the program will prompt you for one to print
  55.    to.  Make sure if a space is necessary to use it.. i.e.:
  56.  
  57.    #define PRINTER    "lpr h -P"
  58.    #define PRINTQ
  59.  
  60.    #define PRINTER    "prvms -q "
  61.    #define PRINTQ            note you need a space */
  62. /* ------------------------------------------------------------- */
  63. #define PRINTER        "prvms -q "
  64. #define    PRINTQ
  65.  
  66. /* TRANSCRIPT is the path to the logfile which lists who uses the program.
  67.               if it is not defined, then no log is made. */
  68. #define TRANSCRIPT    "logfile"
  69.