Changeset 47d041 for src/Fragmentation


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/Fragmentation
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/AdaptivityMap.cpp

    r50e4e5 r47d041  
    6868        (*PresentItem).second.first = fabs(Value);
    6969        (*PresentItem).second.second = FragOrder;
    70         DoLog(2) && (Log() << Verbose(2) << "Updated element (" <<  (*PresentItem).first << ",[" << (*PresentItem).second.first << "," << (*PresentItem).second.second << "])." << endl);
     70        LOG(2, "Updated element (" <<  (*PresentItem).first << ",[" << (*PresentItem).second.first << "," << (*PresentItem).second.second << "]).");
    7171      } else {
    72         DoLog(2) && (Log() << Verbose(2) << "Did not update element " <<  (*PresentItem).first << " as " << FragOrder << " is less than or equal to " << (*PresentItem).second.second << "." << endl);
     72        LOG(2, "Did not update element " <<  (*PresentItem).first << " as " << FragOrder << " is less than or equal to " << (*PresentItem).second.second << ".");
    7373      }
    7474    } else {
    75       DoLog(2) && (Log() << Verbose(2) << "Inserted element (" <<  (*PresentItem).first << ",[" << (*PresentItem).second.first << "," << (*PresentItem).second.second << "])." << endl);
     75      LOG(2, "Inserted element (" <<  (*PresentItem).first << ",[" << (*PresentItem).second.first << "," << (*PresentItem).second.second << "]).");
    7676    }
    7777  } else {
    78     DoLog(1) && (Log() << Verbose(1) << "No Fragment under No. " << No << "found." << endl);
     78    LOG(1, "No Fragment under No. " << No << "found.");
    7979  }
    8080};
     
    9393
    9494  if (InputFile.fail()) {
    95     DoeLog(1) && (eLog() << Verbose(1) << "Cannot find file " << filename << "." << endl);
     95    ELOG(1, "Cannot find file " << filename << ".");
    9696    return;
    9797  }
     
    104104      InputFile.getline(buffer, MAXSTRINGSIZE);
    105105      if (strlen(buffer) > 2) {
    106         //Log() << Verbose(2) << "Scanning: " << buffer << endl;
     106        //LOG(2, "Scanning: " << buffer);
    107107        stringstream line(buffer);
    108108        line >> FragOrder;
     
    111111        line >> ws >> Value;
    112112        No -= 1;  // indices start at 1 in file, not 0
    113         //Log() << Verbose(2) << " - yields (" << No << "," << Value << ", " << FragOrder << ")" << endl;
     113        //LOG(2, " - yields (" << No << "," << Value << ", " << FragOrder << ")");
    114114
    115115        // clean the list of those entries that have been superceded by higher order terms already
     
    134134      "AdaptivityMap::ReMapAdaptiveCriteriaListToValue() - AdaptiveCriteriaList is not allocated yet.");
    135135  FinalRootCandidates = new AdaptiveCriteriaValueMap;
    136   DoLog(1) && (Log() << Verbose(1) << "Root candidate list is: " << endl);
     136  LOG(1, "Root candidate list is: ");
    137137  for(AdaptiveCriteriaIndexMap::const_iterator runner = AdaptiveCriteriaList->begin(); runner != AdaptiveCriteriaList->end(); runner++) {
    138138    Walker = mol->FindAtom((*runner).first);
     
    140140      //if ((*runner).second.second >= Walker->AdaptiveOrder) { // only insert if this is an "active" root site for the current order
    141141      if (!Walker->MaxOrder) {
    142         DoLog(2) && (Log() << Verbose(2) << "(" << (*runner).first << ",[" << (*runner).second.first << "," << (*runner).second.second << "])" << endl);
     142        LOG(2, "(" << (*runner).first << ",[" << (*runner).second.first << "," << (*runner).second.second << "])");
    143143        FinalRootCandidates->insert( make_pair( (*runner).second.first, pair<int,int>((*runner).first, (*runner).second.second) ) );
    144144      } else {
    145         DoLog(2) && (Log() << Verbose(2) << "Excluding (" << *Walker << ", " << (*runner).first << ",[" << (*runner).second.first << "," << (*runner).second.second << "]), as it has reached its maximum order." << endl);
     145        LOG(2, "Excluding (" << *Walker << ", " << (*runner).first << ",[" << (*runner).second.first << "," << (*runner).second.second << "]), as it has reached its maximum order.");
    146146      }
    147147    } else {
    148       DoeLog(0) && (eLog()<< Verbose(0) << "Atom No. " << (*runner).second.first << " was not found in this molecule." << endl);
     148      ELOG(0, "Atom No. " << (*runner).second.first << " was not found in this molecule.");
    149149      performCriticalExit();
    150150    }
     
    192192    Walker = mol->FindAtom(No);
    193193    //if (Walker->AdaptiveOrder < MinimumRingSize[Walker->getNr()]) {
    194       DoLog(2) && (Log() << Verbose(2) << "Root " << No << " is still above threshold (10^{" << Order <<"}: " << runner->first << ", setting entry " << No << " of Atom mask to true." << endl);
     194      LOG(2, "Root " << No << " is still above threshold (10^{" << Order <<"}: " << runner->first << ", setting entry " << No << " of Atom mask to true.");
    195195      AtomMask[No] = true;
    196196      status = true;
    197197    //} else
    198       //Log() << Verbose(2) << "Root " << No << " is still above threshold (10^{" << Order <<"}: " << runner->first << ", however MinimumRingSize of " << MinimumRingSize[Walker->getNr()] << " does not allow further adaptive increase." << endl;
     198      //LOG(2, "Root " << No << " is still above threshold (10^{" << Order <<"}: " << runner->first << ", however MinimumRingSize of " << MinimumRingSize[Walker->getNr()] << " does not allow further adaptive increase.");
    199199  }
    200200  return status;
  • src/Fragmentation/BondsPerShortestPath.cpp

    r50e4e5 r47d041  
    2121
    2222#include "BondsPerShortestPath.hpp"
     23
     24#include <sstream>
    2325
    2426#include "CodePatterns/Log.hpp"
     
    8284void BondsPerShortestPath::ResetSPList()
    8385{
    84   DoLog(0) && (Log() << Verbose(0) << "Free'ing all found lists. and resetting index lists" << endl);
     86  LOG(0, "Free'ing all found lists. and resetting index lists");
     87  std::stringstream output;
    8588  for(int i=Order;i--;) {
    86     DoLog(1) && (Log() << Verbose(1) << "Current SP level is " << i << ": ");
     89    output << "Current SP level is " << i << ": ";
    8790    // delete added bonds
    8891    for (BondsPerSP::iterator iter = BondsPerSPList[i].begin();
     
    9396    BondsPerSPList[i].clear();
    9497    // also start and end node
    95     DoLog(0) && (Log() << Verbose(0) << "cleaned." << endl);
    96   }
     98    output << "cleaned.";
     99  }
     100  LOG(1, output.str());
    97101};
    98102
     
    120124  int SP = -1;
    121125
    122   DoLog(0) && (Log() << Verbose(0) << "Starting BFS analysis ..." << endl);
     126  LOG(0, "Starting BFS analysis ...");
    123127  for (SP = 0; SP < (Order-1); SP++) {
    124     DoLog(1) && (Log() << Verbose(1) << "New SP level reached: " << SP << ", creating new SP list with " << BondsPerSPCount[SP] << " item(s)");
    125     if (SP > 0) {
    126       DoLog(0) && (Log() << Verbose(0) << ", old level closed with " << BondsPerSPCount[SP-1] << " item(s)." << endl);
    127       BondsPerSPCount[SP] = 0;
    128     } else
    129       DoLog(0) && (Log() << Verbose(0) << "." << endl);
     128    {
     129      std::stringstream output;
     130      output << "New SP level reached: " << SP << ", creating new SP list with " << BondsPerSPCount[SP] << " item(s)";
     131      if (SP > 0) {
     132        output << ", old level closed with " << BondsPerSPCount[SP-1] << " item(s).";
     133        BondsPerSPCount[SP] = 0;
     134      } else
     135        output << ".";
     136      LOG(1, output.str());
     137    }
    130138
    131139    RemainingWalkers = BondsPerSPCount[SP];
     
    137145      Predecessor = (*CurrentEdge)->leftatom;    // ... and leftatom is predecessor
    138146      AtomKeyNr = Walker->getNr();
    139       DoLog(0) && (Log() << Verbose(0) << "Current Walker is: " << *Walker << " with nr " << Walker->getNr() << " and SP of " << SP << ", with " << RemainingWalkers << " remaining walkers on this level." << endl);
     147      LOG(0, "Current Walker is: " << *Walker << " with nr " << Walker->getNr() << " and SP of " << SP << ", with " << RemainingWalkers << " remaining walkers on this level.");
    140148      // check for new sp level
    141149      // go through all its bonds
    142       DoLog(1) && (Log() << Verbose(1) << "Going through all bonds of Walker." << endl);
     150      LOG(1, "Going through all bonds of Walker.");
    143151      const BondList& ListOfBonds = Walker->getListOfBonds();
    144152      for (BondList::const_iterator Runner = ListOfBonds.begin();
     
    149157            // skip hydrogens if desired and restrict to fragment
    150158            && ((saturation == DontSaturate) || (OtherWalker->getType()->getAtomicNumber() != 1))) {
    151           DoLog(2) && (Log() << Verbose(2) << "Current partner is " << *OtherWalker << " with nr " << OtherWalker->getNr() << " in bond " << *(*Runner) << "." << endl);
     159          LOG(2, "Current partner is " << *OtherWalker << " with nr " << OtherWalker->getNr() << " in bond " << *(*Runner) << ".");
    152160          // set the label if not set (and push on root stack as well)
    153161          if ((OtherWalker != Predecessor) && (OtherWalker->GetTrueFather()->getNr() > RootKeyNr)) { // only pass through those with label bigger than Root's
     
    156164            BondsPerSPList[SP+1].push_back(Binder);
    157165            BondsPerSPCount[SP+1]++;
    158             DoLog(3) && (Log() << Verbose(3) << "Added its bond to SP list, having now " << BondsPerSPCount[SP+1] << " item(s)." << endl);
     166            LOG(3, "Added its bond to SP list, having now " << BondsPerSPCount[SP+1] << " item(s).");
    159167          } else {
    160168            if (OtherWalker != Predecessor)
    161               DoLog(3) && (Log() << Verbose(3) << "Not passing on, as index of " << *OtherWalker << " " << OtherWalker->GetTrueFather()->getNr() << " is smaller than that of Root " << RootKeyNr << "." << endl);
     169              LOG(3, "Not passing on, as index of " << *OtherWalker << " " << OtherWalker->GetTrueFather()->getNr() << " is smaller than that of Root " << RootKeyNr << ".");
    162170            else
    163               DoLog(3) && (Log() << Verbose(3) << "This is my predecessor " << *Predecessor << "." << endl);
     171              LOG(3, "This is my predecessor " << *Predecessor << ".");
    164172          }
    165         } else Log() << Verbose(2) << "Is not in the restricted keyset or skipping hydrogen " << *OtherWalker << "." << endl;
     173        } else LOG(2, "Is not in the restricted keyset or skipping hydrogen " << *OtherWalker << ".");
    166174      }
    167175    }
     
    173181void BondsPerShortestPath::OutputSPList()
    174182{
    175   DoLog(0) && (Log() << Verbose(0) << "Printing all found lists." << endl);
     183  LOG(0, "Printing all found lists.");
    176184  for(int i=1;i<Order;i++) {    // skip the root edge in the printing
    177     DoLog(1) && (Log() << Verbose(1) << "Current SP level is " << i << "." << endl);
     185    LOG(1, "Current SP level is " << i << ".");
    178186    for (BondsPerShortestPath::BondsPerSP::const_iterator Binder = BondsPerSPList[i].begin();
    179187        Binder != BondsPerSPList[i].end();
    180188        ++Binder) {
    181       DoLog(2) && (Log() << Verbose(2) << *Binder << endl);
     189      LOG(2, *Binder);
    182190    }
    183191  }
  • src/Fragmentation/EnergyMatrix.cpp

    r50e4e5 r47d041  
    3434bool EnergyMatrix::ParseIndices()
    3535{
    36   DoLog(0) && (Log() << Verbose(0) << "Parsing energy indices." << endl);
     36  LOG(0, "Parsing energy indices.");
    3737  Indices.resize(MatrixCounter + 1);
    3838  for(int i=MatrixCounter+1;i--;) {
  • src/Fragmentation/ForceMatrix.cpp

    r50e4e5 r47d041  
    4343  stringstream line;
    4444
    45   DoLog(0) && (Log() << Verbose(0) << "Parsing force indices for " << MatrixCounter << " matrices." << endl);
     45  LOG(0, "Parsing force indices for " << MatrixCounter << " matrices.");
    4646  Indices.resize(MatrixCounter + 1);
    4747  line << name << FRAGMENTPREFIX << FORCESFILE;
    4848  input.open(line.str().c_str(), ios::in);
    49   //Log() << Verbose(0) << "Opening " << line.str() << " ... "  << input << endl;
     49  //LOG(0, "Opening " << line.str() << " ... "  << input);
    5050  if (input.fail()) {
    51     DoLog(0) && (Log() << Verbose(0) << endl << "ForceMatrix::ParseIndices: Unable to open " << line.str() << ", is the directory correct?" << endl);
     51    LOG(0, endl << "ForceMatrix::ParseIndices: Unable to open " << line.str() << ", is the directory correct?");
    5252    return false;
    5353  }
     
    5959    Indices[i].resize(RowCounter[i]);
    6060    FragmentNumber = FixedDigitNumber(MatrixCounter, i);
    61     //Log() << Verbose(0) << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:";
     61    //std::stringstream output;
     62    //output << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:";
    6263    delete[](FragmentNumber);
    6364    for(int j=0;(j<RowCounter[i]) && (!line.eof());j++) {
    6465      line >> Indices[i][j];
    65       //Log() << Verbose(0) << " " << Indices[i][j];
     66      //output << " " << Indices[i][j];
    6667    }
    67     //Log() << Verbose(0) << endl;
     68    //LOG(0, output.str());
    6869  }
    6970  Indices[MatrixCounter].resize(RowCounter[MatrixCounter]);
     
    9293      int j = Indices[ FragmentNr ][l];
    9394      if (j > RowCounter[MatrixCounter]) {
    94         DoeLog(0) && (eLog()<< Verbose(0) << "Current force index " << j << " is greater than " << RowCounter[MatrixCounter] << "!" << endl);
     95        ELOG(0, "Current force index " << j << " is greater than " << RowCounter[MatrixCounter] << "!");
    9596        performCriticalExit();
    9697        return false;
    9798      }
    9899      if (j != -1) {
    99         //if (j == 0) Log() << Verbose(0) << "Summing onto ion 0, type 0 from fragment " << FragmentNr << ", ion " << l << "." << endl;
     100        //if (j == 0) LOG(0, "Summing onto ion 0, type 0 from fragment " << FragmentNr << ", ion " << l << ".");
    100101        for(int k=2;k<ColumnCounter[MatrixCounter];k++)
    101102          Matrix[MatrixCounter][j][k] += sign*Fragments.Matrix[ FragmentNr ][l][k];
     
    128129    input.open(file.str().c_str(), ios::in);
    129130    if (input.fail()) {
    130       DoLog(0) && (Log() << Verbose(0) << endl << "ForceMatrix::ParseFragmentMatrix: Unable to open " << file.str() << ", is the directory correct?" << endl);
     131      LOG(0, endl << "ForceMatrix::ParseFragmentMatrix: Unable to open " << file.str() << ", is the directory correct?");
    131132      return false;
    132133    }
     
    137138      while (!zeile.eof()) {
    138139        zeile >> nr;
    139         //Log() << Verbose(0) << "Current index: " << getNr() << "." << endl;
     140        //LOG(0, "Current index: " << getNr() << ".");
    140141        if (nr > RowCounter[MatrixCounter])
    141142          RowCounter[MatrixCounter] = nr;
  • src/Fragmentation/Fragmentation.cpp

    r50e4e5 r47d041  
    2222
    2323#include "CodePatterns/Assert.hpp"
     24#include "CodePatterns/Info.hpp"
    2425#include "CodePatterns/Log.hpp"
    2526
     
    9293  bool *AtomMask = NULL;
    9394
    94   DoLog(0) && (Log() << Verbose(0) << endl);
     95  LOG(0, endl);
    9596  switch (saturation) {
    9697    case DoSaturate:
    97       DoLog(0) && (Log() << Verbose(0) << "I will treat hydrogen special and saturate dangling bonds with it." << endl);
     98      LOG(0, "I will treat hydrogen special and saturate dangling bonds with it.");
    9899      break;
    99100    case DontSaturate:
    100       DoLog(0) && (Log() << Verbose(0) << "Hydrogen is treated just like the rest of the lot." << endl);
     101      LOG(0, "Hydrogen is treated just like the rest of the lot.");
    101102      break;
    102103    default:
     
    115116    filename = prefix + ADJACENCYFILE;
    116117    File.open(filename.c_str(), ios::out);
    117     DoLog(1) && (Log() << Verbose(1) << "Looking at bond structure stored in adjacency file and comparing to present one ... " << endl);
     118    LOG(1, "Looking at bond structure stored in adjacency file and comparing to present one ... ");
    118119
    119120    CheckAgainstAdjacencyFile FileChecker(World::getInstance().beginAtomSelection(), World::getInstance().endAtomSelection());
     
    167168    while (MolecularWalker->next != NULL) {
    168169      MolecularWalker = MolecularWalker->next;
    169       DoLog(1) && (Log() << Verbose(1) << "Fragmenting subgraph " << MolecularWalker << "." << endl);
     170      LOG(1, "Fragmenting subgraph " << MolecularWalker << ".");
    170171      if (MolecularWalker->Leaf->hasBondStructure()) {
    171172        // call BOSSANOVA method
    172         DoLog(0) && (Log() << Verbose(0) << endl << " ========== BOND ENERGY of subgraph " << FragmentCounter << " ========================= " << endl);
     173        LOG(0, endl << " ========== BOND ENERGY of subgraph " << FragmentCounter << " ========================= ");
    173174        FragmentBOSSANOVA(MolecularWalker->Leaf, FragmentList[FragmentCounter], RootStack[FragmentCounter]);
    174175      } else {
    175         DoeLog(1) && (eLog()<< Verbose(1) << "Subgraph " << MolecularWalker << " has no atoms!" << endl);
     176        ELOG(1, "Subgraph " << MolecularWalker << " has no atoms!");
    176177      }
    177178      FragmentCounter++;  // next fragment list
    178179    }
    179180  }
    180   DoLog(2) && (Log() << Verbose(2) << "CheckOrder is " << CheckOrder << "." << endl);
     181  LOG(2, "CheckOrder is " << CheckOrder << ".");
    181182  delete[](RootStack);
    182183  delete[](AtomMask);
     
    202203  delete[](FragmentList);
    203204
    204   DoLog(0) && (Log() << Verbose(0) << FragmentCounter << " subgraph fragments have been removed." << std::endl);
     205  LOG(0, FragmentCounter << " subgraph fragments have been removed.");
    205206
    206207  // ===== 8b. gather keyset lists (graphs) from all subgraphs and transform into MoleculeListClass =====
     
    211212  for(Graph::iterator runner = TotalGraph.begin(); runner != TotalGraph.end(); runner++) {
    212213    KeySet test = (*runner).first;
    213     DoLog(0) && (Log() << Verbose(0) << "Fragment No." << (*runner).second.first << " with TEFactor " << (*runner).second.second << "." << endl);
     214    LOG(0, "Fragment No." << (*runner).second.first << " with TEFactor " << (*runner).second.second << ".");
    214215    BondFragments->insert(StoreFragmentFromKeySet(test, World::getInstance().getConfig()));
    215216    k++;
    216217  }
    217   DoLog(0) && (Log() << Verbose(0) << k << "/" << BondFragments->ListOfMolecules.size() << " fragments generated from the keysets." << endl);
     218  LOG(0, k << "/" << BondFragments->ListOfMolecules.size() << " fragments generated from the keysets.");
    218219
    219220  // ===== 9. Save fragments' configuration and keyset files et al to disk ===
     
    223224    CreateMappingLabelsToConfigSequence(SortIndex);
    224225
    225     DoLog(1) && (Log() << Verbose(1) << "Writing " << BondFragments->ListOfMolecules.size() << " possible bond fragmentation configs" << endl);
     226    LOG(1, "Writing " << BondFragments->ListOfMolecules.size() << " possible bond fragmentation configs");
    226227    bool write_status = true;
    227228    for (std::vector<std::string>::const_iterator iter = typelist.begin();
     
    236237    }
    237238    if (write_status)
    238       DoLog(1) && (Log() << Verbose(1) << "All configs written." << endl);
     239      LOG(1, "All configs written.");
    239240    else
    240       DoLog(1) && (Log() << Verbose(1) << "Some config writing failed." << endl);
     241      LOG(1, "Some config writing failed.");
    241242
    242243    // store force index reference file
     
    262263
    263264    // free memory for bond part
    264     DoLog(1) && (Log() << Verbose(1) << "Freeing bond memory" << endl);
     265    LOG(1, "Freeing bond memory");
    265266    delete[](SortIndex);
    266267  } else {
    267     DoLog(1) && (Log() << Verbose(1) << "FragmentList is zero on return, splitting failed." << endl);
     268    LOG(1, "FragmentList is zero on return, splitting failed.");
    268269  }
    269270  // remove all create molecules again from the World including their atoms
     
    278279  }
    279280  delete(BondFragments);
    280   DoLog(0) && (Log() << Verbose(0) << "End of bond fragmentation." << endl);
     281  LOG(0, "End of bond fragmentation.");
    281282
    282283  return ((int)(!FragmentationToDo)+1);    // 1 - continue, 2 - stop (no fragmentation occured)
     
    314315  UniqueFragments FragmentSearch;
    315316
    316   DoLog(0) && (Log() << Verbose(0) << "Begin of FragmentBOSSANOVA." << endl);
     317  LOG(0, "Begin of FragmentBOSSANOVA.");
    317318
    318319  // FragmentLowerOrdersList is a 2D-array of pointer to MoleculeListClass objects, one dimension represents the ANOVA expansion of a single order (i.e. 5)
     
    345346    // check cyclic lengths
    346347    //if ((MinimumRingSize[Walker->GetTrueFather()->getNr()] != -1) && (Walker->GetTrueFather()->AdaptiveOrder+1 > MinimumRingSize[Walker->GetTrueFather()->getNr()])) {
    347     //  Log() << Verbose(0) << "Bond order " << Walker->GetTrueFather()->AdaptiveOrder << " of Root " << *Walker << " greater than or equal to Minimum Ring size of " << MinimumRingSize << " found is not allowed." << endl;
     348    //  LOG(0, "Bond order " << Walker->GetTrueFather()->AdaptiveOrder << " of Root " << *Walker << " greater than or equal to Minimum Ring size of " << MinimumRingSize << " found is not allowed.");
    348349    //} else
    349350    {
     
    362363
    363364      // create top order where nothing is reduced
    364       DoLog(0) && (Log() << Verbose(0) << "==============================================================================================================" << endl);
    365       DoLog(0) && (Log() << Verbose(0) << "Creating KeySets of Bond Order " << Order << " for " << *Walker << ", " << (RootStack.size()-RootNr) << " Roots remaining." << endl); // , NumLevels is " << NumLevels << "
     365      LOG(0, "==============================================================================================================");
     366      LOG(0, "Creating KeySets of Bond Order " << Order << " for " << *Walker << ", " << (RootStack.size()-RootNr) << " Roots remaining."); // , NumLevels is " << NumLevels << "
    366367
    367368      // Create list of Graphs of current Bond Order (i.e. F_{ij})
     
    371372
    372373      // output resulting number
    373       DoLog(1) && (Log() << Verbose(1) << "Number of resulting KeySets is: " << NumMoleculesOfOrder[RootNr] << "." << endl);
     374      LOG(1, "Number of resulting KeySets is: " << NumMoleculesOfOrder[RootNr] << ".");
    374375      if (NumMoleculesOfOrder[RootNr] != 0) {
    375376        NumMolecules = 0;
     
    380381      //NumMoleculesOfOrder[Walker->AdaptiveOrder-1] = NumMolecules;
    381382      TotalNumMolecules += NumMoleculesOfOrder[RootNr];
    382 //      Log() << Verbose(1) << "Number of resulting molecules for Order " << (int)Walker->GetTrueFather()->AdaptiveOrder << " is: " << NumMoleculesOfOrder[RootNr] << "." << endl;
     383//      LOG(1, "Number of resulting molecules for Order " << (int)Walker->GetTrueFather()->AdaptiveOrder << " is: " << NumMoleculesOfOrder[RootNr] << ".");
    383384      RootStack.push_back(RootKeyNr); // put back on stack
    384385      RootNr++;
    385386    }
    386387  }
    387   DoLog(0) && (Log() << Verbose(0) << "==============================================================================================================" << endl);
    388   DoLog(1) && (Log() << Verbose(1) << "Total number of resulting molecules is: " << TotalNumMolecules << "." << endl);
    389   DoLog(0) && (Log() << Verbose(0) << "==============================================================================================================" << endl);
     388  LOG(0, "==============================================================================================================");
     389  LOG(1, "Total number of resulting molecules is: " << TotalNumMolecules << ".");
     390  LOG(0, "==============================================================================================================");
    390391
    391392  // cleanup FragmentSearch structure
     
    404405  delete[](NumMoleculesOfOrder);
    405406
    406   DoLog(0) && (Log() << Verbose(0) << "End of FragmentBOSSANOVA." << endl);
     407  LOG(0, "End of FragmentBOSSANOVA.");
    407408};
    408409
     
    417418molecule * Fragmentation::StoreFragmentFromKeySet(KeySet &Leaflet, bool IsAngstroem)
    418419{
     420  Info info(__func__);
    419421  atom **SonList = new atom*[mol->getAtomCount()];
    420422  molecule *Leaf = World::getInstance().createMolecule();
     
    423425    SonList[i] = NULL;
    424426
    425 //  Log() << Verbose(1) << "Begin of StoreFragmentFromKeyset." << endl;
    426427  StoreFragmentFromKeySet_Init(mol, Leaf, Leaflet, SonList);
    427428  // create the bonds between all: Make it an induced subgraph and add hydrogen
    428 //  Log() << Verbose(2) << "Creating bonds from father graph (i.e. induced subgraph creation)." << endl;
     429//  LOG(2, "Creating bonds from father graph (i.e. induced subgraph creation).");
    429430  CreateInducedSubgraphOfFragment(mol, Leaf, SonList, IsAngstroem);
    430431
    431432  //Leaflet->Leaf->ScanForPeriodicCorrection(out);
    432433  delete[](SonList);
    433 //  Log() << Verbose(1) << "End of StoreFragmentFromKeyset." << endl;
    434434  return Leaf;
    435435};
     
    456456  }
    457457  FragmentCount = mol->NoNonHydrogen*(1 << (c*order));
    458   DoLog(1) && (Log() << Verbose(1) << "Upper limit for this subgraph is " << FragmentCount << " for " << mol->NoNonHydrogen << " non-H atoms with maximum bond degree of " << c << "." << endl);
     458  LOG(1, "Upper limit for this subgraph is " << FragmentCount << " for " << mol->NoNonHydrogen << " non-H atoms with maximum bond degree of " << c << ".");
    459459  return FragmentCount;
    460460};
     
    482482    // transmorph graph keyset list into indexed KeySetList
    483483    if (GlobalKeySetList == NULL) {
    484       DoeLog(1) && (eLog()<< Verbose(1) << "Given global key set list (graph) is NULL!" << endl);
     484      ELOG(1, "Given global key set list (graph) is NULL!");
    485485      return false;
    486486    }
     
    494494    // pick the ones still below threshold and mark as to be adaptively updated
    495495    if (IndexKeySetList->IsAdaptiveCriteriaListEmpty()) {
    496       DoeLog(2) && (eLog()<< Verbose(2) << "Unable to parse file, incrementing all." << endl);
     496      ELOG(2, "Unable to parse file, incrementing all.");
    497497      for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
    498498        if ((saturation == DontSaturate) || ((*iter)->getType()->getAtomicNumber() != 1)) // skip hydrogen
     
    521521    if (!status) {
    522522      if (Order == 0)
    523         DoLog(1) && (Log() << Verbose(1) << "Single stepping done." << endl);
     523        LOG(1, "Single stepping done.");
    524524      else
    525         DoLog(1) && (Log() << Verbose(1) << "Order at every site is already equal or above desired order " << Order << "." << endl);
     525        LOG(1, "Order at every site is already equal or above desired order " << Order << ".");
    526526    }
    527527  }
     
    544544  line = path + ORDERATSITEFILE;
    545545  file.open(line.c_str());
    546   DoLog(1) && (Log() << Verbose(1) << "Writing OrderAtSite " << ORDERATSITEFILE << " ... " << endl);
     546  LOG(1, "Writing OrderAtSite " << ORDERATSITEFILE << " ... ");
    547547  if (file.good()) {
    548548    for_each(mol->begin(),mol->end(),bind2nd(mem_fun(&atom::OutputOrder), &file));
    549549    file.close();
    550     DoLog(1) && (Log() << Verbose(1) << "done." << endl);
     550    LOG(1, "done.");
    551551    return true;
    552552  } else {
    553     DoLog(1) && (Log() << Verbose(1) << "failed to open file " << line << "." << endl);
     553    LOG(1, "failed to open file " << line << ".");
    554554    return false;
    555555  }
     
    577577  }
    578578
    579   DoLog(1) && (Log() << Verbose(1) << "Begin of ParseOrderAtSiteFromFile" << endl);
     579  LOG(1, "Begin of ParseOrderAtSiteFromFile");
    580580  line = path + ORDERATSITEFILE;
    581581  file.open(line.c_str());
     
    589589        file >> value;
    590590        MaxArray[AtomNr] = value;
    591         //Log() << Verbose(2) << "AtomNr " << AtomNr << " with order " << (int)OrderArray[AtomNr] << " and max order set to " << (int)MaxArray[AtomNr] << "." << endl;
     591        //LOG(2, "AtomNr " << AtomNr << " with order " << (int)OrderArray[AtomNr] << " and max order set to " << (int)MaxArray[AtomNr] << ".");
    592592      }
    593593    }
     
    602602    //SetAtomValueToIndexedArray( MaxArray, &atom::getNr(), &atom::MaxOrder );
    603603
    604     DoLog(1) && (Log() << Verbose(1) << "\t ... done." << endl);
     604    LOG(1, "\t ... done.");
    605605    status = true;
    606606  } else {
    607     DoLog(1) && (Log() << Verbose(1) << "\t ... failed to open file " << line << "." << endl);
     607    LOG(1, "\t ... failed to open file " << line << ".");
    608608    status = false;
    609609  }
     
    611611  delete[](MaxArray);
    612612
    613   DoLog(1) && (Log() << Verbose(1) << "End of ParseOrderAtSiteFromFile" << endl);
     613  LOG(1, "End of ParseOrderAtSiteFromFile");
    614614  return status;
    615615};
     
    623623{
    624624  if (SortIndex != NULL) {
    625     DoLog(1) && (Log() << Verbose(1) << "SortIndex is " << SortIndex << " and not NULL as expected." << endl);
     625    LOG(1, "SortIndex is " << SortIndex << " and not NULL as expected.");
    626626    return false;
    627627  }
     
    687687          ++BondRunner) {
    688688        OtherFather = (*BondRunner)->GetOtherAtom(FatherOfRunner);
    689 //        Log() << Verbose(2) << "Father " << *FatherOfRunner << " of son " << *SonList[FatherOfRunner->getNr()] << " is bound to " << *OtherFather;
    690689        if (SonList[OtherFather->getNr()] != NULL) {
    691 //          Log() << Verbose(0) << ", whose son is " << *SonList[OtherFather->getNr()] << "." << endl;
     690//          LOG(2, "INFO: Father " << *FatherOfRunner << " of son " << *SonList[FatherOfRunner->getNr()]
     691//              << " is bound to " << *OtherFather << ", whose son is "
     692//              << *SonList[OtherFather->getNr()] << ".");
    692693          if (OtherFather->getNr() > FatherOfRunner->getNr()) { // add bond (Nr check is for adding only one of both variants: ab, ba)
    693 //            Log() << Verbose(3) << "Adding Bond: ";
    694 //            Log() << Verbose(0) <<
    695             Leaf->AddBond((*iter), SonList[OtherFather->getNr()], (*BondRunner)->BondDegree);
    696 //            Log() << Verbose(0) << "." << endl;
     694            std::stringstream output;
     695//            output << "ACCEPT: Adding Bond: "
     696            output << Leaf->AddBond((*iter), SonList[OtherFather->getNr()], (*BondRunner)->BondDegree);
     697//            LOG(3, output.str());
    697698            //NumBonds[(*iter)->getNr()]++;
    698699          } else {
    699 //            Log() << Verbose(3) << "Not adding bond, labels in wrong order." << endl;
     700//            LOG(3, "REJECY: Not adding bond, labels in wrong order.");
    700701          }
    701702          LonelyFlag = false;
    702703        } else {
    703 //          Log() << Verbose(0) << ", who has no son in this fragment molecule." << endl;
    704           //Log() << Verbose(3) << "Adding Hydrogen to " << (*iter)->Name << " and a bond in between." << endl;
    705           if (saturation == DoSaturate)
     704//          LOG(2, "INFO: Father " << *FatherOfRunner << " of son " << *SonList[FatherOfRunner->getNr()]
     705//              << " is bound to " << *OtherFather << ", who has no son in this fragment molecule.");
     706          if (saturation == DoSaturate) {
     707//          LOG(3, "ACCEPT: Adding Hydrogen to " << (*iter)->Name << " and a bond in between.");
    706708            if (!Leaf->AddHydrogenReplacementAtom((*BondRunner), (*iter), FatherOfRunner, OtherFather, IsAngstroem))
    707709              exit(1);
     710          }
    708711          //NumBonds[(*iter)->getNr()] += Binder->BondDegree;
    709712        }
    710713      }
    711714    } else {
    712     DoeLog(1) && (eLog()<< Verbose(1) << "Son " << (*iter)->getName() << " has father " << FatherOfRunner->getName() << " but its entry in SonList is " << SonList[FatherOfRunner->getNr()] << "!" << endl);
     715    ELOG(1, "Son " << (*iter)->getName() << " has father " << FatherOfRunner->getName() << " but its entry in SonList is " << SonList[FatherOfRunner->getNr()] << "!");
    713716    }
    714717    if ((LonelyFlag) && (Leaf->getAtomCount() > 1)) {
    715       DoLog(0) && (Log() << Verbose(0) << **iter << "has got bonds only to hydrogens!" << endl);
     718      LOG(0, **iter << "has got bonds only to hydrogens!");
    716719    }
    717720    ++iter;
  • src/Fragmentation/HessianMatrix.cpp

    r50e4e5 r47d041  
    4343  stringstream line;
    4444
    45   DoLog(0) && (Log() << Verbose(0) << "Parsing hessian indices for " << MatrixCounter << " matrices." << endl);
     45  LOG(0, "Parsing hessian indices for " << MatrixCounter << " matrices.");
    4646  Indices.resize(MatrixCounter + 1);
    4747  line << name << FRAGMENTPREFIX << FORCESFILE;
    4848  input.open(line.str().c_str(), ios::in);
    49   //Log() << Verbose(0) << "Opening " << line.str() << " ... "  << input << endl;
     49  //LOG(0, "Opening " << line.str() << " ... "  << input);
    5050  if (input.fail()) {
    51     DoLog(0) && (Log() << Verbose(0) << endl << "HessianMatrix::ParseIndices: Unable to open " << line.str() << ", is the directory correct?" << endl);
     51    LOG(0, endl << "HessianMatrix::ParseIndices: Unable to open " << line.str() << ", is the directory correct?");
    5252    return false;
    5353  }
     
    5959    Indices[i].resize(RowCounter[i]);
    6060    FragmentNumber = FixedDigitNumber(MatrixCounter, i);
    61     //Log() << Verbose(0) << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:";
     61    //std::stringstream output;
     62    //output << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:";
    6263    delete[](FragmentNumber);
    6364    for(int j=0;(j<RowCounter[i]) && (!line.eof());j++) {
    6465      line >> Indices[i][j];
    65       //Log() << Verbose(0) << " " << Indices[i][j];
    66     }
    67     //Log() << Verbose(0) << endl;
     66      //output << " " << Indices[i][j];
     67    }
     68    //LOG(0, output.str());
    6869  }
    6970  Indices[MatrixCounter].resize(RowCounter[MatrixCounter]);
     
    9293      int j = Indices[ FragmentNr ][l];
    9394      if (j > RowCounter[MatrixCounter]) {
    94         DoeLog(0) && (eLog()<< Verbose(0) << "Current hessian index " << j << " is greater than " << RowCounter[MatrixCounter] << ", where i=" << i << ", Order=" << Order << ", l=" << l << " and FragmentNr=" << FragmentNr << "!" << endl);
     95        ELOG(0, "Current hessian index " << j << " is greater than " << RowCounter[MatrixCounter] << ", where i=" << i << ", Order=" << Order << ", l=" << l << " and FragmentNr=" << FragmentNr << "!");
    9596        performCriticalExit();
    9697        return false;
     
    100101          int k = Indices[ FragmentNr ][m];
    101102          if (k > ColumnCounter[MatrixCounter]) {
    102             DoeLog(0) && (eLog()<< Verbose(0) << "Current hessian index " << k << " is greater than " << ColumnCounter[MatrixCounter] << ", where m=" << m << ", j=" << j << ", i=" << i << ", Order=" << Order << ", l=" << l << " and FragmentNr=" << FragmentNr << "!" << endl);
     103            ELOG(0, "Current hessian index " << k << " is greater than " << ColumnCounter[MatrixCounter] << ", where m=" << m << ", j=" << j << ", i=" << i << ", Order=" << Order << ", l=" << l << " and FragmentNr=" << FragmentNr << "!");
    103104            performCriticalExit();
    104105            return false;
    105106          }
    106107          if (k != -1) {
    107             //Log() << Verbose(0) << "Adding " << sign*Fragments.Matrix[ FragmentNr ][l][m] << " from [" << l << "][" << m << "] onto [" << j << "][" << k << "]." << endl;
     108            //LOG(0, "Adding " << sign*Fragments.Matrix[ FragmentNr ][l][m] << " from [" << l << "][" << m << "] onto [" << j << "][" << k << "].");
    108109            Matrix[MatrixCounter][j][k] += sign*Fragments.Matrix[ FragmentNr ][l][m];
    109110          }
     
    133134  // go through each order
    134135  for (int CurrentFragment=0;CurrentFragment<KeySets.FragmentsPerOrder[Order];CurrentFragment++) {
    135     //Log() << Verbose(0) << "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << "." << endl;
     136    //LOG(0, "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << ".");
    136137    // then go per order through each suborder and pick together all the terms that contain this fragment
    137138    for(int SubOrder=0;SubOrder<=Order;SubOrder++) { // go through all suborders up to the desired order
    138139      for (int j=0;j<KeySets.FragmentsPerOrder[SubOrder];j++) { // go through all possible fragments of size suborder
    139140        if (KeySets.Contains(KeySets.OrderSet[Order][CurrentFragment], KeySets.OrderSet[SubOrder][j])) {
    140           //Log() << Verbose(0) << "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << "." << endl;
     141          //LOG(0, "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << ".");
    141142          // if the fragment's indices are all in the current fragment
    142143          for(int k=0;k<RowCounter[ KeySets.OrderSet[SubOrder][j] ];k++) { // go through all atoms in this fragment
    143144            int m = MatrixValues.Indices[ KeySets.OrderSet[SubOrder][j] ][k];
    144             //Log() << Verbose(0) << "Current row index is " << k << "/" << m << "." << endl;
     145            //LOG(0, "Current row index is " << k << "/" << m << ".");
    145146            if (m != -1) { // if it's not an added hydrogen
    146147              for (int l=0;l<RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ];l++) { // look for the corresponding index in the current fragment
    147                 //Log() << Verbose(0) << "Comparing " << m << " with " << MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l] << "." << endl;
     148                //LOG(0, "Comparing " << m << " with " << MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l] << ".");
    148149                if (m == MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l]) {
    149150                  m = l;
     
    151152                }
    152153              }
    153               //Log() << Verbose(0) << "Corresponding row index for " << k << " in CurrentFragment is " << m << "." << endl;
     154              //LOG(0, "Corresponding row index for " << k << " in CurrentFragment is " << m << ".");
    154155              if (m > RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ]) {
    155                 DoeLog(0) && (eLog()<< Verbose(0) << "In fragment No. " << KeySets.OrderSet[Order][CurrentFragment]   << " current row index " << m << " is greater than " << RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ] << "!" << endl);
     156                ELOG(0, "In fragment No. " << KeySets.OrderSet[Order][CurrentFragment]   << " current row index " << m << " is greater than " << RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ] << "!");
    156157                performCriticalExit();
    157158                return false;
     
    160161              for(int l=0;l<ColumnCounter[ KeySets.OrderSet[SubOrder][j] ];l++) {
    161162                int n = MatrixValues.Indices[ KeySets.OrderSet[SubOrder][j] ][l];
    162                 //Log() << Verbose(0) << "Current column index is " << l << "/" << n << "." << endl;
     163                //LOG(0, "Current column index is " << l << "/" << n << ".");
    163164                if (n != -1) { // if it's not an added hydrogen
    164165                  for (int p=0;p<ColumnCounter[ KeySets.OrderSet[Order][CurrentFragment] ];p++) { // look for the corresponding index in the current fragment
    165                     //Log() << Verbose(0) << "Comparing " << n << " with " << MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][p] << "." << endl;
     166                    //LOG(0, "Comparing " << n << " with " << MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][p] << ".");
    166167                    if (n == MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][p]) {
    167168                      n = p;
     
    169170                    }
    170171                  }
    171                   //Log() << Verbose(0) << "Corresponding column index for " << l << " in CurrentFragment is " << n << "." << endl;
     172                  //LOG(0, "Corresponding column index for " << l << " in CurrentFragment is " << n << ".");
    172173                  if (n > ColumnCounter[ KeySets.OrderSet[Order][CurrentFragment] ]) {
    173                     DoeLog(0) && (eLog()<< Verbose(0) << "In fragment No. " << KeySets.OrderSet[Order][CurrentFragment]   << " current column index " << n << " is greater than " << ColumnCounter[ KeySets.OrderSet[Order][CurrentFragment] ] << "!" << endl);
     174                    ELOG(0, "In fragment No. " << KeySets.OrderSet[Order][CurrentFragment]   << " current column index " << n << " is greater than " << ColumnCounter[ KeySets.OrderSet[Order][CurrentFragment] ] << "!");
    174175                    performCriticalExit();
    175176                    return false;
    176177                  }
    177178                  if (Order == SubOrder) { // equal order is always copy from Energies
    178                     //Log() << Verbose(0) << "Adding " << MatrixValues.Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l] << " from [" << k << "][" << l << "] onto [" << m << "][" << n << "]." << endl;
     179                    //LOG(0, "Adding " << MatrixValues.Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l] << " from [" << k << "][" << l << "] onto [" << m << "][" << n << "].");
    179180                    Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][m][n] += MatrixValues.Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l];
    180181                  } else {
    181                     //Log() << Verbose(0) << "Subtracting " << Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l] << " from [" << k << "][" << l << "] onto [" << m << "][" << n << "]." << endl;
     182                    //LOG(0, "Subtracting " << Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l] << " from [" << k << "][" << l << "] onto [" << m << "][" << n << "].");
    182183                    Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][m][n] -= Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l];
    183184                  }
     
    186187            }
    187188            //if ((ColumnCounter[ KeySets.OrderSet[SubOrder][j] ]>1) && (RowCounter[0]-1 >= 1))
    188              //Log() << Verbose(0) << "Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << RowCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][RowCounter[0]-1][1] << endl;
     189             //LOG(0, "Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << RowCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][RowCounter[0]-1][1]);
    189190          }
    190191        } else {
    191           //Log() << Verbose(0) << "Fragment " << KeySets.OrderSet[SubOrder][j] << " is not contained in fragment " << KeySets.OrderSet[Order][CurrentFragment] << "." << endl;
     192          //LOG(0, "Fragment " << KeySets.OrderSet[SubOrder][j] << " is not contained in fragment " << KeySets.OrderSet[Order][CurrentFragment] << ".");
    192193        }
    193194      }
    194195    }
    195    //Log() << Verbose(0) << "Final Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << KeySets.AtomCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][KeySets.AtomCounter[0]-1][1] << endl;
     196   //LOG(0, "Final Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << KeySets.AtomCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][KeySets.AtomCounter[0]-1][1]);
    196197  }
    197198
     
    220221    input.open(file.str().c_str(), ios::in);
    221222    if (input.fail()) {
    222       DoLog(0) && (Log() << Verbose(0) << endl << "HessianMatrix::ParseFragmentMatrix: Unable to open " << file.str() << ", is the directory correct?" << endl);
     223      LOG(0, endl << "HessianMatrix::ParseFragmentMatrix: Unable to open " << file.str() << ", is the directory correct?");
    223224      return false;
    224225    }
     
    230231      while (!zeile.eof()) {
    231232        zeile >> nr;
    232         //Log() << Verbose(0) << "Current index: " << getNr() << "." << endl;
     233        //LOG(0, "Current index: " << getNr() << ".");
    233234        if (nr > RowCounter[MatrixCounter]) {
    234235          RowCounter[MatrixCounter] = nr;
     
    242243
    243244    // allocate last plus one matrix
    244     DoLog(0) && (Log() << Verbose(0) << "Allocating last plus one matrix with " << (RowCounter[MatrixCounter]+1) << " rows and " << ColumnCounter[MatrixCounter] << " columns." << endl);
     245    LOG(0, "Allocating last plus one matrix with " << (RowCounter[MatrixCounter]+1) << " rows and " << ColumnCounter[MatrixCounter] << " columns.");
    245246    if (Matrix[MatrixCounter].size() <= RowCounter[MatrixCounter] + 2)
    246247      Matrix[MatrixCounter].resize(RowCounter[MatrixCounter] + 1);
  • src/Fragmentation/KeySet.cpp

    r50e4e5 r47d041  
    4848bool KeySet::operator<(const KeySet &a) const
    4949{
    50   //Log() << Verbose(0) << "my check is used." << endl;
     50  //LOG(0, "my check is used.");
    5151  if (size() < a.size()) {
    5252    return true;
  • src/Fragmentation/KeySetsContainer.cpp

    r50e4e5 r47d041  
    6464
    6565  FragmentCounter = FCounter;
    66   DoLog(0) && (Log() << Verbose(0) << "Parsing key sets." << endl);
     66  LOG(0, "Parsing key sets.");
    6767  KeySets.resize(FragmentCounter);
    6868  file << name << FRAGMENTPREFIX << KEYSETFILE;
    6969  input.open(file.str().c_str(), ios::in);
    7070  if (input.fail()) {
    71     DoLog(0) && (Log() << Verbose(0) << endl << "KeySetsContainer::ParseKeySets: Unable to open " << file.str() << ", is the directory correct?" << endl);
     71    LOG(0, endl << "KeySetsContainer::ParseKeySets: Unable to open " << file.str() << ", is the directory correct?");
    7272    return false;
    7373  }
     
    8282      KeySets[i][j] = -1;
    8383    FragmentNumber = FixedDigitNumber(FragmentCounter, i);
    84     //Log() << Verbose(0) << FRAGMENTPREFIX << FragmentNumber << "[" << AtomCounter[i] << "]:";
     84    //std::stringstream output;
     85    //output << FRAGMENTPREFIX << FragmentNumber << "[" << AtomCounter[i] << "]:";
    8586    delete[](FragmentNumber);
    8687    input.getline(filename, 1023);
     
    8889    for(int j=0;(j<AtomCounter[i]) && (!line.eof());j++) {
    8990      line >> KeySets[i][j];
    90       //Log() << Verbose(0) << " " << KeySets[i][j];
     91      //output << " " << KeySets[i][j];
    9192    }
    92     //Log() << Verbose(0) << endl;
     93    //LOG(0, output.str());
    9394  }
    9495  input.close();
     
    103104  int Counter;
    104105
    105   DoLog(0) && (Log() << Verbose(0) << "Creating Fragment terms." << endl);
     106  LOG(0, "Creating Fragment terms.");
    106107  // scan through all to determine maximum order
    107108  Order=0;
     
    114115      Order = Counter;
    115116  }
    116   DoLog(0) && (Log() << Verbose(0) << "Found Order is " << Order << "." << endl);
     117  LOG(0, "Found Order is " << Order << ".");
    117118
    118119  // scan through all to determine fragments per order
     
    128129  }
    129130  for(int i=0;i<Order;i++)
    130     DoLog(0) && (Log() << Verbose(0) << "Found No. of Fragments of Order " << i+1 << " is " << FragmentsPerOrder[i] << "." << endl);
     131    LOG(0, "Found No. of Fragments of Order " << i+1 << " is " << FragmentsPerOrder[i] << ".");
    131132
    132133  // scan through all to gather indices to each order set
     
    144145    FragmentsPerOrder[Counter-1]++;
    145146  }
    146   DoLog(0) && (Log() << Verbose(0) << "Printing OrderSet." << endl);
     147  std::stringstream output;
     148  output << "Printing OrderSet: " << std::endl;
    147149  for(int i=0;i<Order;i++) {
    148150    for (int j=0;j<FragmentsPerOrder[i];j++) {
    149       DoLog(0) && (Log() << Verbose(0) << " " << OrderSet[i][j]);
     151      output << " " << OrderSet[i][j];
    150152    }
    151     DoLog(0) && (Log() << Verbose(0) << endl);
    152   }
    153   DoLog(0) && (Log() << Verbose(0) << endl);
    154 
     153    output << std::endl;
     154  }
     155  LOG(0, output.str());
    155156
    156157  return true;
  • src/Fragmentation/MatrixContainer.cpp

    r50e4e5 r47d041  
    5656bool MatrixContainer::InitialiseIndices(class MatrixContainer *_container)
    5757{
    58   DoLog(0) && (Log() << Verbose(0) << "Initialising indices");
    5958  if (_container == NULL) {
    60     DoLog(0) && (Log() << Verbose(0) << " with trivial mapping." << endl);
     59    LOG(0, "Initialising indices with trivial mapping.");
    6160    Indices.resize(MatrixCounter + 1);
    6261    for(int i=MatrixCounter+1;i--;) {
     
    6665    }
    6766  } else {
    68     DoLog(0) && (Log() << Verbose(0) << " from other MatrixContainer." << endl);
     67    std::stringstream output;
    6968    if (MatrixCounter != _container->MatrixCounter)
    7069      return false;
     
    7675      for(int j=_container->RowCounter[i];j--;) {
    7776        Indices[i][j] = _container->Indices[i][j];
    78         //Log() << Verbose(0) << Indices[i][j] << "\t";
     77        output << Indices[i][j] << "\t";
    7978      }
    80       //Log() << Verbose(0) << endl;
    81     }
     79    }
     80    LOG(0, "Initialising indices from other MatrixContainer: " << output.str());
    8281  }
    8382  return true;
     
    104103
    105104  if (input.fail()) {
    106     DoeLog(1) && (eLog()<< Verbose(1) << endl << "MatrixContainer::ParseMatrix: Unable to parse istream." << endl);
     105    ELOG(1, endl << "MatrixContainer::ParseMatrix: Unable to parse istream.");
    107106    //performCriticalExit();
    108107    return false;
     
    119118  for(int k=skipcolumns;k--;)
    120119    line >> Header[MatrixNr];
    121   Log() << Verbose(0) << line.str() << endl;
     120  LOG(0, line.str());
    122121
    123122  // scan header for number of columns
     
    129128      ColumnCounter[MatrixNr]++;
    130129  }
    131   Log() << Verbose(0) << line.str() << endl;
    132   Log() << Verbose(1) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << "." << endl;
     130  LOG(0, line.str());
     131  LOG(1, "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << ".");
    133132  if (ColumnCounter[MatrixNr] == 0) {
    134     DoeLog(0) && (eLog()<< Verbose(0) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << " from ostream." << endl);
     133    ELOG(0, "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << " from ostream.");
    135134    performCriticalExit();
    136135  }
     
    142141  while (!input.eof()) {
    143142    input.getline(filename, 1023);
    144     Log() << Verbose(0) << "Comparing: " << strncmp(filename,"MeanForce",9) << endl;
     143    LOG(0, "Comparing: " << strncmp(filename,"MeanForce",9));
    145144    RowCounter[MatrixNr]++; // then line was not last MeanForce
    146145    if (strncmp(filename,"MeanForce", 9) == 0) {
     
    148147    }
    149148  }
    150   Log() << Verbose(1) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream." << endl;
     149  LOG(1, "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream.");
    151150  if (RowCounter[MatrixNr] == 0) {
    152     DoeLog(0) && (eLog()<< Verbose(0) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream." << endl);
     151    ELOG(0, "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream.");
    153152    performCriticalExit();
    154153  }
     
    177176    input.getline(dummy, 1023);    // skip header
    178177  line.str(dummy);
    179   Log() << Verbose(0) << "Header: " << line.str() << endl;
     178  LOG(0, "Header: " << line.str());
    180179  for(int k=skipcolumns;k--;)  // skip columns in header too
    181180    line >> filename;
     
    183182  for(int j=0;j<RowCounter[MatrixNr];j++) {
    184183    input.getline(filename, 1023);
    185     stringstream lines(filename);
    186     Log() << Verbose(2) << "Matrix at level " << j << ":";// << filename << endl;
     184    std::stringstream lines(filename);
     185    std::stringstream output;
     186    output << "INFO: Matrix at level " << j << ":";// << filename << endl;
    187187    for(int k=skipcolumns;k--;)
    188188      lines >> filename;
    189189    for(int k=0;(k<ColumnCounter[MatrixNr]) && (!lines.eof());k++) {
    190190      lines >> Matrix[MatrixNr][j][k];
    191       Log() << Verbose(1) << " " << std::setprecision(2) << Matrix[MatrixNr][j][k] << endl;
    192     }
     191      output << " " << std::setprecision(2) << Matrix[MatrixNr][j][k] << endl;
     192    }
     193    LOG(1, output.str());
    193194  }
    194195
     
    227228  input.open(file.str().c_str(), ios::in);
    228229  if (input.bad()) {
    229     DoLog(0) && (Log() << Verbose(0) << endl << "MatrixContainer::ParseFragmentMatrix: Unable to open " << file.str() << ", is the directory correct?" << endl);
     230    LOG(0, endl << "MatrixContainer::ParseFragmentMatrix: Unable to open " << file.str() << ", is the directory correct?");
    230231    return false;
    231232  }
     
    236237  }
    237238  input.close();
    238   DoLog(0) && (Log() << Verbose(0) << "Determined " << MatrixCounter << " fragments." << endl);
    239 
    240   DoLog(0) && (Log() << Verbose(0) << "Parsing through each fragment and retrieving " << prefix << suffix << "." << endl);
     239  LOG(0, "Determined " << MatrixCounter << " fragments.");
     240
     241  LOG(0, "Parsing through each fragment and retrieving " << prefix << suffix << ".");
    241242  Header.clear();
    242243  Matrix.clear();
     
    253254    file << name << FRAGMENTPREFIX << FragmentNumber << prefix << suffix;
    254255    std::ifstream input(file.str().c_str());
    255     DoLog(0) &&( Log() << Verbose(0) << "Opening " << file.str() << " ... " << endl);
     256    LOG(1, "INFO: Opening " << file.str() << " ... ");
    256257    if (!ParseMatrix(input, skiplines, skipcolumns, i)) {
    257258      input.close();
     
    373374  // go through each order
    374375  for (int CurrentFragment=0;CurrentFragment<KeySets.FragmentsPerOrder[Order];CurrentFragment++) {
    375     //Log() << Verbose(0) << "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << "." << endl;
     376    //LOG(0, "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << ".");
    376377    // then go per order through each suborder and pick together all the terms that contain this fragment
    377378    for(int SubOrder=0;SubOrder<=Order;SubOrder++) { // go through all suborders up to the desired order
    378379      for (int j=0;j<KeySets.FragmentsPerOrder[SubOrder];j++) { // go through all possible fragments of size suborder
    379380        if (KeySets.Contains(KeySets.OrderSet[Order][CurrentFragment], KeySets.OrderSet[SubOrder][j])) {
    380           //Log() << Verbose(0) << "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << "." << endl;
     381          //LOG(0, "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << ".");
    381382          // if the fragment's indices are all in the current fragment
    382383          for(int k=0;k<RowCounter[ KeySets.OrderSet[SubOrder][j] ];k++) { // go through all atoms in this fragment
    383384            int m = MatrixValues.Indices[ KeySets.OrderSet[SubOrder][j] ][k];
    384             //Log() << Verbose(0) << "Current index is " << k << "/" << m << "." << endl;
     385            //LOG(0, "Current index is " << k << "/" << m << ".");
    385386            if (m != -1) { // if it's not an added hydrogen
    386387              for (int l=0;l<RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ];l++) { // look for the corresponding index in the current fragment
    387                 //Log() << Verbose(0) << "Comparing " << m << " with " << MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l] << "." << endl;
     388                //LOG(0, "Comparing " << m << " with " << MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l] << ".");
    388389                if (m == MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l]) {
    389390                  m = l;
     
    391392                }
    392393              }
    393               //Log() << Verbose(0) << "Corresponding index in CurrentFragment is " << m << "." << endl;
     394              //LOG(0, "Corresponding index in CurrentFragment is " << m << ".");
    394395              if (m > RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ]) {
    395                 DoeLog(0) && (eLog()<< Verbose(0) << "In fragment No. " << KeySets.OrderSet[Order][CurrentFragment]   << " current force index " << m << " is greater than " << RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ] << "!" << endl);
     396                ELOG(0, "In fragment No. " << KeySets.OrderSet[Order][CurrentFragment]   << " current force index " << m << " is greater than " << RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ] << "!");
    396397                performCriticalExit();
    397398                return false;
     
    406407            }
    407408            //if ((ColumnCounter[ KeySets.OrderSet[SubOrder][j] ]>1) && (RowCounter[0]-1 >= 1))
    408              //Log() << Verbose(0) << "Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << RowCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][RowCounter[0]-1][1] << endl;
     409             //LOG(0, "Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << RowCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][RowCounter[0]-1][1]);
    409410          }
    410411        } else {
    411           //Log() << Verbose(0) << "Fragment " << KeySets.OrderSet[SubOrder][j] << " is not contained in fragment " << KeySets.OrderSet[Order][CurrentFragment] << "." << endl;
     412          //LOG(0, "Fragment " << KeySets.OrderSet[SubOrder][j] << " is not contained in fragment " << KeySets.OrderSet[Order][CurrentFragment] << ".");
    412413        }
    413414      }
    414415    }
    415    //Log() << Verbose(0) << "Final Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << KeySets.AtomCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][KeySets.AtomCounter[0]-1][1] << endl;
     416   //LOG(0, "Final Fragments[ KeySets.OrderSet[" << Order << "][" << CurrentFragment << "]=" << KeySets.OrderSet[Order][CurrentFragment] << " ][" << KeySets.AtomCounter[0]-1 << "][" << 1 << "] = " <<  Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][KeySets.AtomCounter[0]-1][1]);
    416417  }
    417418
     
    429430  char *FragmentNumber = NULL;
    430431
    431   DoLog(0) && (Log() << Verbose(0) << "Writing fragment files." << endl);
     432  LOG(0, "Writing fragment files.");
    432433  for(int i=0;i<MatrixCounter;i++) {
    433434    stringstream line;
     
    437438    output.open(line.str().c_str(), ios::out);
    438439    if (output == NULL) {
    439       DoeLog(0) && (eLog()<< Verbose(0) << "MatrixContainer::WriteTotalFragments: Unable to open output energy file " << line.str() << "!" << endl);
     440      ELOG(0, "MatrixContainer::WriteTotalFragments: Unable to open output energy file " << line.str() << "!");
    440441      performCriticalExit();
    441442      return false;
     
    463464  stringstream line;
    464465
    465   DoLog(0) && (Log() << Verbose(0) << "Writing matrix values of " << suffix << "." << endl);
     466  LOG(0, "Writing matrix values of " << suffix << ".");
    466467  line << name << prefix << suffix;
    467468  output.open(line.str().c_str(), ios::out);
    468469  if (output == NULL) {
    469     DoeLog(0) && (eLog()<< Verbose(0) << "MatrixContainer::WriteLastMatrix: Unable to open output matrix file " << line.str() << "!" << endl);
     470    ELOG(0, "MatrixContainer::WriteLastMatrix: Unable to open output matrix file " << line.str() << "!");
    470471    performCriticalExit();
    471472    return false;
  • src/Fragmentation/PowerSetGenerator.cpp

    r50e4e5 r47d041  
    2222#include "PowerSetGenerator.hpp"
    2323
     24#include <sstream>
     25
     26#include "CodePatterns/Info.hpp"
    2427#include "CodePatterns/Log.hpp"
    2528
     
    5356void PowerSetGenerator::ClearingTouched(int verbosity, int *&TouchedList, int SubOrder, int &TouchedIndex)
    5457{
    55   Log() << Verbose(1+verbosity) << "Clearing touched list." << endl;
     58  LOG(1+verbosity, "Clearing touched list.");
    5659  for (TouchedIndex=SubOrder+1;TouchedIndex--;)  // empty touched list
    5760    TouchedList[TouchedIndex] = -1;
     
    8184    if (bit) {  // if bit is set, we add this bond partner
    8285      OtherWalker = BondsSet[j]->rightatom;  // rightatom is always the one more distant, i.e. the one to add
    83       //Log() << Verbose(1+verbosity) << "Current Bond is " << BondsSet[j] << ", checking on " << *OtherWalker << "." << endl;
    84       Log() << Verbose(2+verbosity) << "Adding " << *OtherWalker << " with nr " << OtherWalker->getNr() << "." << endl;
     86      //LOG(1+verbosity, "Current Bond is " << BondsSet[j] << ", checking on " << *OtherWalker << ".");
     87      LOG(2+verbosity, "Adding " << *OtherWalker << " with nr " << OtherWalker->getNr() << ".");
    8588      TestKeySetInsert = FragmentSet->insert(OtherWalker->getNr());
    8689      if (TestKeySetInsert.second) {
     
    8891        Added++;
    8992      } else {
    90         Log() << Verbose(2+verbosity) << "This was item was already present in the keyset." << endl;
     93        LOG(2+verbosity, "This was item was already present in the keyset.");
    9194      }
    9295    } else {
    93       Log() << Verbose(2+verbosity) << "Not adding." << endl;
     96      LOG(2+verbosity, "Not adding.");
    9497    }
    9598  }
     
    151154  for(int j=0;j<TouchedIndex;j++) {
    152155    Removal = TouchedList[j];
    153     Log() << Verbose(2+verbosity) << "Removing item nr. " << Removal << " from snake stack." << endl;
     156    LOG(2+verbosity, "Removing item nr. " << Removal << " from snake stack.");
    154157    FragmentSet->erase(Removal);
    155158    TouchedList[j] = -1;
    156159  }
    157   DoLog(2) && (Log() << Verbose(2) << "Remaining local nr.s on snake stack are: ");
     160  std::stringstream output;
     161  output << "Remaining local nr.s on snake stack are: ";
    158162  for(KeySet::iterator runner = FragmentSet->begin(); runner != FragmentSet->end(); runner++)
    159     DoLog(0) && (Log() << Verbose(0) << (*runner) << " ");
    160   DoLog(0) && (Log() << Verbose(0) << endl);
     163    output << (*runner) << " ";
     164  LOG(2, output.str());
    161165  TouchedIndex = 0; // set Index to 0 for list of atoms added on this level
    162166};
     
    180184  int Counter = FragmentSearch->FragmentCounter; // mark current value of counter
    181185
    182   DoLog(0) && (Log() << Verbose(0) << endl);
    183   DoLog(0) && (Log() << Verbose(0) << "Begin of PowerSetGenerator with order " << BondsPerSPList.getOrder() << " at Root " << *FragmentSearch->getRoot() << "." << endl);
     186  LOG(0, std::endl);
     187  LOG(0, "Begin of PowerSetGenerator with order " << BondsPerSPList.getOrder() << " at Root " << *FragmentSearch->getRoot() << ".");
    184188
    185189  BondsPerSPList.SetSPList(FragmentSearch->getRoot());
     
    193197  // creating fragments with the found edge sets  (may be done in reverse order, faster)
    194198  int SP = BondsPerSPList.CountNumbersInBondsList();
    195   DoLog(0) && (Log() << Verbose(0) << "Total number of edges is " << SP << "." << endl);
     199  LOG(0, "Total number of edges is " << SP << ".");
    196200  if (SP >= (BondsPerSPList.getOrder()-1)) {
    197201    // start with root (push on fragment stack)
    198     DoLog(0) && (Log() << Verbose(0) << "Starting fragment generation with " << *FragmentSearch->getRoot() << ", local nr is " << FragmentSearch->getRoot()->getNr() << "." << endl);
     202    LOG(0, "Starting fragment generation with " << *FragmentSearch->getRoot() << ", local nr is " << FragmentSearch->getRoot()->getNr() << ".");
    199203    FragmentSearch->FragmentSet->clear();
    200     DoLog(0) && (Log() << Verbose(0) << "Preparing subset for this root and calling generator." << endl);
     204    LOG(0, "Preparing subset for this root and calling generator.");
    201205
    202206    // prepare the subset and call the generator
     
    209213    SPFragmentGenerator(0, BondsList, BondsPerSPList.BondsPerSPCount[0], BondsPerSPList.getOrder());
    210214  } else {
    211     DoLog(0) && (Log() << Verbose(0) << "Not enough total number of edges to build " << BondsPerSPList.getOrder() << "-body fragments." << endl);
     215    LOG(0, "Not enough total number of edges to build " << BondsPerSPList.getOrder() << "-body fragments.");
    212216  }
    213217
    214218  // as FragmentSearch structure is used only once, we don't have to clean it anymore
    215219  // remove root from stack
    216   DoLog(0) && (Log() << Verbose(0) << "Removing root again from stack." << endl);
     220  LOG(0, "Removing root again from stack.");
    217221  FragmentSearch->FragmentSet->erase(FragmentSearch->getRoot()->getNr());
    218222
     
    221225
    222226  // return list
    223   DoLog(0) && (Log() << Verbose(0) << "End of PowerSetGenerator." << endl);
     227  LOG(0, "End of PowerSetGenerator.");
    224228  return (FragmentSearch->FragmentCounter - Counter);
    225229};
     
    240244void PowerSetGenerator::SPFragmentGenerator(int RootDistance, std::vector<bond *> &BondsSet, int SetDimension, int SubOrder)
    241245{
     246  Info info(__func__);
    242247  int verbosity = 0; //FragmentSearch->ANOVAOrder-SubOrder;
    243248  int NumCombinations;
     
    253258  // recursively for the next level
    254259
    255   Log() << Verbose(1+verbosity) << "Begin of SPFragmentGenerator." << endl;
    256   Log() << Verbose(1+verbosity) << "We are " << RootDistance << " away from Root, which is " << *FragmentSearch->getRoot() << ", SubOrder is " << SubOrder << ", SetDimension is " << SetDimension << " and this means " <<  NumCombinations-1 << " combination(s)." << endl;
     260  LOG(1+verbosity, "We are " << RootDistance << " away from Root, which is " << *FragmentSearch->getRoot() << ", SubOrder is " << SubOrder << ", SetDimension is " << SetDimension << " and this means " <<  NumCombinations-1 << " combination(s).");
    257261
    258262  // initialised touched list (stores added atoms on this level)
     
    260264
    261265  // create every possible combination of the endpieces
    262   Log() << Verbose(1+verbosity) << "Going through all combinations of the power set." << endl;
     266  LOG(1+verbosity, "Going through all combinations of the power set.");
    263267  for (int i=1;i<NumCombinations;i++) {  // sweep through all power set combinations (skip empty set!)
    264268    // count the set bit of i
     
    267271      bits += (i & (1 << j)) >> j;
    268272
    269     Log() << Verbose(1+verbosity) << "Current set is " << Binary(i | (1 << SetDimension)) << ", number of bits is " << bits << "." << endl;
     273    LOG(1+verbosity, "Current set is " << Binary(i | (1 << SetDimension)) << ", number of bits is " << bits << ".");
    270274    if (bits <= SubOrder) { // if not greater than additional atoms allowed on stack, continue
    271275      // --1-- add this set of the power set of bond partners to the snake stack
     
    274278      SpaceLeft = SubOrder - Added ;// SubOrder - bits; // due to item's maybe being already present, this does not work anymore
    275279      if (SpaceLeft > 0) {
    276         Log() << Verbose(1+verbosity) << "There's still some space left on stack: " << SpaceLeft << "." << endl;
     280        LOG(1+verbosity, "There's still some space left on stack: " << SpaceLeft << ".");
    277281        if (SubOrder > 1) {    // Due to Added above we have to check extra whether we're not already reaching beyond the desired Order
    278282          // --2-- look at all added end pieces of this combination, construct bond subsets and sweep through a power set of these by recursion
     
    288292
    289293          // then iterate
    290           Log() << Verbose(2+verbosity) << "Calling subset generator " << SP << " away from root " << *FragmentSearch->getRoot() << " with sub set dimension " << SubSetDimension << "." << endl;
     294          LOG(2+verbosity, "Calling subset generator " << SP << " away from root " << *FragmentSearch->getRoot() << " with sub set dimension " << SubSetDimension << ".");
    291295          SPFragmentGenerator(SP, BondsList, SubSetDimension, SubOrder-bits);
    292296        }
    293297      } else {
    294298        // --2-- otherwise store the complete fragment
    295         Log() << Verbose(1+verbosity) << "Enough items on stack for a fragment!" << endl;
     299        LOG(1+verbosity, "Enough items on stack for a fragment!");
    296300        // store fragment as a KeySet
    297         DoLog(2) && (Log() << Verbose(2) << "Found a new fragment[" << FragmentSearch->FragmentCounter << "], local nr.s are: ");
    298         for(KeySet::iterator runner = FragmentSearch->FragmentSet->begin(); runner != FragmentSearch->FragmentSet->end(); runner++)
    299           DoLog(0) && (Log() << Verbose(0) << (*runner) << " ");
    300         DoLog(0) && (Log() << Verbose(0) << endl);
     301        if (DoLog(2)) {
     302          std::stringstream output;
     303          output << "Found a new fragment[" << FragmentSearch->FragmentCounter << "], local nr.s are: ";
     304          for(KeySet::iterator runner = FragmentSearch->FragmentSet->begin(); runner != FragmentSearch->FragmentSet->end(); runner++)
     305            output << (*runner) << " ";
     306          LOG(2, output.str());
     307        }
    301308        FragmentSearch->InsertFragmentIntoGraph();
    302309      }
    303310
    304311      // --3-- remove all added items in this level from snake stack
    305       Log() << Verbose(1+verbosity) << "Removing all items that were added on this SP level " << RootDistance << "." << endl;
     312      LOG(1+verbosity, "Removing all items that were added on this SP level " << RootDistance << ".");
    306313      RemoveAllTouchedFromSnakeStack(verbosity, FragmentSearch->FragmentSet, TouchedList, TouchedIndex);
    307314    } else {
    308       Log() << Verbose(2+verbosity) << "More atoms to add for this set (" << bits << ") than space left on stack " << SubOrder << ", skipping this set." << endl;
     315      LOG(2+verbosity, "More atoms to add for this set (" << bits << ") than space left on stack " << SubOrder << ", skipping this set.");
    309316    }
    310317  }
    311318  delete[](TouchedList);
    312   Log() << Verbose(1+verbosity) << "End of SPFragmentGenerator, " << RootDistance << " away from Root " << *FragmentSearch->getRoot() << " and SubOrder is " << SubOrder << "." << endl;
    313 };
     319  LOG(1+verbosity, "End of SPFragmentGenerator, " << RootDistance << " away from Root " << *FragmentSearch->getRoot() << " and SubOrder is " << SubOrder << ".");
     320};
  • src/Fragmentation/UniqueFragments.cpp

    r50e4e5 r47d041  
    5151  testGraphInsert = Leaflet->insert(GraphPair (*FragmentSet,std::pair<int,double>(FragmentCounter,TEFactor)));  // store fragment number and current factor
    5252  if (testGraphInsert.second) {
    53     DoLog(2) && (Log() << Verbose(2) << "KeySet " << FragmentCounter << " successfully inserted." << endl);
     53    LOG(2, "KeySet " << FragmentCounter << " successfully inserted.");
    5454    FragmentCounter++;
    5555  } else {
    56     DoLog(2) && (Log() << Verbose(2) << "KeySet " << FragmentCounter << " failed to insert, present fragment is " << ((*(testGraphInsert.first)).second).first << endl);
     56    LOG(2, "KeySet " << FragmentCounter << " failed to insert, present fragment is " << ((*(testGraphInsert.first)).second).first);
    5757    ((*(testGraphInsert.first)).second).second += TEFactor;  // increase the "created" counter
    58     DoLog(2) && (Log() << Verbose(2) << "New factor is " << ((*(testGraphInsert.first)).second).second << "." << endl);
     58    LOG(2, "New factor is " << ((*(testGraphInsert.first)).second).second << ".");
    5959  }
    6060};
  • src/Fragmentation/analyzer.cpp

    r50e4e5 r47d041  
    7979  int counter = 0;
    8080
    81   DoLog(0) && (Log() << Verbose(0) << "ANOVA Analyzer" << endl);
    82   DoLog(0) && (Log() << Verbose(0) << "==============" << endl);
     81  LOG(0, "ANOVA Analyzer");
     82  LOG(0, "==============");
    8383
    8484  // Get the command line options
    8585  if (argc < 4) {
    86     DoLog(0) && (Log() << Verbose(0) << "Usage: " << argv[0] << " <inputdir> <prefix> <outputdir> [elementsdb]" << endl);
    87     DoLog(0) && (Log() << Verbose(0) << "<inputdir>\ttherein the output of a molecuilder fragmentation is expected, each fragment with a subdir containing an energy.all and a forces.all file." << endl);
    88     DoLog(0) && (Log() << Verbose(0) << "<prefix>\tprefix of energy and forces file." << endl);
    89     DoLog(0) && (Log() << Verbose(0) << "<outputdir>\tcreated plotfiles and datafiles are placed into this directory " << endl);
    90     DoLog(0) && (Log() << Verbose(0) << "[elementsdb]\tpath to elements database, needed for shieldings." << endl);
     86    LOG(0, "Usage: " << argv[0] << " <inputdir> <prefix> <outputdir> [elementsdb]");
     87    LOG(0, "<inputdir>\ttherein the output of a molecuilder fragmentation is expected, each fragment with a subdir containing an energy.all and a forces.all file.");
     88    LOG(0, "<prefix>\tprefix of energy and forces file.");
     89    LOG(0, "<outputdir>\tcreated plotfiles and datafiles are placed into this directory ");
     90    LOG(0, "[elementsdb]\tpath to elements database, needed for shieldings.");
    9191    return 1;
    9292  } else {
     
    9797
    9898  if (argc > 4) {
    99     DoLog(0) && (Log() << Verbose(0) << "Loading periodentafel." << endl);
     99    LOG(0, "Loading periodentafel.");
    100100    periode = new periodentafel;
    101101    periode->LoadPeriodentafel(argv[4]);
     
    112112  if (!Hcorrection.ParseFragmentMatrix(argv[1], "", HCORRECTIONSUFFIX,0,0)) {
    113113    NoHCorrection = true;
    114     DoeLog(2) && (eLog()<< Verbose(2) << "No HCorrection file found, skipping these." << endl);
     114    ELOG(2, "No HCorrection file found, skipping these.");
    115115  }
    116116 
     
    118118  if (!Hessian.ParseFragmentMatrix(argv[1], dir, HessianSuffix,0,0)) {
    119119    NoHessian = true;
    120     DoeLog(2) && (eLog()<< Verbose(2) << "No Hessian file found, skipping these." << endl);
     120    ELOG(2, "No Hessian file found, skipping these.");
    121121  }
    122122  if (!Time.ParseFragmentMatrix(argv[1], dir, TimeSuffix, 10,1)) {
    123123    NoTime = true;
    124     DoeLog(2) && (eLog()<< Verbose(2) << "No speed file found, skipping these." << endl);
     124    ELOG(2, "No speed file found, skipping these.");
    125125  }
    126126  if (periode != NULL) { // also look for PAS values
     
    264264  // +++++++++++++++ ANALYZING ++++++++++++++++++++++++++++++
    265265
    266   DoLog(0) && (Log() << Verbose(0) << "Analyzing ..." << endl);
     266  LOG(0, "Analyzing ...");
    267267
    268268  // ======================================= Creating the data files ==============================================================
     
    575575  delete(periode);
    576576  delete[](dir);
    577   DoLog(0) && (Log() << Verbose(0) << "done." << endl);
     577  LOG(0, "done.");
    578578  return 0;
    579579};
  • src/Fragmentation/datacreator.cpp

    r50e4e5 r47d041  
    5151  output.open(name.str().c_str(), ios::out);
    5252  if (output == NULL) {
    53     DoLog(0) && (Log() << Verbose(0) << "Unable to open " << name.str() << " for writing, is directory correct?" << endl);
     53    LOG(0, "Unable to open " << name.str() << " for writing, is directory correct?");
    5454    return false;
    5555  }
     
    6969  output.open(name.str().c_str(), ios::app);
    7070  if (output == NULL) {
    71     DoLog(0) && (Log() << Verbose(0) << "Unable to open " << name.str() << " for writing, is directory correct?" << endl);
     71    LOG(0, "Unable to open " << name.str() << " for writing, is directory correct?");
    7272    return false;
    7373  }
     
    8989  filename << prefix << ".dat";
    9090  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    91   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     91  LOG(0, msg);
    9292  output << "# " << msg << ", created on " << datum;
    9393  output << "#Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
     
    122122  filename << prefix << ".dat";
    123123  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    124   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     124  LOG(0, msg);
    125125  output << "# " << msg << ", created on " << datum;
    126126  output << "#Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
     
    159159  filename << prefix << ".dat";
    160160  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    161   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     161  LOG(0, msg);
    162162  output << "# " << msg << ", created on " << datum;
    163163  output << "# Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
     
    191191  filename << prefix << ".dat";
    192192  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    193   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     193  LOG(0, msg);
    194194  output << "# " << msg << ", created on " << datum;
    195195  output << "# Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
     
    224224  filename << prefix << ".dat";
    225225  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    226   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     226  LOG(0, msg);
    227227  output << "# " << msg << ", created on " << datum;
    228228  output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
    229229  Fragments.SetLastMatrix(Force.Matrix[Force.MatrixCounter], 0);
    230230  for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
    231     //Log() << Verbose(0) << "Current order is " << BondOrder << "." << endl;
     231    //LOG(0, "Current order is " << BondOrder << ".");
    232232    Fragments.SumSubForces(Fragments, KeySets, BondOrder, -1.);
    233233    // errors per atom
     
    270270  filename << prefix << ".dat";
    271271  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    272   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     272  LOG(0, msg);
    273273  output << "# " << msg << ", created on " << datum;
    274274  output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
    275275  for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
    276     //Log() << Verbose(0) << "Current order is " << BondOrder << "." << endl;
     276    //LOG(0, "Current order is " << BondOrder << ".");
    277277    Fragments.SumSubForces(Fragments, KeySets, BondOrder, 1.);
    278278    // errors per atom
     
    307307  filename << prefix << ".dat";
    308308  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    309   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     309  LOG(0, msg);
    310310  output << "# " << msg << ", created on " << datum;
    311311  output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
    312312  Fragments.SetLastMatrix(Hessian.Matrix[Hessian.MatrixCounter], 0);
    313313  for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
    314     //Log() << Verbose(0) << "Current order is " << BondOrder << "." << endl;
     314    //LOG(0, "Current order is " << BondOrder << ".");
    315315    Fragments.SumSubHessians(Fragments, KeySets, BondOrder, -1.);
    316316    // errors per atom
     
    347347  filename << prefix << ".dat";
    348348  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    349   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     349  LOG(0, msg);
    350350  output << "# " << msg << ", created on " << datum;
    351351  output << "# AtomNo\t";
     
    357357  output << Fragments.RowCounter[ Fragments.MatrixCounter ] << "\t";
    358358  for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
    359     //Log() << Verbose(0) << "Current order is " << BondOrder << "." << endl;
     359    //LOG(0, "Current order is " << BondOrder << ".");
    360360    Fragments.SumSubHessians(Fragments, KeySets, BondOrder, -1.);
    361361    // frobenius norm of errors per atom
     
    389389  filename << prefix << ".dat";
    390390  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    391   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     391  LOG(0, msg);
    392392  output << "# " << msg << ", created on " << datum;
    393393  output << "# AtomNo\t" << Fragments.Header[ Fragments.MatrixCounter ] << endl;
    394394  Fragments.SetLastMatrix(0., 0);
    395395  for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
    396     //Log() << Verbose(0) << "Current order is " << BondOrder << "." << endl;
     396    //LOG(0, "Current order is " << BondOrder << ".");
    397397    Fragments.SumSubHessians(Fragments, KeySets, BondOrder, 1.);
    398398    // errors per atom
     
    419419  filename << prefix << ".dat";
    420420  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    421   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     421  LOG(0, msg);
    422422  output << "# " << msg << ", created on " << datum << endl;
    423423  output << "#Order\tFrag.No.\t" << Fragment.Header[ Fragment.MatrixCounter ] << endl;
     
    484484  filename << prefix << ".dat";
    485485  if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
    486   DoLog(0) && (Log() << Verbose(0) << msg << endl);
     486  LOG(0, msg);
    487487  output << "# " << msg << ", created on " << datum;
    488488  output << "#Order\tFrag.No.\t" << Fragment.Header[ Fragment.MatrixCounter ] << endl;
  • src/Fragmentation/fragmentation_helpers.cpp

    r50e4e5 r47d041  
    4545void PrintAtomMask(bool *AtomMask, int AtomCount)
    4646{
    47   DoLog(2) && (Log() << Verbose(2) << "              ");
     47  std::stringstream output;
     48  output << "              ";
    4849  for(int i=0;i<AtomCount;i++)
    49     DoLog(0) && (Log() << Verbose(0) << (i % 10));
    50   DoLog(0) && (Log() << Verbose(0) << endl);
    51   DoLog(2) && (Log() << Verbose(2) << "Atom mask is: ");
     50    output << (i % 10);
     51  LOG(2, output.str());
     52  output.clear();
     53  output << "Atom mask is: ";
    5254  for(int i=0;i<AtomCount;i++)
    53     DoLog(0) && (Log() << Verbose(0) << (AtomMask[i] ? "t" : "f"));
    54   DoLog(0) && (Log() << Verbose(0) << endl);
     55    output << (AtomMask[i] ? "t" : "f");
     56  LOG(2, output.str());
    5557};
    5658
     
    7173  atom *Walker = NULL;
    7274
    73   DoLog(0) && (Log() << Verbose(0) << "Combining the lists of all orders per order and finally into a single one." << endl);
     75  LOG(0, "Combining the lists of all orders per order and finally into a single one.");
    7476  if (FragmentList == NULL) {
    7577    FragmentList = new Graph;
     
    104106void FreeAllOrdersList(Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol)
    105107{
    106   DoLog(1) && (Log() << Verbose(1) << "Free'ing the lists of all orders per order." << endl);
     108  LOG(1, "Free'ing the lists of all orders per order.");
    107109  int RootNr = 0;
    108110  int RootKeyNr = 0;
  • src/Fragmentation/helpers.cpp

    r50e4e5 r47d041  
    4444  if (input.fail()) {
    4545    if (!test)
    46       DoLog(0) && (Log() << Verbose(0) << endl << "FilePresent: Unable to open " << filename << ", is the directory correct?" << endl);
     46      LOG(0, endl << "FilePresent: Unable to open " << filename << ", is the directory correct?");
    4747    return false;
    4848  }
     
    7878    number = (int)floor(((double)number / 10.));
    7979    order++;
    80     //Log() << Verbose(0) << "Number is " << number << ", order is " << order << "." << std::endl;
     80    //LOG(0, "Number is " << number << ", order is " << order << ".");
    8181  }
    8282  // allocate string
     
    8989    number = (int)floor(((double)number / 10.));
    9090  }
    91   //Log() << Verbose(0) << returnstring << endl;
     91  //LOG(0, returnstring);
    9292  return returnstring;
    9393};
  • src/Fragmentation/joiner.cpp

    r50e4e5 r47d041  
    6767  bool NoHessian = false;
    6868
    69   DoLog(0) && (Log() << Verbose(0) << "Joiner" << endl);
    70   DoLog(0) && (Log() << Verbose(0) << "======" << endl);
     69  LOG(0, "Joiner");
     70  LOG(0, "======");
    7171
    7272  // Get the command line options
    7373  if (argc < 3) {
    74     DoLog(0) && (Log() << Verbose(0) << "Usage: " << argv[0] << " <inputdir> <prefix> [elementsdb]" << endl);
    75     DoLog(0) && (Log() << Verbose(0) << "<inputdir>\ttherein the output of a molecuilder fragmentation is expected, each fragment with a subdir containing an energy.all and a forces.all file." << endl);
    76     DoLog(0) && (Log() << Verbose(0) << "<prefix>\tprefix of energy and forces file." << endl);
    77     DoLog(0) && (Log() << Verbose(0) << "[elementsdb]\tpath to elements database, needed for shieldings." << endl);
     74    LOG(0, "Usage: " << argv[0] << " <inputdir> <prefix> [elementsdb]");
     75    LOG(0, "<inputdir>\ttherein the output of a molecuilder fragmentation is expected, each fragment with a subdir containing an energy.all and a forces.all file.");
     76    LOG(0, "<prefix>\tprefix of energy and forces file.");
     77    LOG(0, "[elementsdb]\tpath to elements database, needed for shieldings.");
    7878    return 1;
    7979  } else {
     
    9797  if (!Hcorrection.ParseFragmentMatrix(argv[1], "", HCORRECTIONSUFFIX, 0,0)) {
    9898    NoHCorrection = true;
    99     DoLog(0) && (Log() << Verbose(0) << "No HCorrection matrices found, skipping these." << endl);
     99    LOG(0, "No HCorrection matrices found, skipping these.");
    100100  }
    101101  if (!Force.ParseFragmentMatrix(argv[1], dir, ForcesSuffix, 0,0)) return 1;
    102102  if (!Hessian.ParseFragmentMatrix(argv[1], dir, HessianSuffix, 0,0)) {
    103103    NoHessian = true;
    104     DoLog(0) && (Log() << Verbose(0) << "No hessian matrices found, skipping these." << endl);
     104    LOG(0, "No hessian matrices found, skipping these.");
    105105  }
    106106  if (periode != NULL) { // also look for PAS values
     
    166166  for (int BondOrder=0;BondOrder<KeySet.Order;BondOrder++) {
    167167    // --------- sum up energy --------------------
    168     DoLog(0) && (Log() << Verbose(0) << "Summing energy of order " << BondOrder+1 << " ..." << endl);
     168    LOG(0, "Summing energy of order " << BondOrder+1 << " ...");
    169169    if (!EnergyFragments.SumSubManyBodyTerms(Energy, KeySet, BondOrder)) return 1;
    170170    if (!NoHCorrection) {
     
    175175      if (!Energy.SumSubEnergy(EnergyFragments, NULL, KeySet, BondOrder, 1.)) return 1;
    176176    // --------- sum up Forces --------------------
    177     DoLog(0) && (Log() << Verbose(0) << "Summing forces of order " << BondOrder+1 << " ..." << endl);
     177    LOG(0, "Summing forces of order " << BondOrder+1 << " ...");
    178178    if (!ForceFragments.SumSubManyBodyTerms(Force, KeySet, BondOrder)) return 1;
    179179    if (!Force.SumSubForces(ForceFragments, KeySet, BondOrder, 1.)) return 1;
    180180    // --------- sum up Hessian --------------------
    181181    if (!NoHessian) {
    182       DoLog(0) && (Log() << Verbose(0) << "Summing Hessian of order " << BondOrder+1 << " ..." << endl);
     182      LOG(0, "Summing Hessian of order " << BondOrder+1 << " ...");
    183183      if (!HessianFragments.SumSubManyBodyTerms(Hessian, KeySet, BondOrder)) return 1;
    184184      if (!Hessian.SumSubHessians(HessianFragments, KeySet, BondOrder, 1.)) return 1;
    185185    }
    186186    if (periode != NULL) { // also look for PAS values
    187       DoLog(0) && (Log() << Verbose(0) << "Summing shieldings and susceptibilities of order " << BondOrder+1 << " ..." << endl);
     187      LOG(0, "Summing shieldings and susceptibilities of order " << BondOrder+1 << " ...");
    188188      if (!ShieldingFragments.SumSubManyBodyTerms(Shielding, KeySet, BondOrder)) return 1;
    189189      if (!Shielding.SumSubForces(ShieldingFragments, KeySet, BondOrder, 1.)) return 1;
     
    199199    prefix.str(" ");
    200200    prefix << dir << OrderSuffix << (BondOrder+1);
    201     DoLog(0) && (Log() << Verbose(0) << "Writing files " << argv[1] << prefix.str() << ". ..." << endl);
     201    LOG(0, "Writing files " << argv[1] << prefix.str() << ". ...");
    202202    // energy
    203203    if (!Energy.WriteLastMatrix(argv[1], (prefix.str()).c_str(), EnergySuffix)) return 1;
     
    268268  delete(periode);
    269269  delete[](dir);
    270   DoLog(0) && (Log() << Verbose(0) << "done." << endl);
     270  LOG(0, "done.");
    271271  return 0;
    272272};
Note: See TracChangeset for help on using the changeset viewer.