[511] | 1 | #!/bin/sh
|
---|
| 2 | #--------------------------------------------------------------------------
|
---|
| 3 | # Wrapper script for ATNF Spectral Analysis Package (ASAP).
|
---|
| 4 | #---------------------------------------------------------------------------
|
---|
| 5 | # Copyright (C) 2004,2005
|
---|
| 6 | # ATNF
|
---|
| 7 | #
|
---|
| 8 | # This program is free software; you can redistribute it and/or modify it
|
---|
| 9 | # under the terms of the GNU General Public License as published by the Free
|
---|
| 10 | # Software Foundation; either version 2 of the License, or (at your option)
|
---|
| 11 | # any later version.
|
---|
| 12 | #
|
---|
| 13 | # This program is distributed in the hope that it will be useful, but
|
---|
| 14 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
| 16 | # Public License for more details.
|
---|
| 17 | #
|
---|
| 18 | # You should have received a copy of the GNU General Public License along
|
---|
| 19 | # with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
| 20 | # 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
| 21 | #
|
---|
| 22 | # Correspondence concerning this software should be addressed as follows:
|
---|
| 23 | # Internet email: Malte.Marquarding@csiro.au
|
---|
| 24 | # Postal address: Malte Marquarding,
|
---|
| 25 | # Australia Telescope National Facility,
|
---|
| 26 | # P.O. Box 76,
|
---|
| 27 | # Epping, NSW, 2121,
|
---|
| 28 | # AUSTRALIA
|
---|
| 29 | #
|
---|
[689] | 30 | # $Id: asap 691 2005-09-26 00:22:29Z mar637 $
|
---|
[511] | 31 | #---------------------------------------------------------------------------
|
---|
| 32 | [ -x /usr/bin/clear ] && /usr/bin/clear
|
---|
| 33 |
|
---|
| 34 | echo "Loading ASAP..."
|
---|
| 35 |
|
---|
[689] | 36 | prefix='/usr/local'
|
---|
[511] | 37 |
|
---|
[689] | 38 | # check if user set
|
---|
| 39 | if [ "x${ASAPDATA}" == "x" ]; then
|
---|
| 40 | ASAPDATA="${prefix}/share/asap"
|
---|
| 41 | export ASAPDATA
|
---|
[511] | 42 | fi
|
---|
| 43 |
|
---|
[689] | 44 | if [ ! -d "${ASAPDATA}" ]; then
|
---|
| 45 | echo "Couldn't locate the asap data directory"
|
---|
[691] | 46 | #ASAPDATA="/nfs/aips++"
|
---|
[689] | 47 | #export ASAPDATA
|
---|
| 48 | #exit 1
|
---|
| 49 | fi
|
---|
[636] | 50 |
|
---|
[689] | 51 | # Keep casa measures happy
|
---|
| 52 | if test -d "${ASAPDATA}/data" ; then
|
---|
| 53 | platform='Linux'
|
---|
| 54 | if [ `uname -s` == 'Darwin' ]; then
|
---|
| 55 | platform='darwin'
|
---|
[550] | 56 | fi
|
---|
[691] | 57 | AIPSPATH="${ASAPDATA} ${platform} somewhere localhost"
|
---|
[689] | 58 | export AIPSPATH
|
---|
| 59 | else
|
---|
| 60 | echo "Couldn't find the ASAP data directory"
|
---|
| 61 | exit 1
|
---|
[545] | 62 | fi
|
---|
| 63 |
|
---|
[689] | 64 | # started for the first time
|
---|
[691] | 65 | ASAPUSERDIR="${HOME}/.asap"; export ASAPUSERDIR
|
---|
[689] | 66 | if [ ! -d ${ASAPUSERDIR} ]; then
|
---|
| 67 | echo 'First time ASAP use. Setting up ~/.asap'
|
---|
| 68 | mkdir "${ASAPUSERDIR}"
|
---|
[691] | 69 | cp "${ASAPDATA}/ipythonrc-asap" "${ASAPUSERDIR}/"
|
---|
| 70 | echo "#Dummy placeholder. All info is in ipythonrc-asap" > "${ASAPUSERDIR}/ipythonrc"
|
---|
[689] | 71 | touch "${ASAPUSERDIR}/asapuserfuncs.py"
|
---|
| 72 | fi
|
---|
[511] | 73 |
|
---|
[689] | 74 | ip="`which ipython`"
|
---|
| 75 |
|
---|
| 76 | if [ ! -x "$ip" ]; then
|
---|
| 77 | echo "Can't find, or no execute permissions for 'ipython'"
|
---|
| 78 | echo "Running asap through 'python':"
|
---|
| 79 | p="`which python`"
|
---|
| 80 | $p -c 'from asap import *'
|
---|
[691] | 81 | else
|
---|
[689] | 82 | $ip -ipythondir "${ASAPUSERDIR}" -p 'asap' $*
|
---|
| 83 | fi
|
---|