Changeset 47d041 for src/Analysis
- Timestamp:
- Nov 3, 2011, 7:44:01 PM (13 years ago)
- Branches:
- 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
- Children:
- 41a467
- Parents:
- 50e4e5
- git-author:
- Frederik Heber <heber@…> (10/27/11 11:53:58)
- git-committer:
- Frederik Heber <heber@…> (11/03/11 19:44:01)
- Location:
- src/Analysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Analysis/analysis_bonds.cpp
r50e4e5 r47d041 54 54 } 55 55 if (((int)Mean % 2) != 0) 56 DoeLog(1) && (eLog()<< Verbose(1) << "Something is wrong with the bond structure, the number of bonds is not even!" << endl);56 ELOG(1, "Something is wrong with the bond structure, the number of bonds is not even!"); 57 57 Mean /= (double)AtomCount; 58 58 }; … … 182 182 Interface2Flag = Interface2Flag || (OtherAtom->getType() == Interface2Element); 183 183 } 184 DoLog(1) && (Log() << Verbose(1) << "Otherangle is " << Otherangle << " for " << OtherHydrogens << " hydrogens." << endl);184 LOG(1, "Otherangle is " << Otherangle << " for " << OtherHydrogens << " hydrogens."); 185 185 switch (OtherHydrogens) { 186 186 case 0: … … 204 204 // check angle 205 205 if (CheckHydrogenBridgeBondAngle(*Walker, OtherAtom, *Runner)) { 206 DoLog(1) && (Log() << Verbose(1) << (*Walker)->getName() << ", " << OtherAtom->getName() << " and " << (*Runner)->getName() << " has a hydrogen bridge bond with distance " << sqrt(distance) << " and angle " << CalculateAngle(OtherAtom->getPosition(), (*Walker)->getPosition(), (*Runner)->getPosition())*(180./M_PI) << "." << endl);206 LOG(1, (*Walker)->getName() << ", " << OtherAtom->getName() << " and " << (*Runner)->getName() << " has a hydrogen bridge bond with distance " << sqrt(distance) << " and angle " << CalculateAngle(OtherAtom->getPosition(), (*Walker)->getPosition(), (*Runner)->getPosition())*(180./M_PI) << "."); 207 207 count++; 208 208 break; … … 242 242 if (((OtherAtom->getType() == first) || (OtherAtom->getType() == second)) && (theAtom->getNr() < OtherAtom->getNr())) { 243 243 count++; 244 DoLog(1) && (Log() << Verbose(1) << *first << "-" << *second << " bond found between " << *Walker << " and " << *OtherAtom << "." << endl);244 LOG(1, *first << "-" << *second << " bond found between " << *Walker << " and " << *OtherAtom << "."); 245 245 } 246 246 } … … 292 292 if (result) { // check results 293 293 count++; 294 DoLog(1) && (Log() << Verbose(1) << *first << "-" << *second << "-" << *third << " bond found at " << *Walker << "." << endl);294 LOG(1, *first << "-" << *second << "-" << *third << " bond found at " << *Walker << "."); 295 295 } 296 296 } -
src/Analysis/analysis_correlation.cpp
r50e4e5 r47d041 93 93 if (SumOfVectors != 0) 94 94 DipoleVector *= 1./(double)SumOfVectors; 95 DoLog(1) && (Log() << Verbose(1) << "Resulting dipole vector is " << DipoleVector << std::endl);95 LOG(1, "Resulting dipole vector is " << DipoleVector); 96 96 97 97 return DipoleVector; … … 248 248 // 249 249 if (molecules.empty()) { 250 DoeLog(1) && (eLog()<< Verbose(1) <<"No molecule given." << endl);250 ELOG(1, "No molecule given."); 251 251 return outmap; 252 252 } … … 254 254 for (std::vector<molecule *>::const_iterator MolWalker = molecules.begin(); 255 255 MolWalker != molecules.end(); ++MolWalker) { 256 DoLog(2) && (Log()<< Verbose(2) << "Current molecule is " 257 << (*MolWalker)->getId() << "." << endl); 256 LOG(2, "INFO: Current molecule is " << (*MolWalker)->getId() << "."); 258 257 const Vector Dipole = getDipole((*MolWalker)->begin(), (*MolWalker)->end()); 259 258 std::vector<molecule *>::const_iterator MolOtherWalker = MolWalker; … … 261 260 MolOtherWalker != molecules.end(); 262 261 ++MolOtherWalker) { 263 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " 264 << (*MolOtherWalker)->getId() << "." << endl); 262 LOG(2, "INFO: Current other molecule is " << (*MolOtherWalker)->getId() << "."); 265 263 const Vector OtherDipole = getDipole((*MolOtherWalker)->begin(), (*MolOtherWalker)->end()); 266 264 const double angle = Dipole.Angle(OtherDipole) * (180./M_PI); 267 DoLog(1) && (Log() << Verbose(1) << "Angle is " << angle << "." << endl);265 LOG(1, "Angle is " << angle << "."); 268 266 outmap->insert ( make_pair (angle, make_pair ((*MolWalker), (*MolOtherWalker)) ) ); 269 267 } … … 287 285 288 286 if (molecules.empty()) { 289 DoeLog(1) && (eLog()<< Verbose(1) <<"No molecule given." << endl);287 ELOG(1, "No molecule given."); 290 288 return outmap; 291 289 } … … 300 298 if (type1 != type2) { 301 299 PairsOfElements.insert( make_pair(*type1,*type2) ); 302 DoLog(1) && (Log() << Verbose(1) << "Creating element pair " << *(*type1) << " and " << *(*type2) << "." << endl);300 LOG(1, "Creating element pair " << *(*type1) << " and " << *(*type2) << "."); 303 301 } 304 302 } else if (elements.size() == 1) { // one to all are valid … … 312 310 outmap = new PairCorrelationMap; 313 311 for (std::vector<molecule *>::const_iterator MolWalker = molecules.begin(); MolWalker != molecules.end(); MolWalker++){ 314 DoLog(2) && (Log()<< Verbose(2) << "Current molecule is " << (*MolWalker)->getName() << "." << endl);312 LOG(2, "Current molecule is " << (*MolWalker)->getName() << "."); 315 313 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 316 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl);314 LOG(3, "Current atom is " << **iter << "."); 317 315 for (std::vector<molecule *>::const_iterator MolOtherWalker = MolWalker; MolOtherWalker != molecules.end(); MolOtherWalker++){ 318 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " << (*MolOtherWalker)->getName() << "." << endl);316 LOG(2, "Current other molecule is " << (*MolOtherWalker)->getName() << "."); 319 317 for (molecule::const_iterator runner = (*MolOtherWalker)->begin(); runner != (*MolOtherWalker)->end(); ++runner) { 320 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << **runner << "." << endl);318 LOG(3, "Current otheratom is " << **runner << "."); 321 319 if ((*iter)->getId() < (*runner)->getId()){ 322 320 for (set <pair<const element *, const element *> >::iterator PairRunner = PairsOfElements.begin(); PairRunner != PairsOfElements.end(); ++PairRunner) 323 321 if ((PairRunner->first == (**iter).getType()) && (PairRunner->second == (**runner).getType())) { 324 322 distance = domain.periodicDistance((*iter)->getPosition(),(*runner)->getPosition()); 325 //L og() << Verbose(1) <<"Inserting " << *(*iter) << " and " << *(*runner) << endl;323 //LOG(1, "Inserting " << *(*iter) << " and " << *(*runner)); 326 324 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> ((*iter), (*runner)) ) ); 327 325 } … … 354 352 355 353 if (molecules.empty()) { 356 DoeLog(1) && (eLog()<< Verbose(1) <<"No molecule given." << endl);354 ELOG(1, "No molecule given."); 357 355 return outmap; 358 356 } … … 367 365 if (type1 != type2) { 368 366 PairsOfElements.insert( make_pair(*type1,*type2) ); 369 DoLog(1) && (Log() << Verbose(1) << "Creating element pair " << *(*type1) << " and " << *(*type2) << "." << endl);367 LOG(1, "Creating element pair " << *(*type1) << " and " << *(*type2) << "."); 370 368 } 371 369 } else if (elements.size() == 1) { // one to all are valid … … 381 379 RealSpaceMatrix FullMatrix = World::getInstance().getDomain().getM(); 382 380 RealSpaceMatrix FullInverseMatrix = World::getInstance().getDomain().getMinv(); 383 DoLog(2) && (Log()<< Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);381 LOG(2, "Current molecule is " << *MolWalker << "."); 384 382 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 385 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl);383 LOG(3, "Current atom is " << **iter << "."); 386 384 periodicX = FullInverseMatrix * ((*iter)->getPosition()); // x now in [0,1)^3 387 385 // go through every range in xyz and get distance … … 391 389 checkX = FullMatrix * (Vector(n[0], n[1], n[2]) + periodicX); 392 390 for (std::vector<molecule *>::const_iterator MolOtherWalker = MolWalker; MolOtherWalker != molecules.end(); MolOtherWalker++){ 393 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " << *MolOtherWalker << "." << endl);391 LOG(2, "Current other molecule is " << *MolOtherWalker << "."); 394 392 for (molecule::const_iterator runner = (*MolOtherWalker)->begin(); runner != (*MolOtherWalker)->end(); ++runner) { 395 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << **runner << "." << endl);393 LOG(3, "Current otheratom is " << **runner << "."); 396 394 if ((*iter)->getId() < (*runner)->getId()){ 397 395 for (set <pair<const element *,const element *> >::iterator PairRunner = PairsOfElements.begin(); PairRunner != PairsOfElements.end(); ++PairRunner) … … 404 402 checkOtherX = FullMatrix * (Vector(Othern[0], Othern[1], Othern[2]) + periodicOtherX); 405 403 distance = checkX.distance(checkOtherX); 406 //L og() << Verbose(1) <<"Inserting " << *(*iter) << " and " << *(*runner) << endl;404 //LOG(1, "Inserting " << *(*iter) << " and " << *(*runner)); 407 405 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> ((*iter), (*runner)) ) ); 408 406 } … … 432 430 433 431 if (molecules.empty()) { 434 DoLog(1) && (Log() << Verbose(1) <<"No molecule given." << endl);432 LOG(1, "No molecule given."); 435 433 return outmap; 436 434 } … … 439 437 outmap = new CorrelationToPointMap; 440 438 for (std::vector<molecule *>::const_iterator MolWalker = molecules.begin(); MolWalker != molecules.end(); MolWalker++) { 441 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);439 LOG(2, "Current molecule is " << *MolWalker << "."); 442 440 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 443 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl);441 LOG(3, "Current atom is " << **iter << "."); 444 442 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 445 443 if ((*type == NULL) || ((*iter)->getType() == *type)) { 446 444 distance = domain.periodicDistance((*iter)->getPosition(),*point); 447 DoLog(4) && (Log() << Verbose(4) << "Current distance is " << distance << "." << endl);445 LOG(4, "Current distance is " << distance << "."); 448 446 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> ((*iter), point) ) ); 449 447 } … … 471 469 472 470 if (molecules.empty()) { 473 DoLog(1) && (Log() << Verbose(1) <<"No molecule given." << endl);471 LOG(1, "No molecule given."); 474 472 return outmap; 475 473 } … … 480 478 RealSpaceMatrix FullMatrix = World::getInstance().getDomain().getM(); 481 479 RealSpaceMatrix FullInverseMatrix = World::getInstance().getDomain().getMinv(); 482 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);480 LOG(2, "Current molecule is " << *MolWalker << "."); 483 481 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 484 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl);482 LOG(3, "Current atom is " << **iter << "."); 485 483 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 486 484 if ((*type == NULL) || ((*iter)->getType() == *type)) { … … 492 490 checkX = FullMatrix * (Vector(n[0], n[1], n[2]) + periodicX); 493 491 distance = checkX.distance(*point); 494 DoLog(4) && (Log() << Verbose(4) << "Current distance is " << distance << "." << endl);492 LOG(4, "Current distance is " << distance << "."); 495 493 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (*iter, point) ) ); 496 494 } … … 518 516 519 517 if ((Surface == NULL) || (LC == NULL) || (molecules.empty())) { 520 DoeLog(1) && (eLog()<< Verbose(1) <<"No Tesselation, no LinkedCell or no molecule given." << endl);518 ELOG(1, "No Tesselation, no LinkedCell or no molecule given."); 521 519 return outmap; 522 520 } … … 525 523 outmap = new CorrelationToSurfaceMap; 526 524 for (std::vector<molecule *>::const_iterator MolWalker = molecules.begin(); MolWalker != molecules.end(); MolWalker++) { 527 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << (*MolWalker)->name << "." << endl);525 LOG(2, "Current molecule is " << (*MolWalker)->name << "."); 528 526 if ((*MolWalker)->empty()) 529 DoLog(2) && (2) && (Log() << Verbose(2) << "\t is empty." << endl);527 LOG(2, "\t is empty."); 530 528 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 531 DoLog(3) && (Log() << Verbose(3) << "\tCurrent atom is " << *(*iter) << "." << endl);529 LOG(3, "\tCurrent atom is " << *(*iter) << "."); 532 530 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 533 531 if ((*type == NULL) || ((*iter)->getType() == *type)) { … … 567 565 568 566 if ((Surface == NULL) || (LC == NULL) || (molecules.empty())) { 569 DoLog(1) && (Log() << Verbose(1) <<"No Tesselation, no LinkedCell or no molecule given." << endl);567 LOG(1, "No Tesselation, no LinkedCell or no molecule given."); 570 568 return outmap; 571 569 } … … 578 576 RealSpaceMatrix FullMatrix = World::getInstance().getDomain().getM(); 579 577 RealSpaceMatrix FullInverseMatrix = World::getInstance().getDomain().getMinv(); 580 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl);578 LOG(2, "Current molecule is " << *MolWalker << "."); 581 579 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 582 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl);580 LOG(3, "Current atom is " << **iter << "."); 583 581 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 584 582 if ((*type == NULL) || ((*iter)->getType() == *type)) { … … 600 598 // insert 601 599 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(ShortestDistance, pair<atom *, BoundaryTriangleSet*> (*iter, ShortestTriangle) ) ); 602 //L og() << Verbose(1) << "INFO: Inserting " << Walker << " with distance " << ShortestDistance << " to " << *ShortestTriangle << "." << endl;600 //LOG(1, "INFO: Inserting " << Walker << " with distance " << ShortestDistance << " to " << *ShortestTriangle << "."); 603 601 } 604 602 } -
src/Analysis/analysis_correlation.hpp
r50e4e5 r47d041 98 98 99 99 if (map == NULL) { 100 DoeLog(0) && (eLog()<< Verbose(0) << "Nothing to min/max, map is NULL!" << endl);100 ELOG(0, "Nothing to min/max, map is NULL!"); 101 101 performCriticalExit(); 102 102 return; … … 136 136 137 137 if (map == NULL) { 138 DoeLog(0) && (eLog()<< Verbose(0) << "Nothing to bin, is NULL!" << endl);138 ELOG(0, "Nothing to bin, is NULL!"); 139 139 performCriticalExit(); 140 140 return outmap;
Note:
See TracChangeset
for help on using the changeset viewer.