Files
openbabel/test/ffghemical.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

209 lines
5.2 KiB
C++

/**********************************************************************
ffghemical.cpp - Test energy and gradients for Ghemical force field
This file is part of the Open Babel project.
For more information, see <http://openbabel.org/>
Some portions Copyright (C) 2008 Geoffrey R. Hutchison
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.
***********************************************************************/
// used to set import/export for Cygwin DLLs
#ifdef WIN32
#define USING_OBDLL
#endif
#include <openbabel/babelconfig.h>
#include <fstream>
#include <cstdlib>
#include <openbabel/mol.h>
#include <openbabel/obconversion.h>
#include <openbabel/forcefield.h>
#include <openbabel/obutil.h>
using namespace std;
using namespace OpenBabel;
#ifdef TESTDATADIR
string etestdatadir = TESTDATADIR;
string eresults_file = etestdatadir + "ghemicalresults.txt";
string emolecules_file = etestdatadir + "forcefield.sdf";
#else
string eresults_file = "files/ghemicalresults.txt";
string emolecules_file = "files/forcefield.sdf";
#endif
void PGenerateEnergies();
int ffghemical(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
if (choice == 99)
{
PGenerateEnergies();
return 0;
}
cout << "# Testing Ghemical Force Field..." << endl;
std::ifstream mifs;
if (!SafeOpen(mifs, emolecules_file.c_str()))
{
cout << "Bail out! Cannot read file " << emolecules_file << endl;
return -1; // test failed
}
std::ifstream rifs;
if (!SafeOpen(rifs, eresults_file.c_str()))
{
cout << "Bail out! Cannot read file " << eresults_file << endl;
return -1; // test failed
}
char buffer[BUFF_SIZE];
vector<string> vs;
OBMol mol;
OBConversion conv(&mifs, &cout);
unsigned int currentTest = 0;
if(! conv.SetInAndOutFormats("SDF","SDF"))
{
cout << "Bail out! SDF format is not loaded" << endl;
return -1; // test failed
}
OBForceField* pFF = OBForceField::FindForceField("Ghemical");
if (pFF == nullptr) {
cerr << "Bail out! Cannot load force field!" << endl;
return -1; // test failed
}
pFF->SetLogFile(&cout);
pFF->SetLogLevel(OBFF_LOGLVL_NONE);
double energy;
while(mifs)
{
mol.Clear();
conv.Read(&mol);
if (mol.Empty())
continue;
if (!rifs.getline(buffer,BUFF_SIZE))
{
cout << "Bail out! error reading reference data" << endl;
return -1; // test failed
}
if (!pFF->Setup(mol)) {
cout << "Bail out! could not setup force field on " << mol.GetTitle() << endl;
return -1; // test failed
}
// compare the calculated energy to our reference data
energy = pFF->Energy(false);
if ( fabs(atof(buffer) - energy ) > 1.0e-3)
{
cout << "not ok " << ++currentTest << " # calculated energy incorrect "
<< " for molecule " << mol.GetTitle() << "\n";
cout << "# Expected " << buffer << " found " <<
energy << "\n";
}
else
cout << "ok " << ++currentTest << " # energy \n";
// check that gradients validate too
if (!pFF->ValidateGradients())
{
cout << "not ok " << ++currentTest << " # gradients do not validate "
<< " for molecule " << mol.GetTitle() << "\n";
}
else
cout << "ok " << ++currentTest << " # gradients \n";
}
// return number of tests run
cout << "1.." << currentTest << endl;
// Passed tests
return 0;
}
void PGenerateEnergies()
{
std::ifstream ifs;
if (!SafeOpen(ifs, emolecules_file.c_str()))
return;
std::ofstream ofs;
if (!SafeOpen(ofs, eresults_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;
}
OBForceField* pFF = OBForceField::FindForceField("Ghemical");
if (pFF == nullptr) {
cerr << "Cannot load force field!" << endl;
return;
}
pFF->SetLogFile(&cout);
pFF->SetLogLevel(OBFF_LOGLVL_NONE);
for (;ifs;)
{
mol.Clear();
conv.Read(&mol);
if (mol.Empty())
continue;
if (!pFF->Setup(mol)) {
cerr << "Could not setup force field on molecule: " << mol.GetTitle() << endl;
return;
}
// Don't compute gradients
sprintf(buffer, "%15.5f\n", pFF->Energy(false));
ofs << buffer;
}
cerr << " Ghemical force field energies written successfully" << endl;
return;
}