Changeset 47d041 for src/Dynamics


Ignore:
Timestamp:
Nov 3, 2011, 7:44:01 PM (13 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

HUGE: Removed all calls to Log(), eLog(), replaced by LOG() and ELOG().

  • Replaced DoLog(.) && (Log() << Verbose(.) << ... << std::endl) by Log(., ...).
  • Replaced Log() << Verbose(.) << .. << by Log(., ...)
  • on multiline used stringstream to generate and message which was finally used in LOG(., output.str())
  • there should be no more occurence of Log(). LOG() and ELOG() must be used instead.
  • Eventually, this will allow for storing all errors and re-printing them on program exit which would be very helpful to ascertain error-free runs for the user.
Location:
src/Dynamics
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Dynamics/MinimiseConstrainedPotential.cpp

    r50e4e5 r47d041  
    7373  PenaltyConstants[2] = 1e+7;    // just a huge penalty
    7474  // generate the distance list
    75   DoLog(1) && (Log() << Verbose(1) << "Allocating, initializting and filling the distance list ... " << endl);
     75  LOG(1, "Allocating, initializting and filling the distance list ... ");
    7676  FillDistanceList();
    7777
     
    8080
    8181  // make the PermutationMap injective by checking whether we have a non-zero constants[2] term in it
    82   DoLog(1) && (Log() << Verbose(1) << "Making the PermutationMap injective ... " << endl);
     82  LOG(1, "Making the PermutationMap injective ... ");
    8383  MakeInjectivePermutation();
    8484  DoubleList.clear();
    8585
    8686  // argument minimise the constrained potential in this injective PermutationMap
    87   DoLog(1) && (Log() << Verbose(1) << "Argument minimising the PermutationMap." << endl);
     87  LOG(1, "Argument minimising the PermutationMap.");
    8888  OldPotential = 1e+10;
    8989  round = 0;
    9090  do {
    91     DoLog(2) && (Log() << Verbose(2) << "Starting round " << ++round << ", at current potential " << OldPotential << " ... " << endl);
     91    LOG(2, "Starting round " << ++round << ", at current potential " << OldPotential << " ... ");
    9292    OlderPotential = OldPotential;
    9393    molecule::atomSet::const_iterator iter;
     
    104104          break;
    105105        }
    106         //Log() << Verbose(2) << "Current Walker: " << *(*iter) << " with old/next candidate " << *Sprinter << "/" << *DistanceIterators[(*iter)]->second << "." << endl;
     106        //LOG(2, "Current Walker: " << *(*iter) << " with old/next candidate " << *Sprinter << "/" << *DistanceIterators[(*iter)]->second << ".");
    107107        // find source of the new target
    108108        molecule::atomSet::const_iterator runner = atoms.begin();
    109109        for (; runner != atoms.end(); ++runner) { // find the source whose toes we might be stepping on (Walker's new target should be in use by another already)
    110110          if (PermutationMap[(*runner)] == DistanceIterators[(*iter)]->second) {
    111             //Log() << Verbose(2) << "Found the corresponding owner " << *(*runner) << " to " << *PermutationMap[(*runner)] << "." << endl;
     111            //LOG(2, "Found the corresponding owner " << *(*runner) << " to " << *PermutationMap[(*runner)] << ".");
    112112            break;
    113113          }
     
    120120              break;
    121121          if (Rider != DistanceList[(*runner)].end()) { // if we have found one
    122             //Log() << Verbose(2) << "Current Other: " << *(*runner) << " with old/next candidate " << *PermutationMap[(*runner)] << "/" << *Rider->second << "." << endl;
     122            //LOG(2, "Current Other: " << *(*runner) << " with old/next candidate " << *PermutationMap[(*runner)] << "/" << *Rider->second << ".");
    123123            // exchange both
    124124            PermutationMap[(*iter)] = DistanceIterators[(*iter)]->second; // put next farther distance into PermutationMap
     
    127127            PrintPermutationMap();
    128128            // calculate the new potential
    129             //Log() << Verbose(2) << "Checking new potential ..." << endl;
     129            //LOG(2, "Checking new potential ...");
    130130            Potential = ConstrainedPotential();
    131131            if (Potential > OldPotential) { // we made everything worse! Undo ...
    132               //Log() << Verbose(3) << "Nay, made the potential worse: " << Potential << " vs. " << OldPotential << "!" << endl;
    133               //Log() << Verbose(3) << "Setting " << *(*runner) << "'s source to " << *DistanceIterators[(*runner)]->second << "." << endl;
     132              //LOG(3, "Nay, made the potential worse: " << Potential << " vs. " << OldPotential << "!");
     133              //LOG(3, "Setting " << *(*runner) << "'s source to " << *DistanceIterators[(*runner)]->second << ".");
    134134              // Undo for Runner (note, we haven't moved the iteration yet, we may use this)
    135135              PermutationMap[(*runner)] = DistanceIterators[(*runner)]->second;
    136136              // Undo for Walker
    137137              DistanceIterators[(*iter)] = Strider;  // take next farther distance target
    138               //Log() << Verbose(3) << "Setting " << *(*iter) << "'s source to " << *DistanceIterators[(*iter)]->second << "." << endl;
     138              //LOG(3, "Setting " << *(*iter) << "'s source to " << *DistanceIterators[(*iter)]->second << ".");
    139139              PermutationMap[(*iter)] = DistanceIterators[(*iter)]->second;
    140140            } else {
    141141              DistanceIterators[(*runner)] = Rider;  // if successful also move the pointer in the iterator list
    142               DoLog(3) && (Log() << Verbose(3) << "Found a better permutation, new potential is " << Potential << " vs." << OldPotential << "." << endl);
     142              LOG(3, "Found a better permutation, new potential is " << Potential << " vs." << OldPotential << ".");
    143143              OldPotential = Potential;
    144144            }
    145145            if (Potential > PenaltyConstants[2]) {
    146               DoeLog(1) && (eLog()<< Verbose(1) << "The two-step permutation procedure did not maintain injectivity!" << endl);
     146              ELOG(1, "The two-step permutation procedure did not maintain injectivity!");
    147147              exit(255);
    148148            }
    149             //Log() << Verbose(0) << endl;
    150149          } else {
    151             DoeLog(1) && (eLog()<< Verbose(1) << **runner << " was not the owner of " << *Sprinter << "!" << endl);
     150            ELOG(1, **runner << " was not the owner of " << *Sprinter << "!");
    152151            exit(255);
    153152          }
     
    159158    } while (++iter != atoms.end());
    160159  } while ((OlderPotential - OldPotential) > 1e-3);
    161   DoLog(1) && (Log() << Verbose(1) << "done." << endl);
     160  LOG(1, "done.");
    162161
    163162
     
    181180    DoubleList[DistanceList[(*iter)].begin()->second]++;            // increase this target's source count (>1? not injective)
    182181    DistanceIterators[(*iter)] = DistanceList[(*iter)].begin();    // and remember which one we picked
    183     DoLog(2) && (Log() << Verbose(2) << **iter << " starts with distance " << DistanceList[(*iter)].begin()->first << "." << endl);
     182    LOG(2, **iter << " starts with distance " << DistanceList[(*iter)].begin()->first << ".");
    184183  }
    185184};
     
    192191
    193192  if (atoms.empty()) {
    194     eLog() << Verbose(1) << "Molecule is empty." << endl;
     193    ELOG(1, "Molecule is empty.");
    195194    return;
    196195  }
     
    209208    // now each single entry in the DoubleList should be <=1
    210209    if (DoubleList[*iter] > 1) {
    211       DoeLog(0) && (eLog()<< Verbose(0) << "Failed to create an injective PermutationMap!" << endl);
     210      ELOG(0, "Failed to create an injective PermutationMap!");
    212211      performCriticalExit();
    213212    }
    214213  }
    215   DoLog(1) && (Log() << Verbose(1) << "done." << endl);
     214  LOG(1, "done.");
    216215};
    217216
     
    227226      doubles++;
    228227  if (doubles >0)
    229     DoLog(2) && (Log() << Verbose(2) << "Found " << doubles << " Doubles." << endl);
     228    LOG(2, "Found " << doubles << " Doubles.");
    230229  return doubles;
    231230};
     
    247246  }
    248247  if (doubles >0)
    249     DoLog(2) && (Log() << Verbose(2) << "Found " << doubles << " Doubles." << endl);
    250 //  Log() << Verbose(2) << zeile1.str() << endl << zeile2.str() << endl;
     248    LOG(2, "Found " << doubles << " Doubles.");
     249//  LOG(2, zeile1.str() << endl << zeile2.str());
    251250};
    252251
     
    263262    tmp *= IsAngstroem ? 1. : 1./AtomicLengthToAngstroem;
    264263    result += PenaltyConstants[0] * tmp;
    265     //Log() << Verbose(4) << "Adding " << tmp*constants[0] << "." << endl;
     264    //LOG(4, "Adding " << tmp*constants[0] << ".");
    266265
    267266    // second term: sum of distances to other trajectories
     
    292291      DistanceIterators[Walker] = NewBase;
    293292      OldPotential = Potential;
    294       DoLog(3) && (Log() << Verbose(3) << "Found a new permutation, new potential is " << OldPotential << "." << endl);
     293      LOG(3, "Found a new permutation, new potential is " << OldPotential << ".");
    295294    }
    296295  }
     
    303302  for (molecule::atomSet::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) {
    304303    if ((PermutationMap[Walker] == PermutationMap[(*iter)]) && (Walker < (*iter))) {
    305   //    atom *Sprinter = PermutationMap[Walker->nr];
    306   //        Log() << Verbose(0) << *Walker << " and " << *(*iter) << " are heading to the same target at ";
    307   //        Log() << Verbose(0) << Sprinter->getPosition(endstep);
    308   //        Log() << Verbose(0) << ", penalting." << endl;
     304//    atom *Sprinter = PermutationMap[Walker->nr];
     305//    if (DoLog(0)) {
     306//        std::stringstream output;
     307//        output << *Walker << " and " << *(*iter) << " are heading to the same target at ";
     308//        output << Sprinter->getPosition(endstep);
     309//        output << ", penalting.";
     310//        LOG(0, output.str());
     311//    }
    309312      result += PenaltyConstants[2];
    310       //Log() << Verbose(4) << "Adding " << constants[2] << "." << endl;
     313      //LOG(4, "INFO: Adding " << constants[2] << ".");
    311314    }
    312315  }
     
    350353      tmp = trajectory2.Norm();  // remaining norm is distance
    351354    } else if ((fabs(trajectory1.ScalarProduct(trajectory2)/Norm1/Norm2) - 1.) < MYEPSILON) { // check whether they're linear dependent
    352   //        Log() << Verbose(3) << "Both trajectories of " << *Walker << " and " << *Runner << " are linear dependent: ";
    353   //        Log() << Verbose(0) << trajectory1;
    354   //        Log() << Verbose(0) << " and ";
    355   //        Log() << Verbose(0) << trajectory2;
     355//      std::stringstream output;
     356//      output << "Both trajectories of " << *Walker << " and " << *Runner << " are linear dependent: ";
     357//      output << trajectory1 << " and " << trajectory2;
     358//      LOG(3, output.str());
    356359      tmp = Walker->getPositionAtStep(startstep).distance((*iter)->getPositionAtStep(startstep));
    357   //        Log() << Verbose(0) << " with distance " << tmp << "." << endl;
     360//        LOG(0, " with distance " << tmp << ".");
    358361    } else { // determine distance by finding minimum distance
    359   //        Log() << Verbose(3) << "Both trajectories of " << *Walker << " and " << *(*iter) << " are linear independent ";
    360   //        Log() << Verbose(0) << endl;
    361   //        Log() << Verbose(0) << "First Trajectory: ";
    362   //        Log() << Verbose(0) << trajectory1 << endl;
    363   //        Log() << Verbose(0) << "Second Trajectory: ";
    364   //        Log() << Verbose(0) << trajectory2 << endl;
     362//      std::stringstream output;
     363//      output "Both trajectories of " << *Walker << " and " << *(*iter) << " are linear independent -- ";
     364//      output "First Trajectory: " << trajectory1 << ". Second Trajectory: " << trajectory2);
     365//      LOG(3, output.str());
    365366      // determine normal vector for both
    366367      normal = Plane(trajectory1, trajectory2,0).getNormal();
    367368      // print all vectors for debugging
    368   //        Log() << Verbose(0) << "Normal vector in between: ";
    369   //        Log() << Verbose(0) << normal << endl;
     369//        LOG(3, "INFO: Normal vector in between: " << normal);
    370370      // setup matrix
    371371      for (int i=NDIM;i--;) {
     
    379379      // distance from last component
    380380      tmp = gsl_vector_get(x,2);
    381   //        Log() << Verbose(0) << " with distance " << tmp << "." << endl;
     381//      LOG(0, " with distance " << tmp << ".");
    382382      // test whether we really have the intersection (by checking on c_1 and c_2)
    383383      trajectory1.Scale(gsl_vector_get(x,0));
     
    387387                   - (Walker->getPositionAtStep(startstep) + trajectory1);
    388388      if (TestVector.Norm() < MYEPSILON) {
    389   //          Log() << Verbose(2) << "Test: ok.\tDistance of " << tmp << " is correct." << endl;
     389//        LOG(2, "Test: ok.\tDistance of " << tmp << " is correct.");
    390390      } else {
    391   //          Log() << Verbose(2) << "Test: failed.\tIntersection is off by ";
    392   //          Log() << Verbose(0) << TestVector;
    393   //          Log() << Verbose(0) << "." << endl;
     391//        LOG(2, "Test: failed.\tIntersection is off by " << TestVector << ".");
    394392      }
    395393    }
     
    398396    if (fabs(tmp) > MYEPSILON) {
    399397      result += PenaltyConstants[1] * 1./tmp;
    400       //Log() << Verbose(4) << "Adding " << 1./tmp*constants[1] << "." << endl;
     398      //LOG(4, "Adding " << 1./tmp*constants[1] << ".");
    401399    }
    402400  }
     
    409407
    410408  /// evaluate forces (only the distance to target dependent part) with the final PermutationMap
    411   DoLog(1) && (Log() << Verbose(1) << "Calculating forces and adding onto ForceMatrix ... " << endl);
     409  LOG(1, "Calculating forces and adding onto ForceMatrix ... ");
    412410  for(molecule::atomSet::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) {
    413411    atom *Sprinter = PermutationMap[(*iter)];
     
    416414      Force->Matrix[0][(*iter)->getNr()][5+i] += 2.*constant*sqrt((*iter)->getPositionAtStep(startstep).distance(Sprinter->getPositionAtStep(endstep)));
    417415  }
    418   DoLog(1) && (Log() << Verbose(1) << "done." << endl);
    419 };
    420 
     416  LOG(1, "done.");
     417};
     418
  • src/Dynamics/VerletForceIntegration.hpp

    r50e4e5 r47d041  
    6565    std::ifstream input(file);
    6666    if ((input.good()) && (!Force.ParseMatrix(input, 0,0,0))) {
    67       DoeLog(0) && (eLog()<< Verbose(0) << "Could not parse Force Matrix file " << file << "." << endl);
     67      ELOG(0, "Could not parse Force Matrix file " << file << ".");
    6868      performCriticalExit();
    6969      return false;
     
    7171    input.close();
    7272    if (Force.RowCounter[0] != AtomCount) {
    73       DoeLog(0) && (eLog()<< Verbose(0) << "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << atoms.size() << "." << endl);
     73      ELOG(0, "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << atoms.size() << ".");
    7474      performCriticalExit();
    7575      return false;
     
    135135    ActualTemp = atoms.totalTemperatureAtStep(MDSteps+1);
    136136    LOG(3, "INFO: New temperature after thermostat is " << ActualTemp);
    137     DoLog(1) && (Log() << Verbose(1) << "Kinetic energy is " << ekin << "." << endl);
     137    LOG(1, "Kinetic energy is " << ekin << ".");
    138138
    139139    // next step
Note: See TracChangeset for help on using the changeset viewer.