#!/bin/bash

# This only works for Bash. For other shells the script needs to be
# modified accordingly.

#Define an envirorment variable $SICER defining the path to the SICER
#directory. Please replace {PATHTO} with the directory where you put
#SICER:

SICER={PATHTO}/SICER
export SICER


#Put the SICER lib/ directory in your PYTHONPATH.  Again, if you are using a bash shell this can be done with the command:

if [ -z "$PYTHONPATH" ] ;  then
	PYTHONPATH=$SICER/lib 
else
	PYTHONPATH=$SICER/lib:$PYTHONPATH	
fi

export PYTHONPATH
