CCL Home Page
Up Directory CCL wrisis.c
/*****
This file is part of the Babel Program
Copyright (C) 1992-96 W. Patrick Walters and Matthew T. Stahl 
All Rights Reserved 
All Rights Reserved 
All Rights Reserved 
All Rights Reserved 

For more information please contact :

babel@mercury.aichem.arizona.edu
--------------------------------------------------------------------------------

FILE : wrisis.c
AUTHOR(S) : Pat Walters
DATE : 9-27-95
PURPOSE : Routines to write an MDL isis file
******/

#include "bbltyp.h"

int write_isis(FILE *file1, ums_type *mol)
{ 
  int i;
  char type_name[5];
  int result;
  
  if (structure_is_2D(mol))
  {
    fprintf(file1,"%s\n  -ISIS-            2D\n\n",Title);
  }
  else
    fprintf(file1,"%s\n  -ISIS-            3D\n\n",Title);

  fprintf(file1,"%3d%3d%3d%3d%3d%3d%3d%3d%3d%3d%3d V2000\n",
	  Atoms,Bonds,0,0,0,0,0,0,0,0,1);
  
  for(i = 1;i <= Atoms; i++)
  {
    result = get_output_type(i,"XYZ",Type(i),type_name,all_caps);
    fprintf(file1,"%10.4f%10.4f%10.4f %-3s%2d%3d%3d%3d%3d\n",
	    X(i),
	    Y(i),
	    Z(i),
	    type_name,
	    0,0,0,0,0);
  }
  for(i = 0; i < Bonds; i++)
  {
    if (Bond_order(i) == 5)
      Bond_order(i) = 4;
    fprintf(file1,"%3d%3d%3d%3d%3d%3d\n",
	    Start(i),
	    End(i),
	    Bond_order(i),
	    0,0,0);
  }
  fprintf(file1,"M  END\n");  
  fprintf(file1,"$$$$\n");
  return(TRUE);
}


int structure_is_2D(ums_type *mol)
{
  int i;
  
  for (i = 1; i <= Atoms; i++)
  {
    if (X(i) != 0.0 || Y(i) != 0.0 || Z(i) != 0.0)
      return(FALSE);
  }
  return(TRUE);
}

      









Modified: Tue Jan 21 17:00:00 1997 GMT
Page accessed 1351 times since Tue Dec 14 20:03:14 1999 GMT