Changes in src/analysis_correlation.cpp [b34306:bd61b41]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/analysis_correlation.cpp
rb34306 rbd61b41 15 15 #include "tesselation.hpp" 16 16 #include "tesselationhelpers.hpp" 17 #include "triangleintersectionlist.hpp"18 17 #include "vector.hpp" 19 18 #include "verbose.hpp" 20 #include "World.hpp"21 19 22 20 … … 57 55 if (Walker->nr < OtherWalker->nr) 58 56 if ((type2 == NULL) || (OtherWalker->type == type2)) { 59 distance = Walker->node->PeriodicDistance(OtherWalker->node, World::get()->cell_size);57 distance = Walker->node->PeriodicDistance(OtherWalker->node, (*MolWalker)->cell_size); 60 58 //Log() << Verbose(1) <<"Inserting " << *Walker << " and " << *OtherWalker << endl; 61 59 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> (Walker, OtherWalker) ) ); … … 98 96 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) 99 97 if ((*MolWalker)->ActiveFlag) { 100 double * FullMatrix = ReturnFullMatrixforSymmetric( World::get()->cell_size);98 double * FullMatrix = ReturnFullMatrixforSymmetric((*MolWalker)->cell_size); 101 99 double * FullInverseMatrix = InverseMatrix(FullMatrix); 102 100 eLog() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl; … … 176 174 Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl; 177 175 if ((type == NULL) || (Walker->type == type)) { 178 distance = Walker->node->PeriodicDistance(point, World::get()->cell_size);176 distance = Walker->node->PeriodicDistance(point, (*MolWalker)->cell_size); 179 177 Log() << Verbose(4) << "Current distance is " << distance << "." << endl; 180 178 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (Walker, point) ) ); … … 210 208 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) 211 209 if ((*MolWalker)->ActiveFlag) { 212 double * FullMatrix = ReturnFullMatrixforSymmetric( World::get()->cell_size);210 double * FullMatrix = ReturnFullMatrixforSymmetric((*MolWalker)->cell_size); 213 211 double * FullInverseMatrix = InverseMatrix(FullMatrix); 214 212 Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl; … … 257 255 258 256 if ((Surface == NULL) || (LC == NULL) || (molecules->ListOfMolecules.empty())) { 259 eLog() << Verbose(1) <<"No Tesselation, no LinkedCell or no molecule given." << endl;257 Log() << Verbose(1) <<"No Tesselation, no LinkedCell or no molecule given." << endl; 260 258 return outmap; 261 259 } … … 263 261 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) 264 262 if ((*MolWalker)->ActiveFlag) { 265 Log() << Verbose( 1) << "Current molecule is " << (*MolWalker)->name<< "." << endl;266 atom *Walker = (*MolWalker)->start; 267 while (Walker->next != (*MolWalker)->end) { 268 Walker = Walker->next; 269 //Log() << Verbose(1) << "Current atom is " << *Walker << "." << endl;263 Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl; 264 atom *Walker = (*MolWalker)->start; 265 while (Walker->next != (*MolWalker)->end) { 266 Walker = Walker->next; 267 Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl; 270 268 if ((type == NULL) || (Walker->type == type)) { 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) ) ); 275 } 276 } 277 } else 278 Log() << Verbose(1) << "molecule " << (*MolWalker)->name << " is not active." << endl; 279 269 triangle = Surface->FindClosestTriangleToPoint(Walker->node, LC ); 270 if (triangle != NULL) { 271 distance = DistanceToTrianglePlane(Walker->node, triangle); 272 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(distance, pair<atom *, BoundaryTriangleSet*> (Walker, triangle) ) ); 273 } 274 } 275 } 276 } 280 277 281 278 return outmap; … … 311 308 } 312 309 outmap = new CorrelationToSurfaceMap; 313 double ShortestDistance = 0.; 314 BoundaryTriangleSet *ShortestTriangle = NULL; 315 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) 316 if ((*MolWalker)->ActiveFlag) { 317 double * FullMatrix = ReturnFullMatrixforSymmetric(World::get()->cell_size); 310 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) 311 if ((*MolWalker)->ActiveFlag) { 312 double * FullMatrix = ReturnFullMatrixforSymmetric((*MolWalker)->cell_size); 318 313 double * FullInverseMatrix = InverseMatrix(FullMatrix); 319 314 Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl; … … 326 321 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3 327 322 // go through every range in xyz and get distance 328 ShortestDistance = -1.;329 323 for (n[0]=-ranges[0]; n[0] <= ranges[0]; n[0]++) 330 324 for (n[1]=-ranges[1]; n[1] <= ranges[1]; n[1]++) … … 333 327 checkX.AddVector(&periodicX); 334 328 checkX.MatrixMultiplication(FullMatrix); 335 triangle = Surface->FindClosestTriangleToVector(&checkX, LC); 336 distance = Surface->GetDistanceSquaredToTriangle(checkX, triangle); 337 if ((ShortestDistance == -1.) || (distance < ShortestDistance)) { 338 ShortestDistance = distance; 339 ShortestTriangle = triangle; 329 triangle = Surface->FindClosestTriangleToPoint(&checkX, LC ); 330 if (triangle != NULL) { 331 distance = DistanceToTrianglePlane(&checkX, triangle); 332 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(distance, pair<atom *, BoundaryTriangleSet*> (Walker, triangle) ) ); 340 333 } 341 } 342 // insert 343 ShortestDistance = sqrt(ShortestDistance); 344 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(ShortestDistance, pair<atom *, BoundaryTriangleSet*> (Walker, ShortestTriangle) ) ); 345 //Log() << Verbose(1) << "INFO: Inserting " << Walker << " with distance " << ShortestDistance << " to " << *ShortestTriangle << "." << endl; 334 } 346 335 } 347 336 } … … 353 342 }; 354 343 355 /** Returns the startof the bin for a given value.344 /** Returns the index of the bin for a given value. 356 345 * \param value value whose bin to look for 357 346 * \param BinWidth width of bin 358 347 * \param BinStart first bin 359 348 */ 360 doubleGetBin ( const double value, const double BinWidth, const double BinStart )361 { 362 Info FunctionInfo(__func__); 363 double bin =(double) (floor((value - BinStart)/BinWidth));364 return (bin *BinWidth+BinStart);349 int GetBin ( const double value, const double BinWidth, const double BinStart ) 350 { 351 Info FunctionInfo(__func__); 352 int bin =(int) (floor((value - BinStart)/BinWidth)); 353 return (bin); 365 354 }; 366 355 … … 373 362 { 374 363 Info FunctionInfo(__func__); 375 *file << " BinStart\tCount" << endl;364 *file << "# BinStart\tCount" << endl; 376 365 for (BinPairMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 377 *file << setprecision(8) <<runner->first << "\t" << runner->second << endl;366 *file << runner->first << "\t" << runner->second << endl; 378 367 } 379 368 }; … … 386 375 { 387 376 Info FunctionInfo(__func__); 388 *file << " BinStart\tAtom1\tAtom2" << endl;377 *file << "# BinStart\tAtom1\tAtom2" << endl; 389 378 for (PairCorrelationMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 390 *file << setprecision(8) <<runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl;379 *file << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl; 391 380 } 392 381 }; … … 399 388 { 400 389 Info FunctionInfo(__func__); 401 *file << " BinStart\tAtom::x[i]-point.x[i]" << endl;390 *file << "# BinStart\tAtom::x[i]-point.x[i]" << endl; 402 391 for (CorrelationToPointMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 403 392 *file << runner->first; 404 393 for (int i=0;i<NDIM;i++) 405 *file << "\t" << setprecision(8) <<(runner->second.first->node->x[i] - runner->second.second->x[i]);394 *file << "\t" << (runner->second.first->node->x[i] - runner->second.second->x[i]); 406 395 *file << endl; 407 396 } … … 415 404 { 416 405 Info FunctionInfo(__func__); 417 *file << "BinStart\tTriangle" << endl; 418 if (!map->empty()) 419 for (CorrelationToSurfaceMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 420 *file << setprecision(8) << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl; 421 } 422 }; 423 406 *file << "# BinStart\tTriangle" << endl; 407 for (CorrelationToSurfaceMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 408 *file << runner->first << "\t" << *(runner->second.second) << endl; 409 } 410 }; 411
Note:
See TracChangeset
for help on using the changeset viewer.