Changeset 25


Ignore:
Timestamp:
06/26/10 16:41:41 (2 years ago)
Author:
tabel
Message:

Virtual machine works again. Help menu points to documentation. Other small changes.

Location:
trunk
Files:
2 added
1 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/TOOLS/AMRslice.pro

    r23 r25  
    10271027    'HELP': BEGIN 
    10281028        If Verbose Then Print, 'Event for HELP' 
    1029         print, 'Sorry no HELP available yet ...' 
    1030         print, 'check out, the README, WHATS_NEW, and TODO files' 
     1029;        online_help, 
     1030;        BOOK='http://jacques.enzotools.org/doc/Jacques/Jacques.html' 
     1031        spawn, ' open http://jacques.enzotools.org/doc/Jacques/Jacques.html' 
     1032        print, 'go to: http://jacques.enzotools.org/doc/Jacques/Jacques.html' 
     1033        print, 'for help and check out, the README, WHATS_NEW, and TODO files' 
    10311034        print, 'in the distribution for more information.' 
    10321035    END 
    10331036    'About': BEGIN 
    10341037        dum = STRARR(5) 
    1035         dum(0) =  "Jaques is enzo's best friend" 
     1038        dum(0) =  "Jacques is enzo's best friend" 
    10361039        dum(1) =  "Author: Tom Abel        1998-" 
    1037         dum(2) =  "Jaques is distributed in the hope it is helpful...." 
     1040        dum(2) =  "Jacques is distributed in the hope it is helpful...." 
    10381041        dum(3) =  "For scientific app's I ask for an Acknowledgement" 
    10391042        dum(4) =  "send bug reports to tabel@stanford.edu" 
  • trunk/TOOLS/construct_interpolated_slice_data.pro

    r24 r25  
    276276     id = i_r[0]-i_l[0]+1 
    277277     jd = i_r[1]-i_l[1]+1 
     278     if id lt 0 or jd lt 0 then begin 
     279        print, 'construct_interpolated_slcie_data: does this data have at least 2 dimensions?' 
     280        return, slice_data 
     281     endif 
     282 
    278283     xy_st = array_indices([id,jd], LINDGEN(LONG(id)*jd), /DIMENSIONS) 
    279284 
  • trunk/TOOLS/jacques.pro

    r1 r25  
    33; simple calling routine to allow to be called with 
    44; the IDL virtual machine with the command line: 
    5 ;   idl -vm=TOOLS/SAV/jacques.sav 
    6  
     5;   idl -vm=jacques.sav 
     6!path += EXPAND_PATH('.') 
     7on_error, 1 
    78@common_blocks.inc 
    89DEVICE, decomposed=0 
  • trunk/TOOLS/pre_compile.com

    r1 r25  
    11;Load FIRST tools. 
    2 !path=!path+':'+ GETENV('FIRST')+'/TOOLS/:' + './TOOLS/' 
     2;!path=!path+':'+ GETENV('FIRST')+'/TOOLS/:' + './TOOLS/' 
     3cd, '.', current=wd 
     4!path += ':'+wd+'/TOOLS/:'+wd+'/scripts/:'+wd+'/project_with_absorption/krumholz/:'+wd+'/project_with_absorption/' 
    35;FORWARD_FUNCTION TRNLOG 
    46ITRESOLVE 
     
    911; comment out the following line to produce smaller binary file 
    1012RESOLVE_ALL, class=['oj', 'orb', 'IDLGRCOLORBAR'], skip_routines=['TRNLOG','DELLOG', 'SETLOG'] 
    11 SAVE, /ROUTINES,FILENAME='./TOOLS/SAV/jacques.sav' 
     13SAVE, /ROUTINES,FILENAME='./jacques.sav' 
    1214EXIT 
  • trunk/TOOLS/projection_with_absorption/krumholz/read_moltab.pro

    r15 r25  
    33; block to be used my MoleculeThinEmission later on 
    44common molecular_data, moldata 
    5 file = 'TOOLS/projection_with_absorption/krumholz/moltab.txt' 
     5cd, '.', current=wd 
     6file = wd+'/TOOLS/projection_with_absorption/krumholz/moltab.txt' 
    67moldata = fltarr(4,501) 
    78openr, 1, file 
  • trunk/TOOLS/tools.com

    r21 r25  
    33 
    44.run ./TOOLS/tex2idl 
     5.run ./TOOLS/where_is_in 
    56.run ./TOOLS/print_for_xmgr 
    67.run ./TOOLS/kroupa_imf_shape 
  • trunk/first.com

    r15 r25  
    11@common_blocks.inc   ; make all common blocks accesible from command line  
    22cd, '.', current=wd 
    3 !path += ':'+wd+'/TOOLS/:'+wd+'/scripts/' 
     3!path += ':'+wd+'/TOOLS/:'+wd+'/scripts/'+expand_path('.') 
    44@tools.com 
    55jacques 
  • trunk/install

    r1 r25  
    11#!/bin/csh 
    22setenv FIRST . 
    3 \rm ${FIRST}/TOOLS/SAV/jacques.sav 
     3\rm ${FIRST}/jacques.sav 
    44cp ${FIRST}/TOOLS/common_blocks.inc ${FIRST}/ 
    55idl ${FIRST}/TOOLS/pre_compile.com 
Note: See TracChangeset for help on using the changeset viewer.