Changeset 47d041 for src/Fragmentation
- Timestamp:
- Nov 3, 2011, 7:44:01 PM (13 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 41a467
- Parents:
- 50e4e5
- git-author:
- Frederik Heber <heber@…> (10/27/11 11:53:58)
- git-committer:
- Frederik Heber <heber@…> (11/03/11 19:44:01)
- Location:
- src/Fragmentation
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/AdaptivityMap.cpp
r50e4e5 r47d041 68 68 (*PresentItem).second.first = fabs(Value); 69 69 (*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 << "])."); 71 71 } 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 << "."); 73 73 } 74 74 } 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 << "])."); 76 76 } 77 77 } else { 78 DoLog(1) && (Log() << Verbose(1) << "No Fragment under No. " << No << "found." << endl);78 LOG(1, "No Fragment under No. " << No << "found."); 79 79 } 80 80 }; … … 93 93 94 94 if (InputFile.fail()) { 95 DoeLog(1) && (eLog() << Verbose(1) << "Cannot find file " << filename << "." << endl);95 ELOG(1, "Cannot find file " << filename << "."); 96 96 return; 97 97 } … … 104 104 InputFile.getline(buffer, MAXSTRINGSIZE); 105 105 if (strlen(buffer) > 2) { 106 //L og() << Verbose(2) << "Scanning: " << buffer << endl;106 //LOG(2, "Scanning: " << buffer); 107 107 stringstream line(buffer); 108 108 line >> FragOrder; … … 111 111 line >> ws >> Value; 112 112 No -= 1; // indices start at 1 in file, not 0 113 //L og() << Verbose(2) << " - yields (" << No << "," << Value << ", " << FragOrder << ")" << endl;113 //LOG(2, " - yields (" << No << "," << Value << ", " << FragOrder << ")"); 114 114 115 115 // clean the list of those entries that have been superceded by higher order terms already … … 134 134 "AdaptivityMap::ReMapAdaptiveCriteriaListToValue() - AdaptiveCriteriaList is not allocated yet."); 135 135 FinalRootCandidates = new AdaptiveCriteriaValueMap; 136 DoLog(1) && (Log() << Verbose(1) << "Root candidate list is: " << endl);136 LOG(1, "Root candidate list is: "); 137 137 for(AdaptiveCriteriaIndexMap::const_iterator runner = AdaptiveCriteriaList->begin(); runner != AdaptiveCriteriaList->end(); runner++) { 138 138 Walker = mol->FindAtom((*runner).first); … … 140 140 //if ((*runner).second.second >= Walker->AdaptiveOrder) { // only insert if this is an "active" root site for the current order 141 141 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 << "])"); 143 143 FinalRootCandidates->insert( make_pair( (*runner).second.first, pair<int,int>((*runner).first, (*runner).second.second) ) ); 144 144 } 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."); 146 146 } 147 147 } 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."); 149 149 performCriticalExit(); 150 150 } … … 192 192 Walker = mol->FindAtom(No); 193 193 //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."); 195 195 AtomMask[No] = true; 196 196 status = true; 197 197 //} else 198 //L og() << 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."); 199 199 } 200 200 return status; -
src/Fragmentation/BondsPerShortestPath.cpp
r50e4e5 r47d041 21 21 22 22 #include "BondsPerShortestPath.hpp" 23 24 #include <sstream> 23 25 24 26 #include "CodePatterns/Log.hpp" … … 82 84 void BondsPerShortestPath::ResetSPList() 83 85 { 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; 85 88 for(int i=Order;i--;) { 86 DoLog(1) && (Log() << Verbose(1) << "Current SP level is " << i << ": ");89 output << "Current SP level is " << i << ": "; 87 90 // delete added bonds 88 91 for (BondsPerSP::iterator iter = BondsPerSPList[i].begin(); … … 93 96 BondsPerSPList[i].clear(); 94 97 // also start and end node 95 DoLog(0) && (Log() << Verbose(0) << "cleaned." << endl); 96 } 98 output << "cleaned."; 99 } 100 LOG(1, output.str()); 97 101 }; 98 102 … … 120 124 int SP = -1; 121 125 122 DoLog(0) && (Log() << Verbose(0) << "Starting BFS analysis ..." << endl);126 LOG(0, "Starting BFS analysis ..."); 123 127 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 } 130 138 131 139 RemainingWalkers = BondsPerSPCount[SP]; … … 137 145 Predecessor = (*CurrentEdge)->leftatom; // ... and leftatom is predecessor 138 146 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."); 140 148 // check for new sp level 141 149 // 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."); 143 151 const BondList& ListOfBonds = Walker->getListOfBonds(); 144 152 for (BondList::const_iterator Runner = ListOfBonds.begin(); … … 149 157 // skip hydrogens if desired and restrict to fragment 150 158 && ((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) << "."); 152 160 // set the label if not set (and push on root stack as well) 153 161 if ((OtherWalker != Predecessor) && (OtherWalker->GetTrueFather()->getNr() > RootKeyNr)) { // only pass through those with label bigger than Root's … … 156 164 BondsPerSPList[SP+1].push_back(Binder); 157 165 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)."); 159 167 } else { 160 168 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 << "."); 162 170 else 163 DoLog(3) && (Log() << Verbose(3) << "This is my predecessor " << *Predecessor << "." << endl);171 LOG(3, "This is my predecessor " << *Predecessor << "."); 164 172 } 165 } else L og() << 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 << "."); 166 174 } 167 175 } … … 173 181 void BondsPerShortestPath::OutputSPList() 174 182 { 175 DoLog(0) && (Log() << Verbose(0) << "Printing all found lists." << endl);183 LOG(0, "Printing all found lists."); 176 184 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 << "."); 178 186 for (BondsPerShortestPath::BondsPerSP::const_iterator Binder = BondsPerSPList[i].begin(); 179 187 Binder != BondsPerSPList[i].end(); 180 188 ++Binder) { 181 DoLog(2) && (Log() << Verbose(2) << *Binder << endl);189 LOG(2, *Binder); 182 190 } 183 191 } -
src/Fragmentation/EnergyMatrix.cpp
r50e4e5 r47d041 34 34 bool EnergyMatrix::ParseIndices() 35 35 { 36 DoLog(0) && (Log() << Verbose(0) << "Parsing energy indices." << endl);36 LOG(0, "Parsing energy indices."); 37 37 Indices.resize(MatrixCounter + 1); 38 38 for(int i=MatrixCounter+1;i--;) { -
src/Fragmentation/ForceMatrix.cpp
r50e4e5 r47d041 43 43 stringstream line; 44 44 45 DoLog(0) && (Log() << Verbose(0) << "Parsing force indices for " << MatrixCounter << " matrices." << endl);45 LOG(0, "Parsing force indices for " << MatrixCounter << " matrices."); 46 46 Indices.resize(MatrixCounter + 1); 47 47 line << name << FRAGMENTPREFIX << FORCESFILE; 48 48 input.open(line.str().c_str(), ios::in); 49 //L og() << Verbose(0) << "Opening " << line.str() << " ... " << input << endl;49 //LOG(0, "Opening " << line.str() << " ... " << input); 50 50 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?"); 52 52 return false; 53 53 } … … 59 59 Indices[i].resize(RowCounter[i]); 60 60 FragmentNumber = FixedDigitNumber(MatrixCounter, i); 61 //Log() << Verbose(0) << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:"; 61 //std::stringstream output; 62 //output << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:"; 62 63 delete[](FragmentNumber); 63 64 for(int j=0;(j<RowCounter[i]) && (!line.eof());j++) { 64 65 line >> Indices[i][j]; 65 // Log() << Verbose(0)<< " " << Indices[i][j];66 //output << " " << Indices[i][j]; 66 67 } 67 //L og() << Verbose(0) << endl;68 //LOG(0, output.str()); 68 69 } 69 70 Indices[MatrixCounter].resize(RowCounter[MatrixCounter]); … … 92 93 int j = Indices[ FragmentNr ][l]; 93 94 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] << "!"); 95 96 performCriticalExit(); 96 97 return false; 97 98 } 98 99 if (j != -1) { 99 //if (j == 0) L og() << 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 << "."); 100 101 for(int k=2;k<ColumnCounter[MatrixCounter];k++) 101 102 Matrix[MatrixCounter][j][k] += sign*Fragments.Matrix[ FragmentNr ][l][k]; … … 128 129 input.open(file.str().c_str(), ios::in); 129 130 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?"); 131 132 return false; 132 133 } … … 137 138 while (!zeile.eof()) { 138 139 zeile >> nr; 139 //L og() << Verbose(0) << "Current index: " << getNr() << "." << endl;140 //LOG(0, "Current index: " << getNr() << "."); 140 141 if (nr > RowCounter[MatrixCounter]) 141 142 RowCounter[MatrixCounter] = nr; -
src/Fragmentation/Fragmentation.cpp
r50e4e5 r47d041 22 22 23 23 #include "CodePatterns/Assert.hpp" 24 #include "CodePatterns/Info.hpp" 24 25 #include "CodePatterns/Log.hpp" 25 26 … … 92 93 bool *AtomMask = NULL; 93 94 94 DoLog(0) && (Log() << Verbose(0) <<endl);95 LOG(0, endl); 95 96 switch (saturation) { 96 97 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."); 98 99 break; 99 100 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."); 101 102 break; 102 103 default: … … 115 116 filename = prefix + ADJACENCYFILE; 116 117 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 ... "); 118 119 119 120 CheckAgainstAdjacencyFile FileChecker(World::getInstance().beginAtomSelection(), World::getInstance().endAtomSelection()); … … 167 168 while (MolecularWalker->next != NULL) { 168 169 MolecularWalker = MolecularWalker->next; 169 DoLog(1) && (Log() << Verbose(1) << "Fragmenting subgraph " << MolecularWalker << "." << endl);170 LOG(1, "Fragmenting subgraph " << MolecularWalker << "."); 170 171 if (MolecularWalker->Leaf->hasBondStructure()) { 171 172 // 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 << " ========================= "); 173 174 FragmentBOSSANOVA(MolecularWalker->Leaf, FragmentList[FragmentCounter], RootStack[FragmentCounter]); 174 175 } else { 175 DoeLog(1) && (eLog()<< Verbose(1) << "Subgraph " << MolecularWalker << " has no atoms!" << endl);176 ELOG(1, "Subgraph " << MolecularWalker << " has no atoms!"); 176 177 } 177 178 FragmentCounter++; // next fragment list 178 179 } 179 180 } 180 DoLog(2) && (Log() << Verbose(2) << "CheckOrder is " << CheckOrder << "." << endl);181 LOG(2, "CheckOrder is " << CheckOrder << "."); 181 182 delete[](RootStack); 182 183 delete[](AtomMask); … … 202 203 delete[](FragmentList); 203 204 204 DoLog(0) && (Log() << Verbose(0) << FragmentCounter << " subgraph fragments have been removed." << std::endl);205 LOG(0, FragmentCounter << " subgraph fragments have been removed."); 205 206 206 207 // ===== 8b. gather keyset lists (graphs) from all subgraphs and transform into MoleculeListClass ===== … … 211 212 for(Graph::iterator runner = TotalGraph.begin(); runner != TotalGraph.end(); runner++) { 212 213 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 << "."); 214 215 BondFragments->insert(StoreFragmentFromKeySet(test, World::getInstance().getConfig())); 215 216 k++; 216 217 } 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."); 218 219 219 220 // ===== 9. Save fragments' configuration and keyset files et al to disk === … … 223 224 CreateMappingLabelsToConfigSequence(SortIndex); 224 225 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"); 226 227 bool write_status = true; 227 228 for (std::vector<std::string>::const_iterator iter = typelist.begin(); … … 236 237 } 237 238 if (write_status) 238 DoLog(1) && (Log() << Verbose(1) << "All configs written." << endl);239 LOG(1, "All configs written."); 239 240 else 240 DoLog(1) && (Log() << Verbose(1) << "Some config writing failed." << endl);241 LOG(1, "Some config writing failed."); 241 242 242 243 // store force index reference file … … 262 263 263 264 // free memory for bond part 264 DoLog(1) && (Log() << Verbose(1) << "Freeing bond memory" << endl);265 LOG(1, "Freeing bond memory"); 265 266 delete[](SortIndex); 266 267 } 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."); 268 269 } 269 270 // remove all create molecules again from the World including their atoms … … 278 279 } 279 280 delete(BondFragments); 280 DoLog(0) && (Log() << Verbose(0) << "End of bond fragmentation." << endl);281 LOG(0, "End of bond fragmentation."); 281 282 282 283 return ((int)(!FragmentationToDo)+1); // 1 - continue, 2 - stop (no fragmentation occured) … … 314 315 UniqueFragments FragmentSearch; 315 316 316 DoLog(0) && (Log() << Verbose(0) << "Begin of FragmentBOSSANOVA." << endl);317 LOG(0, "Begin of FragmentBOSSANOVA."); 317 318 318 319 // FragmentLowerOrdersList is a 2D-array of pointer to MoleculeListClass objects, one dimension represents the ANOVA expansion of a single order (i.e. 5) … … 345 346 // check cyclic lengths 346 347 //if ((MinimumRingSize[Walker->GetTrueFather()->getNr()] != -1) && (Walker->GetTrueFather()->AdaptiveOrder+1 > MinimumRingSize[Walker->GetTrueFather()->getNr()])) { 347 // L og() << 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."); 348 349 //} else 349 350 { … … 362 363 363 364 // 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 << " 366 367 367 368 // Create list of Graphs of current Bond Order (i.e. F_{ij}) … … 371 372 372 373 // 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] << "."); 374 375 if (NumMoleculesOfOrder[RootNr] != 0) { 375 376 NumMolecules = 0; … … 380 381 //NumMoleculesOfOrder[Walker->AdaptiveOrder-1] = NumMolecules; 381 382 TotalNumMolecules += NumMoleculesOfOrder[RootNr]; 382 // L og() << 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] << "."); 383 384 RootStack.push_back(RootKeyNr); // put back on stack 384 385 RootNr++; 385 386 } 386 387 } 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, "=============================================================================================================="); 390 391 391 392 // cleanup FragmentSearch structure … … 404 405 delete[](NumMoleculesOfOrder); 405 406 406 DoLog(0) && (Log() << Verbose(0) << "End of FragmentBOSSANOVA." << endl);407 LOG(0, "End of FragmentBOSSANOVA."); 407 408 }; 408 409 … … 417 418 molecule * Fragmentation::StoreFragmentFromKeySet(KeySet &Leaflet, bool IsAngstroem) 418 419 { 420 Info info(__func__); 419 421 atom **SonList = new atom*[mol->getAtomCount()]; 420 422 molecule *Leaf = World::getInstance().createMolecule(); … … 423 425 SonList[i] = NULL; 424 426 425 // Log() << Verbose(1) << "Begin of StoreFragmentFromKeyset." << endl;426 427 StoreFragmentFromKeySet_Init(mol, Leaf, Leaflet, SonList); 427 428 // create the bonds between all: Make it an induced subgraph and add hydrogen 428 // L og() << 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)."); 429 430 CreateInducedSubgraphOfFragment(mol, Leaf, SonList, IsAngstroem); 430 431 431 432 //Leaflet->Leaf->ScanForPeriodicCorrection(out); 432 433 delete[](SonList); 433 // Log() << Verbose(1) << "End of StoreFragmentFromKeyset." << endl;434 434 return Leaf; 435 435 }; … … 456 456 } 457 457 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 << "."); 459 459 return FragmentCount; 460 460 }; … … 482 482 // transmorph graph keyset list into indexed KeySetList 483 483 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!"); 485 485 return false; 486 486 } … … 494 494 // pick the ones still below threshold and mark as to be adaptively updated 495 495 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."); 497 497 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 498 498 if ((saturation == DontSaturate) || ((*iter)->getType()->getAtomicNumber() != 1)) // skip hydrogen … … 521 521 if (!status) { 522 522 if (Order == 0) 523 DoLog(1) && (Log() << Verbose(1) << "Single stepping done." << endl);523 LOG(1, "Single stepping done."); 524 524 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 << "."); 526 526 } 527 527 } … … 544 544 line = path + ORDERATSITEFILE; 545 545 file.open(line.c_str()); 546 DoLog(1) && (Log() << Verbose(1) << "Writing OrderAtSite " << ORDERATSITEFILE << " ... " << endl);546 LOG(1, "Writing OrderAtSite " << ORDERATSITEFILE << " ... "); 547 547 if (file.good()) { 548 548 for_each(mol->begin(),mol->end(),bind2nd(mem_fun(&atom::OutputOrder), &file)); 549 549 file.close(); 550 DoLog(1) && (Log() << Verbose(1) << "done." << endl);550 LOG(1, "done."); 551 551 return true; 552 552 } else { 553 DoLog(1) && (Log() << Verbose(1) << "failed to open file " << line << "." << endl);553 LOG(1, "failed to open file " << line << "."); 554 554 return false; 555 555 } … … 577 577 } 578 578 579 DoLog(1) && (Log() << Verbose(1) << "Begin of ParseOrderAtSiteFromFile" << endl);579 LOG(1, "Begin of ParseOrderAtSiteFromFile"); 580 580 line = path + ORDERATSITEFILE; 581 581 file.open(line.c_str()); … … 589 589 file >> value; 590 590 MaxArray[AtomNr] = value; 591 //L og() << 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] << "."); 592 592 } 593 593 } … … 602 602 //SetAtomValueToIndexedArray( MaxArray, &atom::getNr(), &atom::MaxOrder ); 603 603 604 DoLog(1) && (Log() << Verbose(1) << "\t ... done." << endl);604 LOG(1, "\t ... done."); 605 605 status = true; 606 606 } else { 607 DoLog(1) && (Log() << Verbose(1) << "\t ... failed to open file " << line << "." << endl);607 LOG(1, "\t ... failed to open file " << line << "."); 608 608 status = false; 609 609 } … … 611 611 delete[](MaxArray); 612 612 613 DoLog(1) && (Log() << Verbose(1) << "End of ParseOrderAtSiteFromFile" << endl);613 LOG(1, "End of ParseOrderAtSiteFromFile"); 614 614 return status; 615 615 }; … … 623 623 { 624 624 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."); 626 626 return false; 627 627 } … … 687 687 ++BondRunner) { 688 688 OtherFather = (*BondRunner)->GetOtherAtom(FatherOfRunner); 689 // Log() << Verbose(2) << "Father " << *FatherOfRunner << " of son " << *SonList[FatherOfRunner->getNr()] << " is bound to " << *OtherFather;690 689 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()] << "."); 692 693 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 // L og() << 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()); 697 698 //NumBonds[(*iter)->getNr()]++; 698 699 } else { 699 // L og() << Verbose(3) << "Not adding bond, labels in wrong order." << endl;700 // LOG(3, "REJECY: Not adding bond, labels in wrong order."); 700 701 } 701 702 LonelyFlag = false; 702 703 } 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."); 706 708 if (!Leaf->AddHydrogenReplacementAtom((*BondRunner), (*iter), FatherOfRunner, OtherFather, IsAngstroem)) 707 709 exit(1); 710 } 708 711 //NumBonds[(*iter)->getNr()] += Binder->BondDegree; 709 712 } 710 713 } 711 714 } 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()] << "!"); 713 716 } 714 717 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!"); 716 719 } 717 720 ++iter; -
src/Fragmentation/HessianMatrix.cpp
r50e4e5 r47d041 43 43 stringstream line; 44 44 45 DoLog(0) && (Log() << Verbose(0) << "Parsing hessian indices for " << MatrixCounter << " matrices." << endl);45 LOG(0, "Parsing hessian indices for " << MatrixCounter << " matrices."); 46 46 Indices.resize(MatrixCounter + 1); 47 47 line << name << FRAGMENTPREFIX << FORCESFILE; 48 48 input.open(line.str().c_str(), ios::in); 49 //L og() << Verbose(0) << "Opening " << line.str() << " ... " << input << endl;49 //LOG(0, "Opening " << line.str() << " ... " << input); 50 50 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?"); 52 52 return false; 53 53 } … … 59 59 Indices[i].resize(RowCounter[i]); 60 60 FragmentNumber = FixedDigitNumber(MatrixCounter, i); 61 //Log() << Verbose(0) << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:"; 61 //std::stringstream output; 62 //output << FRAGMENTPREFIX << FragmentNumber << "[" << RowCounter[i] << "]:"; 62 63 delete[](FragmentNumber); 63 64 for(int j=0;(j<RowCounter[i]) && (!line.eof());j++) { 64 65 line >> Indices[i][j]; 65 // Log() << Verbose(0)<< " " << Indices[i][j];66 } 67 //L og() << Verbose(0) << endl;66 //output << " " << Indices[i][j]; 67 } 68 //LOG(0, output.str()); 68 69 } 69 70 Indices[MatrixCounter].resize(RowCounter[MatrixCounter]); … … 92 93 int j = Indices[ FragmentNr ][l]; 93 94 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 << "!"); 95 96 performCriticalExit(); 96 97 return false; … … 100 101 int k = Indices[ FragmentNr ][m]; 101 102 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 << "!"); 103 104 performCriticalExit(); 104 105 return false; 105 106 } 106 107 if (k != -1) { 107 //L og() << 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 << "]."); 108 109 Matrix[MatrixCounter][j][k] += sign*Fragments.Matrix[ FragmentNr ][l][m]; 109 110 } … … 133 134 // go through each order 134 135 for (int CurrentFragment=0;CurrentFragment<KeySets.FragmentsPerOrder[Order];CurrentFragment++) { 135 //L og() << Verbose(0) << "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << "." << endl;136 //LOG(0, "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << "."); 136 137 // then go per order through each suborder and pick together all the terms that contain this fragment 137 138 for(int SubOrder=0;SubOrder<=Order;SubOrder++) { // go through all suborders up to the desired order 138 139 for (int j=0;j<KeySets.FragmentsPerOrder[SubOrder];j++) { // go through all possible fragments of size suborder 139 140 if (KeySets.Contains(KeySets.OrderSet[Order][CurrentFragment], KeySets.OrderSet[SubOrder][j])) { 140 //L og() << Verbose(0) << "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << "." << endl;141 //LOG(0, "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << "."); 141 142 // if the fragment's indices are all in the current fragment 142 143 for(int k=0;k<RowCounter[ KeySets.OrderSet[SubOrder][j] ];k++) { // go through all atoms in this fragment 143 144 int m = MatrixValues.Indices[ KeySets.OrderSet[SubOrder][j] ][k]; 144 //L og() << Verbose(0) << "Current row index is " << k << "/" << m << "." << endl;145 //LOG(0, "Current row index is " << k << "/" << m << "."); 145 146 if (m != -1) { // if it's not an added hydrogen 146 147 for (int l=0;l<RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ];l++) { // look for the corresponding index in the current fragment 147 //L og() << 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] << "."); 148 149 if (m == MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l]) { 149 150 m = l; … … 151 152 } 152 153 } 153 //L og() << Verbose(0) << "Corresponding row index for " << k << " in CurrentFragment is " << m << "." << endl;154 //LOG(0, "Corresponding row index for " << k << " in CurrentFragment is " << m << "."); 154 155 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] ] << "!"); 156 157 performCriticalExit(); 157 158 return false; … … 160 161 for(int l=0;l<ColumnCounter[ KeySets.OrderSet[SubOrder][j] ];l++) { 161 162 int n = MatrixValues.Indices[ KeySets.OrderSet[SubOrder][j] ][l]; 162 //L og() << Verbose(0) << "Current column index is " << l << "/" << n << "." << endl;163 //LOG(0, "Current column index is " << l << "/" << n << "."); 163 164 if (n != -1) { // if it's not an added hydrogen 164 165 for (int p=0;p<ColumnCounter[ KeySets.OrderSet[Order][CurrentFragment] ];p++) { // look for the corresponding index in the current fragment 165 //L og() << 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] << "."); 166 167 if (n == MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][p]) { 167 168 n = p; … … 169 170 } 170 171 } 171 //L og() << Verbose(0) << "Corresponding column index for " << l << " in CurrentFragment is " << n << "." << endl;172 //LOG(0, "Corresponding column index for " << l << " in CurrentFragment is " << n << "."); 172 173 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] ] << "!"); 174 175 performCriticalExit(); 175 176 return false; 176 177 } 177 178 if (Order == SubOrder) { // equal order is always copy from Energies 178 //L og() << 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 << "]."); 179 180 Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][m][n] += MatrixValues.Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l]; 180 181 } else { 181 //L og() << 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 << "]."); 182 183 Matrix[ KeySets.OrderSet[Order][CurrentFragment] ][m][n] -= Matrix[ KeySets.OrderSet[SubOrder][j] ][k][l]; 183 184 } … … 186 187 } 187 188 //if ((ColumnCounter[ KeySets.OrderSet[SubOrder][j] ]>1) && (RowCounter[0]-1 >= 1)) 188 //L og() << 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]); 189 190 } 190 191 } else { 191 //L og() << 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] << "."); 192 193 } 193 194 } 194 195 } 195 //L og() << 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]); 196 197 } 197 198 … … 220 221 input.open(file.str().c_str(), ios::in); 221 222 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?"); 223 224 return false; 224 225 } … … 230 231 while (!zeile.eof()) { 231 232 zeile >> nr; 232 //L og() << Verbose(0) << "Current index: " << getNr() << "." << endl;233 //LOG(0, "Current index: " << getNr() << "."); 233 234 if (nr > RowCounter[MatrixCounter]) { 234 235 RowCounter[MatrixCounter] = nr; … … 242 243 243 244 // 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."); 245 246 if (Matrix[MatrixCounter].size() <= RowCounter[MatrixCounter] + 2) 246 247 Matrix[MatrixCounter].resize(RowCounter[MatrixCounter] + 1); -
src/Fragmentation/KeySet.cpp
r50e4e5 r47d041 48 48 bool KeySet::operator<(const KeySet &a) const 49 49 { 50 //L og() << Verbose(0) << "my check is used." << endl;50 //LOG(0, "my check is used."); 51 51 if (size() < a.size()) { 52 52 return true; -
src/Fragmentation/KeySetsContainer.cpp
r50e4e5 r47d041 64 64 65 65 FragmentCounter = FCounter; 66 DoLog(0) && (Log() << Verbose(0) << "Parsing key sets." << endl);66 LOG(0, "Parsing key sets."); 67 67 KeySets.resize(FragmentCounter); 68 68 file << name << FRAGMENTPREFIX << KEYSETFILE; 69 69 input.open(file.str().c_str(), ios::in); 70 70 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?"); 72 72 return false; 73 73 } … … 82 82 KeySets[i][j] = -1; 83 83 FragmentNumber = FixedDigitNumber(FragmentCounter, i); 84 //Log() << Verbose(0) << FRAGMENTPREFIX << FragmentNumber << "[" << AtomCounter[i] << "]:"; 84 //std::stringstream output; 85 //output << FRAGMENTPREFIX << FragmentNumber << "[" << AtomCounter[i] << "]:"; 85 86 delete[](FragmentNumber); 86 87 input.getline(filename, 1023); … … 88 89 for(int j=0;(j<AtomCounter[i]) && (!line.eof());j++) { 89 90 line >> KeySets[i][j]; 90 // Log() << Verbose(0)<< " " << KeySets[i][j];91 //output << " " << KeySets[i][j]; 91 92 } 92 //L og() << Verbose(0) << endl;93 //LOG(0, output.str()); 93 94 } 94 95 input.close(); … … 103 104 int Counter; 104 105 105 DoLog(0) && (Log() << Verbose(0) << "Creating Fragment terms." << endl);106 LOG(0, "Creating Fragment terms."); 106 107 // scan through all to determine maximum order 107 108 Order=0; … … 114 115 Order = Counter; 115 116 } 116 DoLog(0) && (Log() << Verbose(0) << "Found Order is " << Order << "." << endl);117 LOG(0, "Found Order is " << Order << "."); 117 118 118 119 // scan through all to determine fragments per order … … 128 129 } 129 130 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] << "."); 131 132 132 133 // scan through all to gather indices to each order set … … 144 145 FragmentsPerOrder[Counter-1]++; 145 146 } 146 DoLog(0) && (Log() << Verbose(0) << "Printing OrderSet." << endl); 147 std::stringstream output; 148 output << "Printing OrderSet: " << std::endl; 147 149 for(int i=0;i<Order;i++) { 148 150 for (int j=0;j<FragmentsPerOrder[i];j++) { 149 DoLog(0) && (Log() << Verbose(0) << " " << OrderSet[i][j]);151 output << " " << OrderSet[i][j]; 150 152 } 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()); 155 156 156 157 return true; -
src/Fragmentation/MatrixContainer.cpp
r50e4e5 r47d041 56 56 bool MatrixContainer::InitialiseIndices(class MatrixContainer *_container) 57 57 { 58 DoLog(0) && (Log() << Verbose(0) << "Initialising indices");59 58 if (_container == NULL) { 60 DoLog(0) && (Log() << Verbose(0) << " with trivial mapping." << endl);59 LOG(0, "Initialising indices with trivial mapping."); 61 60 Indices.resize(MatrixCounter + 1); 62 61 for(int i=MatrixCounter+1;i--;) { … … 66 65 } 67 66 } else { 68 DoLog(0) && (Log() << Verbose(0) << " from other MatrixContainer." << endl);67 std::stringstream output; 69 68 if (MatrixCounter != _container->MatrixCounter) 70 69 return false; … … 76 75 for(int j=_container->RowCounter[i];j--;) { 77 76 Indices[i][j] = _container->Indices[i][j]; 78 //Log() << Verbose(0)<< Indices[i][j] << "\t";77 output << Indices[i][j] << "\t"; 79 78 } 80 //Log() << Verbose(0) << endl;81 }79 } 80 LOG(0, "Initialising indices from other MatrixContainer: " << output.str()); 82 81 } 83 82 return true; … … 104 103 105 104 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."); 107 106 //performCriticalExit(); 108 107 return false; … … 119 118 for(int k=skipcolumns;k--;) 120 119 line >> Header[MatrixNr]; 121 L og() << Verbose(0) << line.str() << endl;120 LOG(0, line.str()); 122 121 123 122 // scan header for number of columns … … 129 128 ColumnCounter[MatrixNr]++; 130 129 } 131 L og() << Verbose(0) << line.str() << endl;132 L og() << Verbose(1) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << "." << endl;130 LOG(0, line.str()); 131 LOG(1, "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << "."); 133 132 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."); 135 134 performCriticalExit(); 136 135 } … … 142 141 while (!input.eof()) { 143 142 input.getline(filename, 1023); 144 L og() << Verbose(0) << "Comparing: " << strncmp(filename,"MeanForce",9) << endl;143 LOG(0, "Comparing: " << strncmp(filename,"MeanForce",9)); 145 144 RowCounter[MatrixNr]++; // then line was not last MeanForce 146 145 if (strncmp(filename,"MeanForce", 9) == 0) { … … 148 147 } 149 148 } 150 L og() << Verbose(1) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream." << endl;149 LOG(1, "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream."); 151 150 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."); 153 152 performCriticalExit(); 154 153 } … … 177 176 input.getline(dummy, 1023); // skip header 178 177 line.str(dummy); 179 L og() << Verbose(0) << "Header: " << line.str() << endl;178 LOG(0, "Header: " << line.str()); 180 179 for(int k=skipcolumns;k--;) // skip columns in header too 181 180 line >> filename; … … 183 182 for(int j=0;j<RowCounter[MatrixNr];j++) { 184 183 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; 187 187 for(int k=skipcolumns;k--;) 188 188 lines >> filename; 189 189 for(int k=0;(k<ColumnCounter[MatrixNr]) && (!lines.eof());k++) { 190 190 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()); 193 194 } 194 195 … … 227 228 input.open(file.str().c_str(), ios::in); 228 229 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?"); 230 231 return false; 231 232 } … … 236 237 } 237 238 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 << "."); 241 242 Header.clear(); 242 243 Matrix.clear(); … … 253 254 file << name << FRAGMENTPREFIX << FragmentNumber << prefix << suffix; 254 255 std::ifstream input(file.str().c_str()); 255 DoLog(0) &&( Log() << Verbose(0) << "Opening " << file.str() << " ... " << endl);256 LOG(1, "INFO: Opening " << file.str() << " ... "); 256 257 if (!ParseMatrix(input, skiplines, skipcolumns, i)) { 257 258 input.close(); … … 373 374 // go through each order 374 375 for (int CurrentFragment=0;CurrentFragment<KeySets.FragmentsPerOrder[Order];CurrentFragment++) { 375 //L og() << Verbose(0) << "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << "." << endl;376 //LOG(0, "Current Fragment is " << CurrentFragment << "/" << KeySets.OrderSet[Order][CurrentFragment] << "."); 376 377 // then go per order through each suborder and pick together all the terms that contain this fragment 377 378 for(int SubOrder=0;SubOrder<=Order;SubOrder++) { // go through all suborders up to the desired order 378 379 for (int j=0;j<KeySets.FragmentsPerOrder[SubOrder];j++) { // go through all possible fragments of size suborder 379 380 if (KeySets.Contains(KeySets.OrderSet[Order][CurrentFragment], KeySets.OrderSet[SubOrder][j])) { 380 //L og() << Verbose(0) << "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << "." << endl;381 //LOG(0, "Current other fragment is " << j << "/" << KeySets.OrderSet[SubOrder][j] << "."); 381 382 // if the fragment's indices are all in the current fragment 382 383 for(int k=0;k<RowCounter[ KeySets.OrderSet[SubOrder][j] ];k++) { // go through all atoms in this fragment 383 384 int m = MatrixValues.Indices[ KeySets.OrderSet[SubOrder][j] ][k]; 384 //L og() << Verbose(0) << "Current index is " << k << "/" << m << "." << endl;385 //LOG(0, "Current index is " << k << "/" << m << "."); 385 386 if (m != -1) { // if it's not an added hydrogen 386 387 for (int l=0;l<RowCounter[ KeySets.OrderSet[Order][CurrentFragment] ];l++) { // look for the corresponding index in the current fragment 387 //L og() << 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] << "."); 388 389 if (m == MatrixValues.Indices[ KeySets.OrderSet[Order][CurrentFragment] ][l]) { 389 390 m = l; … … 391 392 } 392 393 } 393 //L og() << Verbose(0) << "Corresponding index in CurrentFragment is " << m << "." << endl;394 //LOG(0, "Corresponding index in CurrentFragment is " << m << "."); 394 395 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] ] << "!"); 396 397 performCriticalExit(); 397 398 return false; … … 406 407 } 407 408 //if ((ColumnCounter[ KeySets.OrderSet[SubOrder][j] ]>1) && (RowCounter[0]-1 >= 1)) 408 //L og() << 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]); 409 410 } 410 411 } else { 411 //L og() << 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] << "."); 412 413 } 413 414 } 414 415 } 415 //L og() << 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]); 416 417 } 417 418 … … 429 430 char *FragmentNumber = NULL; 430 431 431 DoLog(0) && (Log() << Verbose(0) << "Writing fragment files." << endl);432 LOG(0, "Writing fragment files."); 432 433 for(int i=0;i<MatrixCounter;i++) { 433 434 stringstream line; … … 437 438 output.open(line.str().c_str(), ios::out); 438 439 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() << "!"); 440 441 performCriticalExit(); 441 442 return false; … … 463 464 stringstream line; 464 465 465 DoLog(0) && (Log() << Verbose(0) << "Writing matrix values of " << suffix << "." << endl);466 LOG(0, "Writing matrix values of " << suffix << "."); 466 467 line << name << prefix << suffix; 467 468 output.open(line.str().c_str(), ios::out); 468 469 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() << "!"); 470 471 performCriticalExit(); 471 472 return false; -
src/Fragmentation/PowerSetGenerator.cpp
r50e4e5 r47d041 22 22 #include "PowerSetGenerator.hpp" 23 23 24 #include <sstream> 25 26 #include "CodePatterns/Info.hpp" 24 27 #include "CodePatterns/Log.hpp" 25 28 … … 53 56 void PowerSetGenerator::ClearingTouched(int verbosity, int *&TouchedList, int SubOrder, int &TouchedIndex) 54 57 { 55 L og() << Verbose(1+verbosity) << "Clearing touched list." << endl;58 LOG(1+verbosity, "Clearing touched list."); 56 59 for (TouchedIndex=SubOrder+1;TouchedIndex--;) // empty touched list 57 60 TouchedList[TouchedIndex] = -1; … … 81 84 if (bit) { // if bit is set, we add this bond partner 82 85 OtherWalker = BondsSet[j]->rightatom; // rightatom is always the one more distant, i.e. the one to add 83 //L og() << Verbose(1+verbosity) << "Current Bond is " << BondsSet[j] << ", checking on " << *OtherWalker << "." << endl;84 L og() << 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() << "."); 85 88 TestKeySetInsert = FragmentSet->insert(OtherWalker->getNr()); 86 89 if (TestKeySetInsert.second) { … … 88 91 Added++; 89 92 } else { 90 L og() << 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."); 91 94 } 92 95 } else { 93 L og() << Verbose(2+verbosity) << "Not adding." << endl;96 LOG(2+verbosity, "Not adding."); 94 97 } 95 98 } … … 151 154 for(int j=0;j<TouchedIndex;j++) { 152 155 Removal = TouchedList[j]; 153 L og() << Verbose(2+verbosity) << "Removing item nr. " << Removal << " from snake stack." << endl;156 LOG(2+verbosity, "Removing item nr. " << Removal << " from snake stack."); 154 157 FragmentSet->erase(Removal); 155 158 TouchedList[j] = -1; 156 159 } 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: "; 158 162 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()); 161 165 TouchedIndex = 0; // set Index to 0 for list of atoms added on this level 162 166 }; … … 180 184 int Counter = FragmentSearch->FragmentCounter; // mark current value of counter 181 185 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() << "."); 184 188 185 189 BondsPerSPList.SetSPList(FragmentSearch->getRoot()); … … 193 197 // creating fragments with the found edge sets (may be done in reverse order, faster) 194 198 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 << "."); 196 200 if (SP >= (BondsPerSPList.getOrder()-1)) { 197 201 // 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() << "."); 199 203 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."); 201 205 202 206 // prepare the subset and call the generator … … 209 213 SPFragmentGenerator(0, BondsList, BondsPerSPList.BondsPerSPCount[0], BondsPerSPList.getOrder()); 210 214 } 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."); 212 216 } 213 217 214 218 // as FragmentSearch structure is used only once, we don't have to clean it anymore 215 219 // remove root from stack 216 DoLog(0) && (Log() << Verbose(0) << "Removing root again from stack." << endl);220 LOG(0, "Removing root again from stack."); 217 221 FragmentSearch->FragmentSet->erase(FragmentSearch->getRoot()->getNr()); 218 222 … … 221 225 222 226 // return list 223 DoLog(0) && (Log() << Verbose(0) << "End of PowerSetGenerator." << endl);227 LOG(0, "End of PowerSetGenerator."); 224 228 return (FragmentSearch->FragmentCounter - Counter); 225 229 }; … … 240 244 void PowerSetGenerator::SPFragmentGenerator(int RootDistance, std::vector<bond *> &BondsSet, int SetDimension, int SubOrder) 241 245 { 246 Info info(__func__); 242 247 int verbosity = 0; //FragmentSearch->ANOVAOrder-SubOrder; 243 248 int NumCombinations; … … 253 258 // recursively for the next level 254 259 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)."); 257 261 258 262 // initialised touched list (stores added atoms on this level) … … 260 264 261 265 // create every possible combination of the endpieces 262 L og() << Verbose(1+verbosity) << "Going through all combinations of the power set." << endl;266 LOG(1+verbosity, "Going through all combinations of the power set."); 263 267 for (int i=1;i<NumCombinations;i++) { // sweep through all power set combinations (skip empty set!) 264 268 // count the set bit of i … … 267 271 bits += (i & (1 << j)) >> j; 268 272 269 L og() << 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 << "."); 270 274 if (bits <= SubOrder) { // if not greater than additional atoms allowed on stack, continue 271 275 // --1-- add this set of the power set of bond partners to the snake stack … … 274 278 SpaceLeft = SubOrder - Added ;// SubOrder - bits; // due to item's maybe being already present, this does not work anymore 275 279 if (SpaceLeft > 0) { 276 L og() << 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 << "."); 277 281 if (SubOrder > 1) { // Due to Added above we have to check extra whether we're not already reaching beyond the desired Order 278 282 // --2-- look at all added end pieces of this combination, construct bond subsets and sweep through a power set of these by recursion … … 288 292 289 293 // then iterate 290 L og() << 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 << "."); 291 295 SPFragmentGenerator(SP, BondsList, SubSetDimension, SubOrder-bits); 292 296 } 293 297 } else { 294 298 // --2-- otherwise store the complete fragment 295 L og() << Verbose(1+verbosity) << "Enough items on stack for a fragment!" << endl;299 LOG(1+verbosity, "Enough items on stack for a fragment!"); 296 300 // 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 } 301 308 FragmentSearch->InsertFragmentIntoGraph(); 302 309 } 303 310 304 311 // --3-- remove all added items in this level from snake stack 305 L og() << 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 << "."); 306 313 RemoveAllTouchedFromSnakeStack(verbosity, FragmentSearch->FragmentSet, TouchedList, TouchedIndex); 307 314 } else { 308 L og() << 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."); 309 316 } 310 317 } 311 318 delete[](TouchedList); 312 L og() << 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 51 51 testGraphInsert = Leaflet->insert(GraphPair (*FragmentSet,std::pair<int,double>(FragmentCounter,TEFactor))); // store fragment number and current factor 52 52 if (testGraphInsert.second) { 53 DoLog(2) && (Log() << Verbose(2) << "KeySet " << FragmentCounter << " successfully inserted." << endl);53 LOG(2, "KeySet " << FragmentCounter << " successfully inserted."); 54 54 FragmentCounter++; 55 55 } 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); 57 57 ((*(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 << "."); 59 59 } 60 60 }; -
src/Fragmentation/analyzer.cpp
r50e4e5 r47d041 79 79 int counter = 0; 80 80 81 DoLog(0) && (Log() << Verbose(0) << "ANOVA Analyzer" << endl);82 DoLog(0) && (Log() << Verbose(0) << "==============" << endl);81 LOG(0, "ANOVA Analyzer"); 82 LOG(0, "=============="); 83 83 84 84 // Get the command line options 85 85 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."); 91 91 return 1; 92 92 } else { … … 97 97 98 98 if (argc > 4) { 99 DoLog(0) && (Log() << Verbose(0) << "Loading periodentafel." << endl);99 LOG(0, "Loading periodentafel."); 100 100 periode = new periodentafel; 101 101 periode->LoadPeriodentafel(argv[4]); … … 112 112 if (!Hcorrection.ParseFragmentMatrix(argv[1], "", HCORRECTIONSUFFIX,0,0)) { 113 113 NoHCorrection = true; 114 DoeLog(2) && (eLog()<< Verbose(2) << "No HCorrection file found, skipping these." << endl);114 ELOG(2, "No HCorrection file found, skipping these."); 115 115 } 116 116 … … 118 118 if (!Hessian.ParseFragmentMatrix(argv[1], dir, HessianSuffix,0,0)) { 119 119 NoHessian = true; 120 DoeLog(2) && (eLog()<< Verbose(2) << "No Hessian file found, skipping these." << endl);120 ELOG(2, "No Hessian file found, skipping these."); 121 121 } 122 122 if (!Time.ParseFragmentMatrix(argv[1], dir, TimeSuffix, 10,1)) { 123 123 NoTime = true; 124 DoeLog(2) && (eLog()<< Verbose(2) << "No speed file found, skipping these." << endl);124 ELOG(2, "No speed file found, skipping these."); 125 125 } 126 126 if (periode != NULL) { // also look for PAS values … … 264 264 // +++++++++++++++ ANALYZING ++++++++++++++++++++++++++++++ 265 265 266 DoLog(0) && (Log() << Verbose(0) << "Analyzing ..." << endl);266 LOG(0, "Analyzing ..."); 267 267 268 268 // ======================================= Creating the data files ============================================================== … … 575 575 delete(periode); 576 576 delete[](dir); 577 DoLog(0) && (Log() << Verbose(0) << "done." << endl);577 LOG(0, "done."); 578 578 return 0; 579 579 }; -
src/Fragmentation/datacreator.cpp
r50e4e5 r47d041 51 51 output.open(name.str().c_str(), ios::out); 52 52 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?"); 54 54 return false; 55 55 } … … 69 69 output.open(name.str().c_str(), ios::app); 70 70 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?"); 72 72 return false; 73 73 } … … 89 89 filename << prefix << ".dat"; 90 90 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 91 DoLog(0) && (Log() << Verbose(0) << msg << endl);91 LOG(0, msg); 92 92 output << "# " << msg << ", created on " << datum; 93 93 output << "#Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl; … … 122 122 filename << prefix << ".dat"; 123 123 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 124 DoLog(0) && (Log() << Verbose(0) << msg << endl);124 LOG(0, msg); 125 125 output << "# " << msg << ", created on " << datum; 126 126 output << "#Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl; … … 159 159 filename << prefix << ".dat"; 160 160 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 161 DoLog(0) && (Log() << Verbose(0) << msg << endl);161 LOG(0, msg); 162 162 output << "# " << msg << ", created on " << datum; 163 163 output << "# Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl; … … 191 191 filename << prefix << ".dat"; 192 192 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 193 DoLog(0) && (Log() << Verbose(0) << msg << endl);193 LOG(0, msg); 194 194 output << "# " << msg << ", created on " << datum; 195 195 output << "# Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl; … … 224 224 filename << prefix << ".dat"; 225 225 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 226 DoLog(0) && (Log() << Verbose(0) << msg << endl);226 LOG(0, msg); 227 227 output << "# " << msg << ", created on " << datum; 228 228 output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl; 229 229 Fragments.SetLastMatrix(Force.Matrix[Force.MatrixCounter], 0); 230 230 for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) { 231 //L og() << Verbose(0) << "Current order is " << BondOrder << "." << endl;231 //LOG(0, "Current order is " << BondOrder << "."); 232 232 Fragments.SumSubForces(Fragments, KeySets, BondOrder, -1.); 233 233 // errors per atom … … 270 270 filename << prefix << ".dat"; 271 271 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 272 DoLog(0) && (Log() << Verbose(0) << msg << endl);272 LOG(0, msg); 273 273 output << "# " << msg << ", created on " << datum; 274 274 output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl; 275 275 for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) { 276 //L og() << Verbose(0) << "Current order is " << BondOrder << "." << endl;276 //LOG(0, "Current order is " << BondOrder << "."); 277 277 Fragments.SumSubForces(Fragments, KeySets, BondOrder, 1.); 278 278 // errors per atom … … 307 307 filename << prefix << ".dat"; 308 308 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 309 DoLog(0) && (Log() << Verbose(0) << msg << endl);309 LOG(0, msg); 310 310 output << "# " << msg << ", created on " << datum; 311 311 output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl; 312 312 Fragments.SetLastMatrix(Hessian.Matrix[Hessian.MatrixCounter], 0); 313 313 for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) { 314 //L og() << Verbose(0) << "Current order is " << BondOrder << "." << endl;314 //LOG(0, "Current order is " << BondOrder << "."); 315 315 Fragments.SumSubHessians(Fragments, KeySets, BondOrder, -1.); 316 316 // errors per atom … … 347 347 filename << prefix << ".dat"; 348 348 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 349 DoLog(0) && (Log() << Verbose(0) << msg << endl);349 LOG(0, msg); 350 350 output << "# " << msg << ", created on " << datum; 351 351 output << "# AtomNo\t"; … … 357 357 output << Fragments.RowCounter[ Fragments.MatrixCounter ] << "\t"; 358 358 for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) { 359 //L og() << Verbose(0) << "Current order is " << BondOrder << "." << endl;359 //LOG(0, "Current order is " << BondOrder << "."); 360 360 Fragments.SumSubHessians(Fragments, KeySets, BondOrder, -1.); 361 361 // frobenius norm of errors per atom … … 389 389 filename << prefix << ".dat"; 390 390 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 391 DoLog(0) && (Log() << Verbose(0) << msg << endl);391 LOG(0, msg); 392 392 output << "# " << msg << ", created on " << datum; 393 393 output << "# AtomNo\t" << Fragments.Header[ Fragments.MatrixCounter ] << endl; 394 394 Fragments.SetLastMatrix(0., 0); 395 395 for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) { 396 //L og() << Verbose(0) << "Current order is " << BondOrder << "." << endl;396 //LOG(0, "Current order is " << BondOrder << "."); 397 397 Fragments.SumSubHessians(Fragments, KeySets, BondOrder, 1.); 398 398 // errors per atom … … 419 419 filename << prefix << ".dat"; 420 420 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 421 DoLog(0) && (Log() << Verbose(0) << msg << endl);421 LOG(0, msg); 422 422 output << "# " << msg << ", created on " << datum << endl; 423 423 output << "#Order\tFrag.No.\t" << Fragment.Header[ Fragment.MatrixCounter ] << endl; … … 484 484 filename << prefix << ".dat"; 485 485 if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 486 DoLog(0) && (Log() << Verbose(0) << msg << endl);486 LOG(0, msg); 487 487 output << "# " << msg << ", created on " << datum; 488 488 output << "#Order\tFrag.No.\t" << Fragment.Header[ Fragment.MatrixCounter ] << endl; -
src/Fragmentation/fragmentation_helpers.cpp
r50e4e5 r47d041 45 45 void PrintAtomMask(bool *AtomMask, int AtomCount) 46 46 { 47 DoLog(2) && (Log() << Verbose(2) << " "); 47 std::stringstream output; 48 output << " "; 48 49 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: "; 52 54 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()); 55 57 }; 56 58 … … 71 73 atom *Walker = NULL; 72 74 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."); 74 76 if (FragmentList == NULL) { 75 77 FragmentList = new Graph; … … 104 106 void FreeAllOrdersList(Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol) 105 107 { 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."); 107 109 int RootNr = 0; 108 110 int RootKeyNr = 0; -
src/Fragmentation/helpers.cpp
r50e4e5 r47d041 44 44 if (input.fail()) { 45 45 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?"); 47 47 return false; 48 48 } … … 78 78 number = (int)floor(((double)number / 10.)); 79 79 order++; 80 //L og() << Verbose(0) << "Number is " << number << ", order is " << order << "." << std::endl;80 //LOG(0, "Number is " << number << ", order is " << order << "."); 81 81 } 82 82 // allocate string … … 89 89 number = (int)floor(((double)number / 10.)); 90 90 } 91 //L og() << Verbose(0) << returnstring << endl;91 //LOG(0, returnstring); 92 92 return returnstring; 93 93 }; -
src/Fragmentation/joiner.cpp
r50e4e5 r47d041 67 67 bool NoHessian = false; 68 68 69 DoLog(0) && (Log() << Verbose(0) << "Joiner" << endl);70 DoLog(0) && (Log() << Verbose(0) << "======" << endl);69 LOG(0, "Joiner"); 70 LOG(0, "======"); 71 71 72 72 // Get the command line options 73 73 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."); 78 78 return 1; 79 79 } else { … … 97 97 if (!Hcorrection.ParseFragmentMatrix(argv[1], "", HCORRECTIONSUFFIX, 0,0)) { 98 98 NoHCorrection = true; 99 DoLog(0) && (Log() << Verbose(0) << "No HCorrection matrices found, skipping these." << endl);99 LOG(0, "No HCorrection matrices found, skipping these."); 100 100 } 101 101 if (!Force.ParseFragmentMatrix(argv[1], dir, ForcesSuffix, 0,0)) return 1; 102 102 if (!Hessian.ParseFragmentMatrix(argv[1], dir, HessianSuffix, 0,0)) { 103 103 NoHessian = true; 104 DoLog(0) && (Log() << Verbose(0) << "No hessian matrices found, skipping these." << endl);104 LOG(0, "No hessian matrices found, skipping these."); 105 105 } 106 106 if (periode != NULL) { // also look for PAS values … … 166 166 for (int BondOrder=0;BondOrder<KeySet.Order;BondOrder++) { 167 167 // --------- 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 << " ..."); 169 169 if (!EnergyFragments.SumSubManyBodyTerms(Energy, KeySet, BondOrder)) return 1; 170 170 if (!NoHCorrection) { … … 175 175 if (!Energy.SumSubEnergy(EnergyFragments, NULL, KeySet, BondOrder, 1.)) return 1; 176 176 // --------- 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 << " ..."); 178 178 if (!ForceFragments.SumSubManyBodyTerms(Force, KeySet, BondOrder)) return 1; 179 179 if (!Force.SumSubForces(ForceFragments, KeySet, BondOrder, 1.)) return 1; 180 180 // --------- sum up Hessian -------------------- 181 181 if (!NoHessian) { 182 DoLog(0) && (Log() << Verbose(0) << "Summing Hessian of order " << BondOrder+1 << " ..." << endl);182 LOG(0, "Summing Hessian of order " << BondOrder+1 << " ..."); 183 183 if (!HessianFragments.SumSubManyBodyTerms(Hessian, KeySet, BondOrder)) return 1; 184 184 if (!Hessian.SumSubHessians(HessianFragments, KeySet, BondOrder, 1.)) return 1; 185 185 } 186 186 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 << " ..."); 188 188 if (!ShieldingFragments.SumSubManyBodyTerms(Shielding, KeySet, BondOrder)) return 1; 189 189 if (!Shielding.SumSubForces(ShieldingFragments, KeySet, BondOrder, 1.)) return 1; … … 199 199 prefix.str(" "); 200 200 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() << ". ..."); 202 202 // energy 203 203 if (!Energy.WriteLastMatrix(argv[1], (prefix.str()).c_str(), EnergySuffix)) return 1; … … 268 268 delete(periode); 269 269 delete[](dir); 270 DoLog(0) && (Log() << Verbose(0) << "done." << endl);270 LOG(0, "done."); 271 271 return 0; 272 272 };
Note:
See TracChangeset
for help on using the changeset viewer.