| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * AnalysisPairCorrelationUnitTest.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Oct 13, 2009
 | 
|---|
| 12 |  *      Author: heber
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | using namespace std;
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include <cppunit/CompilerOutputter.h>
 | 
|---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h>
 | 
|---|
| 24 | #include <cppunit/ui/text/TestRunner.h>
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include <cstring>
 | 
|---|
| 27 | 
 | 
|---|
| 28 | #include "Analysis/analysis_correlation.hpp"
 | 
|---|
| 29 | #include "Descriptors/MoleculeDescriptor.hpp"
 | 
|---|
| 30 | 
 | 
|---|
| 31 | #include "World.hpp"
 | 
|---|
| 32 | #include "atom.hpp"
 | 
|---|
| 33 | #include "Tesselation/boundary.hpp"
 | 
|---|
| 34 | #include "Element/element.hpp"
 | 
|---|
| 35 | #include "molecule.hpp"
 | 
|---|
| 36 | #include "linkedcell.hpp"
 | 
|---|
| 37 | #include "Element/periodentafel.hpp"
 | 
|---|
| 38 | #include "Tesselation/tesselation.hpp"
 | 
|---|
| 39 | #include "World.hpp"
 | 
|---|
| 40 | 
 | 
|---|
| 41 | #include "AnalysisPairCorrelationUnitTest.hpp"
 | 
|---|
| 42 | 
 | 
|---|
| 43 | #ifdef HAVE_TESTRUNNER
 | 
|---|
| 44 | #include "UnitTestMain.hpp"
 | 
|---|
| 45 | #endif /*HAVE_TESTRUNNER*/
 | 
|---|
| 46 | 
 | 
|---|
| 47 | /********************************************** Test classes **************************************/
 | 
|---|
| 48 | 
 | 
|---|
| 49 | // Registers the fixture into the 'registry'
 | 
|---|
| 50 | CPPUNIT_TEST_SUITE_REGISTRATION( AnalysisPairCorrelationUnitTest );
 | 
|---|
| 51 | 
 | 
|---|
| 52 | 
 | 
|---|
| 53 | void AnalysisPairCorrelationUnitTest::setUp()
 | 
|---|
| 54 | {
 | 
|---|
| 55 |   atom *Walker = NULL;
 | 
|---|
| 56 | 
 | 
|---|
| 57 |   // init private all pointers to zero
 | 
|---|
| 58 |   TestMolecule = NULL;
 | 
|---|
| 59 |   correlationmap = NULL;
 | 
|---|
| 60 |   binmap = NULL;
 | 
|---|
| 61 | 
 | 
|---|
| 62 |   // construct element list
 | 
|---|
| 63 |   std::vector<const element *> elements;
 | 
|---|
| 64 |   hydrogen = World::getInstance().getPeriode()->FindElement(1);
 | 
|---|
| 65 |   CPPUNIT_ASSERT(hydrogen != NULL && "hydrogen element not found");
 | 
|---|
| 66 |   elements.push_back(hydrogen);
 | 
|---|
| 67 |   elements.push_back(hydrogen);
 | 
|---|
| 68 | 
 | 
|---|
| 69 |   // construct molecule (tetraeder of hydrogens)
 | 
|---|
| 70 |   TestMolecule = World::getInstance().createMolecule();
 | 
|---|
| 71 |   Walker = World::getInstance().createAtom();
 | 
|---|
| 72 |   Walker->setType(hydrogen);
 | 
|---|
| 73 |   Walker->setPosition(Vector(1., 0., 1. ));
 | 
|---|
| 74 |   TestMolecule->AddAtom(Walker);
 | 
|---|
| 75 |   Walker = World::getInstance().createAtom();
 | 
|---|
| 76 |   Walker->setType(hydrogen);
 | 
|---|
| 77 |   Walker->setPosition(Vector(0., 1., 1. ));
 | 
|---|
| 78 |   TestMolecule->AddAtom(Walker);
 | 
|---|
| 79 |   Walker = World::getInstance().createAtom();
 | 
|---|
| 80 |   Walker->setType(hydrogen);
 | 
|---|
| 81 |   Walker->setPosition(Vector(1., 1., 0. ));
 | 
|---|
| 82 |   TestMolecule->AddAtom(Walker);
 | 
|---|
| 83 |   Walker = World::getInstance().createAtom();
 | 
|---|
| 84 |   Walker->setType(hydrogen);
 | 
|---|
| 85 |   Walker->setPosition(Vector(0., 0., 0. ));
 | 
|---|
| 86 |   TestMolecule->AddAtom(Walker);
 | 
|---|
| 87 | 
 | 
|---|
| 88 |   // check that TestMolecule was correctly constructed
 | 
|---|
| 89 |   CPPUNIT_ASSERT_EQUAL( TestMolecule->getAtomCount(), 4 );
 | 
|---|
| 90 | 
 | 
|---|
| 91 |   // init maps
 | 
|---|
| 92 |   World::getInstance().selectAllMolecules(AllMolecules());
 | 
|---|
| 93 |   allMolecules = World::getInstance().getSelectedMolecules();
 | 
|---|
| 94 |   CPPUNIT_ASSERT_EQUAL( (size_t) 1, allMolecules.size());
 | 
|---|
| 95 |   correlationmap = PairCorrelation( allMolecules, elements);
 | 
|---|
| 96 |   binmap = NULL;
 | 
|---|
| 97 | 
 | 
|---|
| 98 | };
 | 
