infile="$1"
if [ -z "$infile" ]
then
    echo You must give an input Nordic file as argument 
else
    java -jar  $SEISAN_TOP/PRO/nor2qml.jar --input=$1
    echo Output qml file is quakeml.xml 
fi
