Unverified Commit 1df59c4b authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

change lammps2pdb.pl to only ignore the first line of a data file. whitespace fixes

parent 134a2e8d
Loading
Loading
Loading
Loading
+386 −386
Original line number Diff line number Diff line
@@ -574,7 +574,7 @@

    foreach ((masses,atoms,bonds,angles,dihedrals,impropers)) { $hash{$_}=$_; }
    open(DATA, "<".$data_name);
    for (my $i=0; $i<2; ++$i) { my $tmp = <DATA>; }	# skip first two lines
    my $tmp = <DATA>;                                   # skip first line
    while ($init&&!eof(DATA))                           # interpret header
    {
      @tmp              = split(" ", <DATA>);