source: branches/alma/bin/asap @ 1757

Last change on this file since 1757 was 1757, checked in by Kana Sugimoto, 14 years ago

New Development: Yes

JIRA Issue: Yes (CAS-2211)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: ASAP 3.0.0 interface changes

Test Programs:

Put in Release Notes: Yes

Module(s): all the CASA sd tools and tasks are affected.

Description: Merged ATNF-ASAP 3.0.0 developments to CASA (alma) branch.

Note you also need to update casa/code/atnf.


  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
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#
30# $Id: asap 1757 2010-06-09 09:03:06Z KanaSugimoto $
31#---------------------------------------------------------------------------
32[ -x /usr/bin/clear ] && /usr/bin/clear
33
34# do not remove this line it gets replaced on install with custom moduledir
35# **PYTHONPATH**
36
37echo "Loading ASAP..."
38
39ip="`which ipython`"
40p="`which python`"
41
42# no ipython installation - run without all the goodies
43if [ ! -x "$ip" ]; then
44    echo "Can't find, or no execute permissions for 'ipython'"
45    echo "Running asap through 'python':"
46    $p -c 'from asap import *'
47else
48    # if run for the first time set-up ipythonrc profile and ~/.asap
49    if [ ! -d "${HOME}/.asap" ]; then
50        $p -c "import asap"
51    fi
52    # now execute ipython using the profile
53    $ip -ipythondir "${HOME}/.asap" $*
54fi
Note: See TracBrowser for help on using the repository browser.