source: molecuilder/src/analysis_correlation.cpp@ 075729

Last change on this file since 075729 was 075729, checked in by Frederik Heber <heber@…>, 16 years ago

Merge branch 'Analysis_PairCorrelation' into StructureRefactoring

Conflicts:

molecuilder/src/Makefile.am
molecuilder/src/World.cpp
molecuilder/src/World.hpp
molecuilder/src/boundary.cpp
molecuilder/src/builder.cpp
molecuilder/src/log.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/periodentafel.cpp
molecuilder/src/tesselation.cpp
molecuilder/src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
molecuilder/src/unittests/Makefile.am
molecuilder/src/unittests/bondgraphunittest.cpp
molecuilder/src/unittests/gslvectorunittest.cpp
molecuilder/src/unittests/logunittest.cpp
molecuilder/src/unittests/tesselation_boundarytriangleunittest.hpp
molecuilder/src/vector.cpp
molecuilder/tests/Tesselations/defs.in

Conflicts have been many and too numerous to listen here, just the few general cases

  • new molecule() replaced by World::getInstance().createMolecule()
  • new atom() replaced by World::getInstance().createAtom() where appropriate.
  • Some DoLog()s added interfered with changes to the message produced by Log() << Verbose(.) << ...
  • DoLog() has been erroneously added to TestRunner.cpp as well, there cout is appropriate
  • ...

Additionally, there was a bug in atom::clone(), sort was set to atom::nr of the atom to clone not of the clone itself. This caused a failure of the fragmentation.

