#! /bin/sh
# This is the LHEA perl script: /Users/irby/heasoft-6.10/heasoft-6.10/ftools/powerpc-apple-darwin9.8.0/bin/xsel_f2c.pl
# The purpose of this special block is to make this script work with
# the user's local perl, regardless of where that perl is installed.
# The variable LHEAPERL is set by the initialization script to
# point to the local perl installation.
#-------------------------------------------------------------------------------
eval '
if [ "x$LHEAPERL" = x ]; then
  echo "Please run standard LHEA initialization before attempting to run /Users/irby/heasoft-6.10/heasoft-6.10/ftools/powerpc-apple-darwin9.8.0/bin/xsel_f2c.pl."
  exit 3
elif [ "$LHEAPERL" = noperl ]; then
  echo "During LHEA initialization, no acceptable version of Perl was found."
  echo "Cannot execute script /Users/irby/heasoft-6.10/heasoft-6.10/ftools/powerpc-apple-darwin9.8.0/bin/xsel_f2c.pl."
  exit 3
elif [ `$LHEAPERL -v < /dev/null 2> /dev/null | grep -ic "perl"` -eq 0 ]; then
  echo "LHEAPERL variable does not point to a usable perl."
  exit 3
else
  # Force Perl into 32-bit mode (to match the binaries) if necessary:
  if [ "x$HD_BUILD_ARCH_32_BIT" = xyes ]; then
    if [ `$LHEAPERL -V 2> /dev/null | grep -ic "USE_64_BIT"` -ne 0 ]; then
      VERSIONER_PERL_PREFER_32_BIT=yes
      export VERSIONER_PERL_PREFER_32_BIT
    fi
  fi
  exec $LHEAPERL -x $0 ${1+"$@"}
fi
'
if(0);
# Do not delete anything above this comment from an installed LHEA script!
#-------------------------------------------------------------------------------
#!/usr/local/bin/perl

$LISTFILE = "xsel.files";
open LISTFILE || die "Can't find the list of files: $LISTFILE \n";
$num_of_files = 0;
$outfile = "/tmp/f2c.report";
system("rm -f $outfile");
while ( <LISTFILE> ){
    chop;
    if(! /[ ]*\#/ && /\.f$/ && ! /vms/ && ! /ulx/ ) {
	($oldfile = $_) =~ s/^[ \t]*//g; # Remove spaces and tabs at BOL
	$oldlist[$num_of_files] = $oldfile;
	$num_of_files += 1;
    }
}
$comlin = join(' ','cat ',@oldlist,'| f2c -C -u -72 -Nx400  -\!c 2>&1',"| tee $outfile " ); 
print $comlin,"\n";
system($comlin);