|---|
| 99 | 
 | 
|---|
| 100 | 
 | 
|---|
| 101 | void AnalysisPairCorrelationUnitTest::tearDown()
 | 
|---|
| 102 | {
 | 
|---|
| 103 |   if (correlationmap != NULL)
 | 
|---|
| 104 |     delete(correlationmap);
 | 
|---|
| 105 |   if (binmap != NULL)
 | 
|---|
| 106 |     delete(binmap);
 | 
|---|
| 107 | 
 | 
|---|
| 108 |   // note that all the atoms are cleaned by TestMolecule
 | 
|---|
| 109 |   World::purgeInstance();
 | 
|---|
| 110 |   logger::purgeInstance();
 | 
|---|
| 111 |   errorLogger::purgeInstance();
 | 
|---|
| 112 | };
 | 
|---|
| 113 | 
 | 
|---|
| 114 | void AnalysisPairCorrelationUnitTest::PairCorrelationTest()
 | 
|---|
| 115 | {
 | 
|---|
| 116 |   // do the pair correlation
 | 
|---|
| 117 |   CPPUNIT_ASSERT( correlationmap != NULL );
 | 
|---|
| 118 |   CPPUNIT_ASSERT_EQUAL( (size_t)6, correlationmap->size() );
 | 
|---|
| 119 | };
 | 
|---|
| 120 | 
 | 
|---|
| 121 | void AnalysisPairCorrelationUnitTest::PairCorrelationBinNoRangeTest()
 | 
|---|
| 122 | {
 | 
|---|
| 123 |   BinPairMap::iterator tester;
 | 
|---|
| 124 |   // put pair correlation into bins and check with no range
 | 
|---|
| 125 |   binmap = BinData( correlationmap, 0.5, 0., 0. );
 | 
|---|
| 126 |   CPPUNIT_ASSERT_EQUAL( (size_t)1, binmap->size() );
 | 
|---|
| 127 |   //OutputCorrelation ( binmap );
 | 
|---|
| 128 |   tester = binmap->begin();
 | 
|---|
| 129 |   CPPUNIT_ASSERT_EQUAL( sqrt(2.), tester->first );
 | 
|---|
| 130 |   CPPUNIT_ASSERT_EQUAL( 6, tester->second );
 | 
|---|
| 131 | };
 | 
|---|
| 132 | 
 | 
|---|
| 133 | void AnalysisPairCorrelationUnitTest::PairCorrelationBinRangeTest()
 | 
|---|
| 134 | {
 | 
|---|
| 135 |   BinPairMap::iterator tester;
 | 
|---|
| 136 |   // ... and check with [0., 2.] range
 | 
|---|
| 137 |   binmap = BinData( correlationmap, 0.5, 0., 2. );
 | 
|---|
| 138 |   CPPUNIT_ASSERT_EQUAL( (size_t)5, binmap->size() );
 | 
|---|
| 139 |   //OutputCorrelation ( binmap );
 | 
|---|
| 140 |   tester = binmap->begin();
 | 
|---|
| 141 |   CPPUNIT_ASSERT_EQUAL( 0., tester->first );
 | 
|---|
| 142 |   tester = binmap->find(1.);
 | 
|---|
| 143 |   CPPUNIT_ASSERT_EQUAL( 1., tester->first );
 | 
|---|
| 144 |   CPPUNIT_ASSERT_EQUAL( 6, tester->second );
 | 
|---|
| 145 | };
 | 
|---|