Files
openbabel/test/charge_gasteiger.cpp
T
Eisuke Kawashima 074e260c0f Replace NULL with nullptr (C++11)
`CMAKE_CXX_STANDARD` is set to 11
2020-05-07 07:24:29 +09:00

230 lines
5.8 KiB
C++

// Old-style test for Gasteiger charge model
// used to set import/export for Cygwin DLLs
#ifdef WIN32
#define USING_OBDLL
#endif
#include <openbabel/babelconfig.h>
#include <fstream>
#include <openbabel/mol.h>
#include <openbabel/obconversion.h>
#include <openbabel/chargemodel.h>
#include <openbabel/obutil.h>
#include <openbabel/atom.h>
#include <openbabel/obiter.h>
#include <cstdlib>
using namespace std;
using namespace OpenBabel;
#ifdef TESTDATADIR
string atestdatadir = TESTDATADIR;
string aresults_file = atestdatadir + "charge-gasteiger.txt";
string adipole_file = atestdatadir + "dipole-gasteiger.txt";
string amolecules_file = atestdatadir + "forcefield.sdf";
#else
string aresults_file = "files/charge-gasteiger.txt";
string adipole_file = "files/dipole-gasteiger.txt";
string amolecules_file = "files/forcefield.sdf";
#endif
void GenerateGasteigerCharges();
int charge_gasteiger(int argc, char* argv[])
{
int defaultchoice = 1;
int choice = defaultchoice;
if (argc > 1) {
if(sscanf(argv[1], "%d", &choice) != 1) {
printf("Couldn't parse that input as a number\n");
return -1;
}
}
// Define location of file formats for testing
#ifdef FORMATDIR
char env[BUFF_SIZE];
snprintf(env, BUFF_SIZE, "BABEL_LIBDIR=%s", FORMATDIR);
putenv(env);
#endif
cout << "# Testing GASTEIGER Charge Model..." << endl;
std::ifstream mifs;
if (!SafeOpen(mifs, amolecules_file.c_str()))
{
cout << "Bail out! Cannot read file " << amolecules_file << endl;
return -1; // test failed
}
std::ifstream rifs;
if (!SafeOpen(rifs, aresults_file.c_str()))
{
cout << "Bail out! Cannot read file " << aresults_file << endl;
return -1; // test failed
}
std::ifstream difs;
if (!SafeOpen(difs, adipole_file.c_str()))
{
cout << "Bail out! Cannot read file " << adipole_file << endl;
return -1; // test failed
}
char buffer[BUFF_SIZE];
vector<string> vs;
OBMol mol;
OBConversion conv(&mifs, &cout);
unsigned int currentTest = 0;
vector3 dipoleMoment, result;
std::vector<double> partialCharges;
OBChargeModel *pCM;
switch(choice) {
case 1:
if(! conv.SetInAndOutFormats("SDF","SDF"))
{
cout << "Bail out! SDF format is not loaded" << endl;
return -1; // test failed
}
pCM = OBChargeModel::FindType("gasteiger");
if (pCM == nullptr) {
cerr << "Bail out! Cannot load charge model!" << endl;
return -1; // test failed
}
while(mifs)
{
mol.Clear();
conv.Read(&mol);
if (mol.Empty())
continue;
if (!difs.getline(buffer,BUFF_SIZE))
{
cout << "Bail out! error reading reference data" << endl;
return -1; // test failed
}
if (!pCM->ComputeCharges(mol)) {
cout << "Bail out! could not compute charges on " << mol.GetTitle() << endl;
return -1; // test failed
}
partialCharges = pCM->GetPartialCharges();
// compare the calculated energy to our reference data
tokenize(vs, buffer);
if (vs.size() < 3)
return -1;
dipoleMoment.SetX(atof(vs[0].c_str()));
dipoleMoment.SetY(atof(vs[1].c_str()));
dipoleMoment.SetZ(atof(vs[2].c_str()));
result = pCM->GetDipoleMoment(mol) - dipoleMoment;
if ( fabs(result.length_2()) > 1.0e-4)
{
cout << "not ok " << ++currentTest << " # calculated dipole incorrect "
<< " for molecule " << mol.GetTitle() << '\n';
}
else
cout << "ok " << ++currentTest << " # dipole\n";
FOR_ATOMS_OF_MOL(atom, mol) {
if (!rifs.getline(buffer,BUFF_SIZE)) {
cout << "Bail out! Cannot read reference data\n";
return -1; // test failed
}
if ( fabs(atom->GetPartialCharge() - atof(buffer)) > 1.0e-3 ) {
cout << "not ok " << ++currentTest << " # calculated charge incorrect "
<< " for molecule " << mol.GetTitle() << '\n';
cout << "# atom " << atom->GetIdx() << " expected " << buffer << " got "
<< atom->GetPartialCharge() << '\n';
} else {
cout << "ok " << ++currentTest << " # charge\n";
}
}
}
break;
case 99:
GenerateGasteigerCharges();
return 0;
default:
cout << "Test number " << choice << " does not exist!\n";
return -1;
}
// Passed tests
return 0;
}
void GenerateGasteigerCharges()
{
std::ifstream ifs;
if (!SafeOpen(ifs, amolecules_file.c_str()))
return;
std::ofstream rofs;
if (!SafeOpen(rofs, aresults_file.c_str()))
return;
std::ofstream dofs;
if (!SafeOpen(dofs, adipole_file.c_str()))
return;
OBMol mol;
OBConversion conv(&ifs, &cout);
char buffer[BUFF_SIZE];
if(! conv.SetInAndOutFormats("SDF","SDF"))
{
cerr << "SDF format is not loaded" << endl;
return;
}
OBChargeModel *pCM = OBChargeModel::FindType("gasteiger");
if (pCM == nullptr) {
cerr << "Cannot load charge model!" << endl;
return;
}
std::vector<double> partialCharges;
vector3 dipoleMoment;
for (;ifs;)
{
mol.Clear();
conv.Read(&mol);
if (mol.Empty())
continue;
if (pCM->ComputeCharges(mol)) {
partialCharges = pCM->GetPartialCharges();
}
// write out the dipole moment
dipoleMoment = pCM->GetDipoleMoment(mol);
sprintf(buffer, "%15.5f%15.5f%15.5f\n", dipoleMoment.x(), dipoleMoment.y(), dipoleMoment.z());
dofs << buffer;
// and write all the partial charges
FOR_ATOMS_OF_MOL(atom, mol) {
sprintf(buffer, "%15.5f\n", atom->GetPartialCharge());
rofs << buffer;
}
}
cerr << "Charges written successfully" << endl;
return;
}