:

   cd results 

   if(test -r $1_LOCK) then
           xterm  -title "Error massage"  -e sh -c \
 " echo   This program was already launched and not normaly finished.
   echo remove the \'results/$1_LOCK\' file to start the numerical session anyway
   echo Press the Enter key to continue
   read qq
 "
     exit 1
   fi

   echo c_n_comphep_$1 is started in this directory > $1_LOCK

   if(test -x ../make__n_comphep) then 
      xterm -e  ../make__n_comphep $1
   else 
      xterm -e  $COMPHEP/make__n_comphep $1
   fi 
   if(test -x n_comphep_$1) then

     if(test $1 = c ) then ./n_comphep_c; else xterm -e ./n_comphep_f;fi 
   fi  
   rm $1_LOCK
