1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/**********************************************************************
Copyright (C) 2000 by OpenEye Scientific Software, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
***********************************************************************/
#include "mol.h"
namespace OpenBabel {
#define BOHR_TO_ANGSTROM 0.529177
bool ReadGAMESS(istream &ifs,OBMol &mol,char *title)
{
char buffer[BUFF_SIZE];
string str,str1;
float x,y,z;
OBAtom *atom;
vector<string> vs;
bool hasPartialCharges = false;
mol.BeginModify();
while (ifs.getline(buffer,BUFF_SIZE))
{
if(strstr(buffer,"ATOMIC COORDINATES (BOHR)") != NULL)
{
// mol.EndModify();
mol.Clear();
mol.BeginModify();
ifs.getline(buffer,BUFF_SIZE); // column headings
ifs.getline(buffer,BUFF_SIZE);
tokenize(vs,buffer);
while (vs.size() == 5)
{
atom = mol.NewAtom();
atom->SetAtomicNum(atoi(vs[1].c_str())); // Parse the current one
x = atof((char*)vs[2].c_str()) * BOHR_TO_ANGSTROM;
y = atof((char*)vs[3].c_str()) * BOHR_TO_ANGSTROM;
z = atof((char*)vs[4].c_str()) * BOHR_TO_ANGSTROM;
atom->SetVector(x,y,z);
vs[1].erase(vs[1].size() - 2, 2);
if (!ifs.getline(buffer,BUFF_SIZE)) break;
tokenize(vs,buffer);
}
}
else if(strstr(buffer,"COORDINATES OF ALL ATOMS ARE (ANGS)") != NULL)
{
// mol.EndModify();
mol.Clear();
mol.BeginModify();
ifs.getline(buffer,BUFF_SIZE); // column headings
ifs.getline(buffer,BUFF_SIZE); // ---------------
ifs.getline(buffer,BUFF_SIZE);
tokenize(vs,buffer);
while (vs.size() == 5)
{
atom = mol.NewAtom();
atom->SetAtomicNum(atoi(vs[1].c_str())); // Parse the current one
x = atof((char*)vs[2].c_str());
y = atof((char*)vs[3].c_str());
z = atof((char*)vs[4].c_str());
atom->SetVector(x,y,z);
vs[1].erase(vs[1].size() - 2, 2);
if (!ifs.getline(buffer,BUFF_SIZE)) break;
tokenize(vs,buffer);
}
}
else if(strstr(buffer,"MOPAC CHARGES") != NULL)
{
hasPartialCharges = true;
ifs.getline(buffer,BUFF_SIZE); // ---------------
ifs.getline(buffer,BUFF_SIZE); // column headings
ifs.getline(buffer,BUFF_SIZE);
tokenize(vs,buffer);
while (vs.size() == 4)
{
atom = mol.GetAtom(atoi(vs[0].c_str()));
atom->SetPartialCharge(atof(vs[2].c_str()));
if (!ifs.getline(buffer,BUFF_SIZE)) break;
tokenize(vs,buffer);
}
}
}
mol.EndModify();
mol.ConnectTheDots();
mol.PerceiveBondOrders();
if (hasPartialCharges)
mol.SetPartialChargesPerceived();
mol.SetTitle(title);
return(true);
}
bool WriteGAMESS(ostream &ofs,OBMol &mol)
{
unsigned int i;
char buffer[BUFF_SIZE];
ofs << " $CONTRL COORD=CART UNITS=ANGS $END" << endl;
ofs << " $DATA" << endl;
ofs << mol.GetTitle() << endl;
ofs << "Put symmetry info here" << endl << endl;
OBAtom *atom;
for(i = 1;i <= mol.NumAtoms(); i++)
{
atom = mol.GetAtom(i);
sprintf(buffer,"%-3s %4d.0 %8.5f %8.5f %8.5f ",
etab.GetSymbol(atom->GetAtomicNum()),
atom->GetAtomicNum(),
atom->GetX(),
atom->GetY(),
atom->GetZ());
ofs << buffer << endl;
}
ofs << " $END" << endl << endl << endl;
return(true);
}
}
|