#!/bin/sh
#------------------------------------------------------------
# Copyright (C) 2001-2003, CompHEP COllaboration
#------------------------------------------------------------
# $Id: launch_n_comphep,v 1.4 2003/06/25 18:46:41 kryukov Exp $
#
# $Log: launch_n_comphep,v $
# Revision 1.4  2003/06/25 18:46:41  kryukov
# *** empty log message ***
#
# Revision 1.3  2003/04/09 12:51:58  kryukov
# Insert message "No file n_comphep"
#
# Revision 1.2  2003/04/04 18:43:43  kryukov
# Fix minor bug in debug mode
#------------------------------------------------------------

cd results 

if(test -x n_comphep) then
  ./n_comphep $1
else
	echo "*** launch_n_comphep: No file result/n_comphep."
	echo "    ABORT"
	exit 99 
fi
