#! /bin/sh
#!perl -w # --*- Perl -*--
eval 'exec perl -x $0 ${1+"$@"}'
    if 0;
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2019-12-05 21:08:48 +0200 (Thu, 05 Dec 2019) $ 
#$Revision: 7546 $
#$URL: svn://www.crystallography.net/cod-tools/tags/v2.7/scripts/ssg_symop_check $
#------------------------------------------------------------------------------
#*
#* Check superspace group symmetry operator syntax.
#*
#* USAGE:
#*   $0 < input.symop
#*   $0 input.symop
#*   $0 input1.symop input*.symop
#**

use strict;
use warnings;
use COD::SOptions qw( getOptions );
use COD::SUsage qw( usage );
use COD::Spacegroups::Symop::SSGParse qw( check_symmetry_operator );
use COD::ToolsVersion;

#* OPTIONS:
#*   --help, --usage
#*                     Output a short usage message (this message) and exit.
#*   --version
#*                     Output version information and exit.
#**
@ARGV = getOptions(
    "--help,--usage" => sub { usage; exit },
    '--version'      => sub { print 'cod-tools version ',
                              $COD::ToolsVersion::Version, "\n";
                              exit }
);

while(<>) {
    next if /^#/;
    next if /^\s*$/;
    chomp;
    print "\n# $_\n";
    my $message;
    if( ($message = check_symmetry_operator( $_ )) ) {
        print $message, "\n";
    } else {
        print "OK\n";
    }
}
