source: src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp@ 06c7a3

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 06c7a3 was c4d4df, checked in by Frederik Heber <heber@…>, 15 years ago

Pair correlation analysis added.

Unit tests are working fine.

  • Property mode set to 100644
File size: 4.7 KB
Line 
1/*
2 * AnalysisCorrelationToSurfaceUnitTest.cpp
3 *
4 * Created on: Oct 13, 2009
5 * Author: heber
6 */
7
8using namespace std;
9
10#include <cppunit/CompilerOutputter.h>
11#include <cppunit/extensions/TestFactoryRegistry.h>
12#include <cppunit/ui/text/TestRunner.h>
13
14#include "analysis_correlation.hpp"
15#include "AnalysisCorrelationToSurfaceUnitTest.hpp"
16
17#include "atom.hpp"
18#include "boundary.hpp"
19#include "element.hpp"
20#include "molecule.hpp"
21#include "linkedcell.hpp"
22#include "periodentafel.hpp"
23#include "tesselation.hpp"
24
25/********************************************** Test classes **************************************/
26
27// Registers the fixture into the 'registry'
28CPPUNIT_TEST_SUITE_REGISTRATION( AnalysisCorrelationToSurfaceUnitTest );
29
30void AnalysisCorrelationToSurfaceUnitTest::setUp()
31{
32 atom *Walker = NULL;
33
34 // init private all pointers to zero
35 TestMolecule = NULL;
36 hydrogen = NULL;
37 tafel = NULL;
38 surfacemap = NULL;
39 binmap = NULL;
40 Surface = NULL;
41 LC = NULL;
42
43
44 // construct element
45 hydrogen = new element;
46 hydrogen->Z = 1;
47 strcpy(hydrogen->name, "hydrogen");
48 hydrogen->symbol[0] = 'H';
49
50 // construct periodentafel
51 tafel = new periodentafel;
52 tafel->AddElement(hydrogen);
53
54 // construct molecule (tetraeder of hydrogens)
55 TestMolecule = new molecule(tafel);
56 Walker = new atom();
57 Walker->type = hydrogen;
58 Walker->node->Init(1., 0., 1. );
59 TestMolecule->AddAtom(Walker);
60 Walker = new atom();
61 Walker->type = hydrogen;
62 Walker->node->Init(0., 1., 1. );
63 TestMolecule->AddAtom(Walker);
64 Walker = new atom();
65 Walker->type = hydrogen;
66 Walker->node->Init(1., 1., 0. );
67 TestMolecule->AddAtom(Walker);
68 Walker = new atom();
69 Walker->type = hydrogen;
70 Walker->node->Init(0., 0., 0. );
71 TestMolecule->AddAtom(Walker);
72
73 // check that TestMolecule was correctly constructed
74 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 );
75
76 // init tesselation and linked cell
77 Surface = new Tesselation;
78 TestMolecule->TesselStruct = Surface;
79 FindNonConvexBorder((ofstream *)&cout, TestMolecule, LC, 2.5, NULL);
80 LC = new LinkedCell(TestMolecule, 5.);
81 CPPUNIT_ASSERT_EQUAL( (size_t)4, Surface->PointsOnBoundary.size() );
82 CPPUNIT_ASSERT_EQUAL( (size_t)6, Surface->LinesOnBoundary.size() );
83 CPPUNIT_ASSERT_EQUAL( (size_t)4, Surface->TrianglesOnBoundary.size() );
84
85 // init maps
86 surfacemap = CorrelationToSurface( (ofstream *)&cout, TestMolecule, hydrogen, Surface, LC );
87 binmap = NULL;
88
89};
90
91
92void AnalysisCorrelationToSurfaceUnitTest::tearDown()
93{
94 if (surfacemap != NULL)
95 delete(surfacemap);
96 if (binmap != NULL)
97 delete(binmap);
98
99 // remove
100 delete(TestMolecule);
101 // note that Surface and all the atoms are cleaned by TestMolecule
102 delete(LC);
103 delete(tafel);
104 // note that element is cleaned by periodentafel
105};
106
107
108void AnalysisCorrelationToSurfaceUnitTest::CorrelationToSurfaceTest()
109{
110 // do the pair correlation
111 CPPUNIT_ASSERT( surfacemap != NULL );
112 CPPUNIT_ASSERT_EQUAL( (size_t)4, surfacemap->size() );
113};
114
115void AnalysisCorrelationToSurfaceUnitTest::CorrelationToSurfaceBinNoRangeTest()
116{
117 BinPairMap::iterator tester;
118 // put pair correlation into bins and check with no range
119 binmap = BinData( (ofstream *)&cout, surfacemap, 0.5, 0., 0. );
120 CPPUNIT_ASSERT_EQUAL( (size_t)1, binmap->size() );
121 //OutputCorrelation ( (ofstream *)&cout, binmap );
122 tester = binmap->begin();
123 CPPUNIT_ASSERT_EQUAL( 0., tester->first );
124 CPPUNIT_ASSERT_EQUAL( 4, tester->second );
125
126};
127
128void AnalysisCorrelationToSurfaceUnitTest::CorrelationToSurfaceBinRangeTest()
129{
130 BinPairMap::iterator tester;
131 // ... and check with [0., 2.] range
132 binmap = BinData( (ofstream *)&cout, surfacemap, 0.5, 0., 2. );
133 CPPUNIT_ASSERT_EQUAL( (size_t)5, binmap->size() );
134 //OutputCorrelation ( (ofstream *)&cout, binmap );
135 tester = binmap->begin();
136 CPPUNIT_ASSERT_EQUAL( 0., tester->first );
137 CPPUNIT_ASSERT_EQUAL( 4, tester->second );
138 tester = binmap->find(1.);
139 CPPUNIT_ASSERT_EQUAL( 1., tester->first );
140 CPPUNIT_ASSERT_EQUAL( 0, tester->second );
141
142};
143
144/********************************************** Main routine **************************************/
145
146int main(int argc, char **argv)
147{
148 // Get the top level suite from the registry
149 CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
150
151 // Adds the test to the list of test to run
152 CppUnit::TextUi::TestRunner runner;
153 runner.addTest( suite );
154
155 // Change the default outputter to a compiler error format outputter
156 runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
157 std::cerr ) );
158 // Run the tests.
159 bool wasSucessful = runner.run();
160
161 // Return error code 1 if the one of test failed.
162 return wasSucessful ? 0 : 1;
163};
Note: See TracBrowser for help on using the repository browser.