# $Header: /mnt/raid/services/cvs/CADD/Raccoon/bin/raccoonLauncher,v 1.1 2012/07/18 23:24:12 sanner Exp $
# $Id: raccoonLauncher,v 1.1 2012/07/18 23:24:12 sanner Exp $

# vision can be launched from a python shell like this:
#import Vision; Vision.runVision()

import sys, os
sys.path.insert(0, '.')

from CADD import Raccoon

if '__IP' in dir(): # ipython
    Raccoon.runRaccoon(sys.argv, ownInterpreter = False)
else:
    Raccoon.runRaccoon(sys.argv, ownInterpreter = True)

