;****************************************************************************** ;* FILE: $PAPCO_USER/papco_startup.pro ;* ;* DESCRIPTION: initializes PAPCO ;* ;* CALLED BY: papco_setup ;* ;* HOW TO START: ;* from command line: type idl papco_startup (must be in current dir) ;* or, in your shell set up an environmental variable IDL_STARTUP ;* which points to the location of papco_startup ;* eg for ksh: IDL_STARTUP=~/papco_startup ;* export IDL_STARTUP ;* then simply type idl ;* from IDL: type @papco_startup (if papco_startup.pro in local dir) ;* or type @PATH/papco_startup (if papco_startup.pro in PATH) ;* then you can start PAPCO by executing the command "papco". ;* ;* MODIFICATION HISTORY: written July 1997, R.Friedel ;****************************************************************************** ; Set up some variables used in this startup file @papco_set_variables print, '' print, '--- Module Paths and module data path env. var. settings -------------' print, '' @papco_include_modules print, '' print, '--- Setting up other add-inn IDL applications ------------------------' print, '' @papco_include_addins print,'' print, '--- Compiling/Restoring PAPCO core and modules procedures/functions --' print,'' @papco_compile print, '' print, 'PAPCO path env. var. now set:' print, '' print, 'PAPCO_PATH : ',getenv('PAPCO_PATH') print, 'PAPCO_MODULES : ',getenv('PAPCO_MODULES') print, 'PAPCO_HOME : ',getenv('PAPCO_HOME') print, 'PAPCO_DOWNLOAD : ',getenv('PAPCO_DOWNLOAD') print, 'PAPCO_STARTUP_MODE: ',getenv('PAPCO_STARTUP_MODE') print, '' print,'--- INSTALLATION COMPLETE----------------------------------------------' print, '' print,'--- Start PAPCO by typing papco----------------------------------------' !quiet=0