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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
#include "obtest.h"
#include <openbabel/mol.h>
#include <openbabel/obconversion.h>
#include <openbabel/rotor.h>
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
using namespace OpenBabel;
void testOBRotorGetSet()
{
OBBond bond;
OBRotor rotor;
// SetBond/GetBond
rotor.SetBond(&bond);
OB_ASSERT(rotor.GetBond()->GetIdx() == bond.GetIdx());
// SetIdx/GetIdx
rotor.SetIdx(45);
OB_ASSERT(rotor.GetIdx() == 45);
// SetDihedralAtoms/GetDihedralAtoms
int ref_ptr[4] = {1, 2, 3, 4};
rotor.SetDihedralAtoms(ref_ptr);
rotor.GetDihedralAtoms(ref_ptr);
OB_ASSERT(ref_ptr[0] == 1);
OB_ASSERT(ref_ptr[1] == 2);
OB_ASSERT(ref_ptr[2] == 3);
OB_ASSERT(ref_ptr[3] == 4);
std::vector<int> ref_vector = rotor.GetDihedralAtoms();
OB_ASSERT(ref_vector[0] == 1);
OB_ASSERT(ref_vector[1] == 2);
OB_ASSERT(ref_vector[2] == 3);
OB_ASSERT(ref_vector[3] == 4);
rotor.SetDihedralAtoms(ref_vector);
ref_vector = rotor.GetDihedralAtoms();
OB_ASSERT(ref_vector[0] == 1);
OB_ASSERT(ref_vector[1] == 2);
OB_ASSERT(ref_vector[2] == 3);
OB_ASSERT(ref_vector[3] == 4);
// SetTorsionValues/GetTorsionValues/Size
std::vector<double> angles;
angles.push_back(0.0);
angles.push_back(3.1415);
rotor.SetTorsionValues(angles);
OB_ASSERT(rotor.GetTorsionValues().size() == 2);
OB_ASSERT(rotor.Size() == 2);
}
void testOBRotorSetToAngle()
{
// 1 2 3 4 5 6 7 8
// C-C-C-C-C-C-C-C
// 0 1 2 3 4 5 6
OBMolPtr mol = OBTestUtil::ReadFile("octane.cml");
OBBond *bond = mol->GetBond(3);
OBRotor rotor;
// set the bond to rotate
rotor.SetBond(bond);
// set the dihedral indexes (these start from 1)
int ref[4] = {3, 4, 5, 6};
rotor.SetDihedralAtoms(ref);
// find atoms to rotate
std::vector<int> atoms;
mol->FindChildren(atoms, 4, 5);
// convert to coordinate indexes (start from 0, multiplied by 3)
for (unsigned int i = 0; i < atoms.size(); ++i)
atoms[i] = (atoms[i] - 1) * 3;
rotor.SetRotAtoms(atoms);
OB_ASSERT(IsNear(fabs(RAD_TO_DEG * rotor.CalcTorsion(mol->GetCoordinates())), 180.0, 1.0));
// rotate
rotor.SetToAngle(mol->GetCoordinates(), 60.0 * DEG_TO_RAD);
OB_ASSERT(IsNear(RAD_TO_DEG * rotor.CalcTorsion(mol->GetCoordinates()), 60.0, 1.0));
}
void testOBRotorSetRotor()
{
// 1 2 3 4 5 6 7 8
// C-C-C-C-C-C-C-C
// 0 1 2 3 4 5 6
OBMolPtr mol = OBTestUtil::ReadFile("octane.cml");
OBBond *bond = mol->GetBond(3);
OBRotor rotor;
// set the bond to rotate
rotor.SetBond(bond);
// set the dihedral indexes (these start from 1)
int ref[4] = {3, 4, 5, 6};
rotor.SetDihedralAtoms(ref);
// find atoms to rotate
std::vector<int> atoms;
mol->FindChildren(atoms, 4, 5);
// convert to coordinate indexes (start from 0, multiplied by 3)
for (unsigned int i = 0; i < atoms.size(); ++i)
atoms[i] = (atoms[i] - 1) * 3;
rotor.SetRotAtoms(atoms);
OB_ASSERT(IsNear(fabs(RAD_TO_DEG * rotor.CalcTorsion(mol->GetCoordinates())), 180.0, 1.0));
rotor.SetToAngle(mol->GetCoordinates(), 60.0 * DEG_TO_RAD);
// set torsion values
std::vector<double> angles;
angles.push_back(0.0);
angles.push_back(3.1415);
rotor.SetTorsionValues(angles);
// rotate to 0.0 radians
rotor.SetRotor(mol->GetCoordinates(), 0);
OB_ASSERT(IsNear(RAD_TO_DEG * rotor.CalcTorsion(mol->GetCoordinates()), 0.0, 1.0));
// rotate to 3.1415 radians
rotor.SetRotor(mol->GetCoordinates(), 1);
OB_ASSERT(IsNear(RAD_TO_DEG * rotor.CalcTorsion(mol->GetCoordinates()), 180.0, 1.0));
// rotate to 0.0 radians
rotor.SetRotor(mol->GetCoordinates(), 0, 1);
OB_ASSERT(IsNear(RAD_TO_DEG * rotor.CalcTorsion(mol->GetCoordinates()), 0.0, 1.0));
}
void testOBRotorListFixedBonds()
{
// 1 2 3 4 5 6 7 8
// C-C-C-C-C-C-C-C
// 0 1 2 3 4 5 6
OBMolPtr mol = OBTestUtil::ReadFile("octane.cml");
// test with no bonds fixed
OBRotorList rlist1;
rlist1.Setup(*mol);
OB_ASSERT(rlist1.Size() == 5);
// test with bond 3 fixed
OBBitVec fixedBonds;
fixedBonds.SetBitOn(3);
rlist1.SetFixedBonds(fixedBonds);
rlist1.Setup(*mol);
OB_ASSERT(rlist1.Size() == 4);
// test with bond 1, 3, 5 fixed
fixedBonds.SetBitOn(1);
fixedBonds.SetBitOn(5);
rlist1.SetFixedBonds(fixedBonds);
rlist1.Setup(*mol);
OB_ASSERT(rlist1.Size() == 2);
// test with bond 1, 2, 3, 5 fixed
fixedBonds.SetBitOn(2);
rlist1.SetFixedBonds(fixedBonds);
rlist1.Setup(*mol);
OB_ASSERT(rlist1.Size() == 1);
}
int main(int argc, char **argv)
{
// Define location of file formats for testing
#ifdef FORMATDIR
char env[BUFF_SIZE];
snprintf(env, BUFF_SIZE, "BABEL_LIBDIR=%s", FORMATDIR);
putenv(env);
#endif
// OBRotor
testOBRotorGetSet();
testOBRotorSetToAngle();
testOBRotorSetRotor();
// OBRotorList
testOBRotorListFixedBonds();
return 0;
}
|