This merge has been fully checked from a clean build directory with subsequent configure,make all install and make check.
It configures, compiles and runs all test cases and the test suite without errors.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 19.5 KB
RevLine 
[57cfb7]1/*
2 * analysis.cpp
3 *
4 * Created on: Oct 13, 2009
5 * Author: heber
6 */
7
8#include <iostream>
9
10#include "analysis_correlation.hpp"
11#include "element.hpp"
[f78203]12#include "info.hpp"
[543ce4]13#include "log.hpp"
[57cfb7]14#include "molecule.hpp"
15#include "tesselation.hpp"
16#include "tesselationhelpers.hpp"
[f7b476]17#include "triangleintersectionlist.hpp"
[57cfb7]18#include "vector.hpp"
[e1900f]19#include "verbose.hpp"
[9565ec]20#include "World.hpp"
[57cfb7]21
22
23/** Calculates the pair correlation between given elements.
24 * Note given element order is unimportant (i.e. g(Si, O) === g(O, Si))
25 * \param *out output stream for debugging
[e1900f]26 * \param *molecules list of molecules structure
[57cfb7]27 * \param *type1 first element or NULL (if any element)
28 * \param *type2 second element or NULL (if any element)
29 * \return Map of doubles with values the pair of the two atoms.
30 */
[543ce4]31PairCorrelationMap *PairCorrelation(MoleculeListClass * const &molecules, const element * const type1, const element * const type2 )
[57cfb7]32{
[f78203]33 Info FunctionInfo(__func__);
[57cfb7]34 PairCorrelationMap *outmap = NULL;
35 double distance = 0.;
36
[e1900f]37 if (molecules->ListOfMolecules.empty()) {
[12f57b]38 DoeLog(1) && (eLog()<< Verbose(1) <<"No molecule given." << endl);
[57cfb7]39 return outmap;
40 }
41 outmap = new PairCorrelationMap;
[e1900f]42 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++)
43 if ((*MolWalker)->ActiveFlag) {
[12f57b]44 DoeLog(2) && (eLog()<< Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);
[e1900f]45 atom *Walker = (*MolWalker)->start;
46 while (Walker->next != (*MolWalker)->end) {
47 Walker = Walker->next;
[1f2e46]48 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl);
[e1900f]49 if ((type1 == NULL) || (Walker->type == type1)) {
50 for (MoleculeList::const_iterator MolOtherWalker = MolWalker; MolOtherWalker != molecules->ListOfMolecules.end(); MolOtherWalker++)
51 if ((*MolOtherWalker)->ActiveFlag) {
[1f2e46]52 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " << *MolOtherWalker << "." << endl);
[e1900f]53 atom *OtherWalker = (*MolOtherWalker)->start;
54 while (OtherWalker->next != (*MolOtherWalker)->end) { // only go up to Walker
55 OtherWalker = OtherWalker->next;
[1f2e46]56 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << *OtherWalker << "." << endl);
[e1900f]57 if (Walker->nr < OtherWalker->nr)
58 if ((type2 == NULL) || (OtherWalker->type == type2)) {
[075729]59 distance = Walker->node->PeriodicDistance(OtherWalker->node, World::getInstance().getDomain());
[543ce4]60 //Log() << Verbose(1) <<"Inserting " << *Walker << " and " << *OtherWalker << endl;
[e1900f]61 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> (Walker, OtherWalker) ) );
62 }
63 }
[57cfb7]64 }
[e1900f]65 }
[57cfb7]66 }
67 }
68
69 return outmap;
70};
71
[5f1d021]72/** Calculates the pair correlation between given elements.
73 * Note given element order is unimportant (i.e. g(Si, O) === g(O, Si))
74 * \param *out output stream for debugging
75 * \param *molecules list of molecules structure
76 * \param *type1 first element or NULL (if any element)
77 * \param *type2 second element or NULL (if any element)
78 * \param ranges[NDIM] interval boundaries for the periodic images to scan also
79 * \return Map of doubles with values the pair of the two atoms.
80 */
[543ce4]81PairCorrelationMap *PeriodicPairCorrelation(MoleculeListClass * const &molecules, const element * const type1, const element * const type2, const int ranges[NDIM] )
[5f1d021]82{
[f78203]83 Info FunctionInfo(__func__);
[5f1d021]84 PairCorrelationMap *outmap = NULL;
85 double distance = 0.;
86 int n[NDIM];
87 Vector checkX;
88 Vector periodicX;
89 int Othern[NDIM];
90 Vector checkOtherX;
91 Vector periodicOtherX;
92
93 if (molecules->ListOfMolecules.empty()) {
[12f57b]94 DoeLog(1) && (eLog()<< Verbose(1) <<"No molecule given." << endl);
[5f1d021]95 return outmap;
96 }
97 outmap = new PairCorrelationMap;
98 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++)
99 if ((*MolWalker)->ActiveFlag) {
[075729]100 double * FullMatrix = ReturnFullMatrixforSymmetric(World::getInstance().getDomain());
[4ef101]101 double * FullInverseMatrix = InverseMatrix(FullMatrix);
[12f57b]102 DoeLog(2) && (eLog()<< Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);
[5f1d021]103 atom *Walker = (*MolWalker)->start;
104 while (Walker->next != (*MolWalker)->end) {
105 Walker = Walker->next;
[1f2e46]106 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl);
[5f1d021]107 if ((type1 == NULL) || (Walker->type == type1)) {
108 periodicX.CopyVector(Walker->node);
109 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3
110 // go through every range in xyz and get distance
111 for (n[0]=-ranges[0]; n[0] <= ranges[0]; n[0]++)
112 for (n[1]=-ranges[1]; n[1] <= ranges[1]; n[1]++)
113 for (n[2]=-ranges[2]; n[2] <= ranges[2]; n[2]++) {
114 checkX.Init(n[0], n[1], n[2]);
115 checkX.AddVector(&periodicX);
116 checkX.MatrixMultiplication(FullMatrix);
117 for (MoleculeList::const_iterator MolOtherWalker = MolWalker; MolOtherWalker != molecules->ListOfMolecules.end(); MolOtherWalker++)
118 if ((*MolOtherWalker)->ActiveFlag) {
[1f2e46]119 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " << *MolOtherWalker << "." << endl);
[5f1d021]120 atom *OtherWalker = (*MolOtherWalker)->start;
121 while (OtherWalker->next != (*MolOtherWalker)->end) { // only go up to Walker
122 OtherWalker = OtherWalker->next;
[1f2e46]123 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << *OtherWalker << "." << endl);
[5f1d021]124 if (Walker->nr < OtherWalker->nr)
125 if ((type2 == NULL) || (OtherWalker->type == type2)) {
126 periodicOtherX.CopyVector(OtherWalker->node);
127 periodicOtherX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3
128 // go through every range in xyz and get distance
129 for (Othern[0]=-ranges[0]; Othern[0] <= ranges[0]; Othern[0]++)
130 for (Othern[1]=-ranges[1]; Othern[1] <= ranges[1]; Othern[1]++)
131 for (Othern[2]=-ranges[2]; Othern[2] <= ranges[2]; Othern[2]++) {
132 checkOtherX.Init(Othern[0], Othern[1], Othern[2]);
133 checkOtherX.AddVector(&periodicOtherX);
134 checkOtherX.MatrixMultiplication(FullMatrix);
135 distance = checkX.Distance(&checkOtherX);
[543ce4]136 //Log() << Verbose(1) <<"Inserting " << *Walker << " and " << *OtherWalker << endl;
[5f1d021]137 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> (Walker, OtherWalker) ) );
138 }
139 }
140 }
141 }
142 }
143 }
144 }
[4ef101]145 Free(&FullMatrix);
146 Free(&FullInverseMatrix);
[5f1d021]147 }
148
149 return outmap;
150};
151
[57cfb7]152/** Calculates the distance (pair) correlation between a given element and a point.
153 * \param *out output stream for debugging
[e1900f]154 * \param *molecules list of molecules structure
[57cfb7]155 * \param *type element or NULL (if any element)
156 * \param *point vector to the correlation point
157 * \return Map of dobules with values as pairs of atom and the vector
158 */
[543ce4]159CorrelationToPointMap *CorrelationToPoint(MoleculeListClass * const &molecules, const element * const type, const Vector *point )
[57cfb7]160{
[f78203]161 Info FunctionInfo(__func__);
[57cfb7]162 CorrelationToPointMap *outmap = NULL;
163 double distance = 0.;
164
[e1900f]165 if (molecules->ListOfMolecules.empty()) {
[1f2e46]166 DoLog(1) && (Log() << Verbose(1) <<"No molecule given." << endl);
[57cfb7]167 return outmap;
168 }
169 outmap = new CorrelationToPointMap;
[e1900f]170 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++)
171 if ((*MolWalker)->ActiveFlag) {
[1f2e46]172 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);
[e1900f]173 atom *Walker = (*MolWalker)->start;
174 while (Walker->next != (*MolWalker)->end) {
175 Walker = Walker->next;
[1f2e46]176 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl);
[e1900f]177 if ((type == NULL) || (Walker->type == type)) {
[075729]178 distance = Walker->node->PeriodicDistance(point, World::getInstance().getDomain());
[1f2e46]179 DoLog(4) && (Log() << Verbose(4) << "Current distance is " << distance << "." << endl);
[e1900f]180 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (Walker, point) ) );
181 }
182 }
[57cfb7]183 }
184
185 return outmap;
186};
187
[5f1d021]188/** Calculates the distance (pair) correlation between a given element, all its periodic images and a point.
189 * \param *out output stream for debugging
190 * \param *molecules list of molecules structure
191 * \param *type element or NULL (if any element)
192 * \param *point vector to the correlation point
193 * \param ranges[NDIM] interval boundaries for the periodic images to scan also
194 * \return Map of dobules with values as pairs of atom and the vector
195 */
[543ce4]196CorrelationToPointMap *PeriodicCorrelationToPoint(MoleculeListClass * const &molecules, const element * const type, const Vector *point, const int ranges[NDIM] )
[5f1d021]197{
[f78203]198 Info FunctionInfo(__func__);
[5f1d021]199 CorrelationToPointMap *outmap = NULL;
200 double distance = 0.;
201 int n[NDIM];
202 Vector periodicX;
203 Vector checkX;
204
205 if (molecules->ListOfMolecules.empty()) {
[1f2e46]206 DoLog(1) && (Log() << Verbose(1) <<"No molecule given." << endl);
[5f1d021]207 return outmap;
208 }
209 outmap = new CorrelationToPointMap;
210 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++)
211 if ((*MolWalker)->ActiveFlag) {
[075729]212 double * FullMatrix = ReturnFullMatrixforSymmetric(World::getInstance().getDomain());
[4ef101]213 double * FullInverseMatrix = InverseMatrix(FullMatrix);
[1f2e46]214 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);
[5f1d021]215 atom *Walker = (*MolWalker)->start;
216 while (Walker->next != (*MolWalker)->end) {
217 Walker = Walker->next;
[1f2e46]218 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl);
[5f1d021]219 if ((type == NULL) || (Walker->type == type)) {
220 periodicX.CopyVector(Walker->node);
221 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3
222 // go through every range in xyz and get distance
223 for (n[0]=-ranges[0]; n[0] <= ranges[0]; n[0]++)
224 for (n[1]=-ranges[1]; n[1] <= ranges[1]; n[1]++)
225 for (n[2]=-ranges[2]; n[2] <= ranges[2]; n[2]++) {
226 checkX.Init(n[0], n[1], n[2]);
227 checkX.AddVector(&periodicX);
228 checkX.MatrixMultiplication(FullMatrix);
229 distance = checkX.Distance(point);
[1f2e46]230 DoLog(4) && (Log() << Verbose(4) << "Current distance is " << distance << "." << endl);
[5f1d021]231 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (Walker, point) ) );
232 }
233 }
234 }
[4ef101]235 Free(&FullMatrix);
236 Free(&FullInverseMatrix);
[5f1d021]237 }
238
239 return outmap;
240};
241
[57cfb7]242/** Calculates the distance (pair) correlation between a given element and a surface.
243 * \param *out output stream for debugging
[e1900f]244 * \param *molecules list of molecules structure
[57cfb7]245 * \param *type element or NULL (if any element)
246 * \param *Surface pointer to Tesselation class surface
247 * \param *LC LinkedCell structure to quickly find neighbouring atoms
248 * \return Map of doubles with values as pairs of atom and the BoundaryTriangleSet that's closest
249 */
[543ce4]250CorrelationToSurfaceMap *CorrelationToSurface(MoleculeListClass * const &molecules, const element * const type, const Tesselation * const Surface, const LinkedCell *LC )
[57cfb7]251{
[f78203]252 Info FunctionInfo(__func__);
[57cfb7]253 CorrelationToSurfaceMap *outmap = NULL;
[20895b]254 double distance = 0;
[57cfb7]255 class BoundaryTriangleSet *triangle = NULL;
256 Vector centroid;
[5f1d021]257
258 if ((Surface == NULL) || (LC == NULL) || (molecules->ListOfMolecules.empty())) {
[12f57b]259 DoeLog(1) && (eLog()<< Verbose(1) <<"No Tesselation, no LinkedCell or no molecule given." << endl);
[5f1d021]260 return outmap;
261 }
262 outmap = new CorrelationToSurfaceMap;
263 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++)
264 if ((*MolWalker)->ActiveFlag) {
[1f2e46]265 DoLog(1) && (Log() << Verbose(1) << "Current molecule is " << (*MolWalker)->name << "." << endl);
[5f1d021]266 atom *Walker = (*MolWalker)->start;
267 while (Walker->next != (*MolWalker)->end) {
268 Walker = Walker->next;
[f7b476]269 //Log() << Verbose(1) << "Current atom is " << *Walker << "." << endl;
[5f1d021]270 if ((type == NULL) || (Walker->type == type)) {
[f7b476]271 TriangleIntersectionList Intersections(Walker->node,Surface,LC);
272 distance = Intersections.GetSmallestDistance();
273 triangle = Intersections.GetClosestTriangle();
274 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(distance, pair<atom *, BoundaryTriangleSet*> (Walker, triangle) ) );
[5f1d021]275 }
276 }
[f7b476]277 } else
[1f2e46]278 DoLog(1) && (Log() << Verbose(1) << "molecule " << (*MolWalker)->name << " is not active." << endl);
[5f1d021]279
280 return outmap;
281};
282
283/** Calculates the distance (pair) correlation between a given element, all its periodic images and and a surface.
284 * Note that we also put all periodic images found in the cells given by [ -ranges[i], ranges[i] ] and i=0,...,NDIM-1.
285 * I.e. We multiply the atom::node with the inverse of the domain matrix, i.e. transform it to \f$[0,0^3\f$, then add per
286 * axis an integer from [ -ranges[i], ranges[i] ] onto it and multiply with the domain matrix to bring it back into
287 * the real space. Then, we Tesselation::FindClosestTriangleToPoint() and DistanceToTrianglePlane().
288 * \param *out output stream for debugging
289 * \param *molecules list of molecules structure
290 * \param *type element or NULL (if any element)
291 * \param *Surface pointer to Tesselation class surface
292 * \param *LC LinkedCell structure to quickly find neighbouring atoms
293 * \param ranges[NDIM] interval boundaries for the periodic images to scan also
294 * \return Map of doubles with values as pairs of atom and the BoundaryTriangleSet that's closest
295 */
[543ce4]296CorrelationToSurfaceMap *PeriodicCorrelationToSurface(MoleculeListClass * const &molecules, const element * const type, const Tesselation * const Surface, const LinkedCell *LC, const int ranges[NDIM] )
[5f1d021]297{
[f78203]298 Info FunctionInfo(__func__);
[5f1d021]299 CorrelationToSurfaceMap *outmap = NULL;
300 double distance = 0;
301 class BoundaryTriangleSet *triangle = NULL;
302 Vector centroid;
[20895b]303 int n[NDIM];
304 Vector periodicX;
305 Vector checkX;
[57cfb7]306
[e1900f]307 if ((Surface == NULL) || (LC == NULL) || (molecules->ListOfMolecules.empty())) {
[1f2e46]308 DoLog(1) && (Log() << Verbose(1) <<"No Tesselation, no LinkedCell or no molecule given." << endl);
[57cfb7]309 return outmap;
310 }
311 outmap = new CorrelationToSurfaceMap;
[478683]312 double ShortestDistance = 0.;
313 BoundaryTriangleSet *ShortestTriangle = NULL;
[e1900f]314 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++)
315 if ((*MolWalker)->ActiveFlag) {
[075729]316 double * FullMatrix = ReturnFullMatrixforSymmetric(World::getInstance().getDomain());
[4ef101]317 double * FullInverseMatrix = InverseMatrix(FullMatrix);
[1f2e46]318 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);
[e1900f]319 atom *Walker = (*MolWalker)->start;
320 while (Walker->next != (*MolWalker)->end) {
321 Walker = Walker->next;
[1f2e46]322 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl);
[e1900f]323 if ((type == NULL) || (Walker->type == type)) {
[20895b]324 periodicX.CopyVector(Walker->node);
325 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3
326 // go through every range in xyz and get distance
[478683]327 ShortestDistance = -1.;
[20895b]328 for (n[0]=-ranges[0]; n[0] <= ranges[0]; n[0]++)
329 for (n[1]=-ranges[1]; n[1] <= ranges[1]; n[1]++)
330 for (n[2]=-ranges[2]; n[2] <= ranges[2]; n[2]++) {
331 checkX.Init(n[0], n[1], n[2]);
332 checkX.AddVector(&periodicX);
333 checkX.MatrixMultiplication(FullMatrix);
[12f57b]334 TriangleIntersectionList Intersections(&checkX,Surface,LC);
335 distance = Intersections.GetSmallestDistance();
336 triangle = Intersections.GetClosestTriangle();
[478683]337 if ((ShortestDistance == -1.) || (distance < ShortestDistance)) {
338 ShortestDistance = distance;
339 ShortestTriangle = triangle;
[20895b]340 }
[478683]341 }
342 // insert
343 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(ShortestDistance, pair<atom *, BoundaryTriangleSet*> (Walker, ShortestTriangle) ) );
344 //Log() << Verbose(1) << "INFO: Inserting " << Walker << " with distance " << ShortestDistance << " to " << *ShortestTriangle << "." << endl;
[e1900f]345 }
[57cfb7]346 }
[4ef101]347 Free(&FullMatrix);
348 Free(&FullInverseMatrix);
[57cfb7]349 }
350
351 return outmap;
352};
353
[dd3a80]354/** Returns the index of the bin for a given value.
[57cfb7]355 * \param value value whose bin to look for
356 * \param BinWidth width of bin
357 * \param BinStart first bin
358 */
[dd3a80]359int GetBin ( const double value, const double BinWidth, const double BinStart )
[57cfb7]360{
[f78203]361 Info FunctionInfo(__func__);
[dd3a80]362 int bin =(int) (floor((value - BinStart)/BinWidth));
363 return (bin);
[57cfb7]364};
365
366
367/** Prints correlation (double, int) pairs to file.
368 * \param *file file to write to
369 * \param *map map to write
370 */
[e1900f]371void OutputCorrelation( ofstream * const file, const BinPairMap * const map )
[57cfb7]372{
[f78203]373 Info FunctionInfo(__func__);
[1c7aed]374 *file << "BinStart\tCount" << endl;
[a9b2a0a]375 for (BinPairMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
[850e50]376 *file << setprecision(8) << runner->first << "\t" << runner->second << endl;
[57cfb7]377 }
378};
[e72287]379
380/** Prints correlation (double, (atom*,atom*) ) pairs to file.
381 * \param *file file to write to
382 * \param *map map to write
383 */
[e1900f]384void OutputPairCorrelation( ofstream * const file, const PairCorrelationMap * const map )
[e72287]385{
[f78203]386 Info FunctionInfo(__func__);
[1c7aed]387 *file << "BinStart\tAtom1\tAtom2" << endl;
[a9b2a0a]388 for (PairCorrelationMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
[850e50]389 *file << setprecision(8) << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl;
[e72287]390 }
391};
392
393/** Prints correlation (double, int) pairs to file.
394 * \param *file file to write to
395 * \param *map map to write
396 */
[e1900f]397void OutputCorrelationToPoint( ofstream * const file, const CorrelationToPointMap * const map )
[e72287]398{
[f78203]399 Info FunctionInfo(__func__);
[1c7aed]400 *file << "BinStart\tAtom::x[i]-point.x[i]" << endl;
[a9b2a0a]401 for (CorrelationToPointMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
[e72287]402 *file << runner->first;
403 for (int i=0;i<NDIM;i++)
[850e50]404 *file << "\t" << setprecision(8) << (runner->second.first->node->x[i] - runner->second.second->x[i]);
[e72287]405 *file << endl;
406 }
407};
408
409/** Prints correlation (double, int) pairs to file.
410 * \param *file file to write to
411 * \param *map map to write
412 */
[e1900f]413void OutputCorrelationToSurface( ofstream * const file, const CorrelationToSurfaceMap * const map )
[e72287]414{
[f78203]415 Info FunctionInfo(__func__);
[1c7aed]416 *file << "BinStart\tTriangle" << endl;
[f7b476]417 if (!map->empty())
418 for (CorrelationToSurfaceMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
419 *file << setprecision(8) << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl;
420 }
[e72287]421};
422
Note: See TracBrowser for help on using the repository browser.