- Timestamp:
- Jun 7, 2008, 1:20:30 PM (17 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:
- 65684f, d250b2
- Parents:
- a19da5d
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/analyzer.cpp
ra19da5d rfa40b5 312 312 // min/mean/max comparison for total force 313 313 if(!OpenOutputFile(output, argv[3], "DeltaMinMeanMaxTotalForce-Order.pyx")) return 1; 314 CreatePlotHeader(output, "DeltaMinMeanMaxTotalForce-Order", 1, "bottom left", "y", "", 1, 1, "bond order k", "absolute error in total forces [Ht/a.u.]");314 CreatePlotHeader(output, "DeltaMinMeanMaxTotalForce-Order", 1, "bottom left", "y", NULL, 1, 1, "bond order k", "absolute error in total forces [Ht/a.u.]"); 315 315 output << "plot " << Orderxrange.str().c_str() << " [1e-8:1e+0] \\" << endl; 316 316 output << "'DeltaMinForces-Order.dat' title 'minimum' using 1:(sqrt($" << 8 << "*$" << 8 << "+$" << 8+1 << "*$" << 8+1 << "+$" << 8+2 << "*$" << 8+2 << ")) with linespoints, \\" << endl; … … 331 331 // min/mean/max comparison for total force 332 332 if(!OpenOutputFile(output, argv[3],"MinMeanMaxTotalForce-Order.pyx")) return 1; 333 CreatePlotHeader(output, "MinMeanMaxTotalForce-Order", 1, "bottom left", "y", "", 1, 1, "bond order k", "absolute total force [Ht/a.u.]");333 CreatePlotHeader(output, "MinMeanMaxTotalForce-Order", 1, "bottom left", "y", NULL, 1, 1, "bond order k", "absolute total force [Ht/a.u.]"); 334 334 output << "plot "<< Orderxrange.str().c_str() << " [1e-8:1e+0] \\" << endl; 335 335 output << "'MinForces-Order.dat' title 'minimum' using 1:(sqrt($" << 8 << "*$" << 8 << "+$" << 8+1 << "*$" << 8+1 << "+$" << 8+2 << "*$" << 8+2 << ")) with linespoints, \\" << endl; -
src/bond.cpp
ra19da5d rfa40b5 140 140 * \return true if it is either bond::leftatom or bond::rightatom, false otherwise 141 141 */ 142 bool bond::Contains(const int n r)142 bool bond::Contains(const int number) 143 143 { 144 return ((leftatom->nr == n r) || (rightatom->nr == nr));144 return ((leftatom->nr == number) || (rightatom->nr == number)); 145 145 }; 146 146 -
src/datacreator.cpp
ra19da5d rfa40b5 319 319 output << "set mxtics "<< mxtics << endl; 320 320 output << "set xtics "<< xtics << endl; 321 if (logscale != "")321 if (logscale != NULL) 322 322 output << "set logscale " << logscale << endl; 323 if (extraline != "")323 if (extraline != NULL) 324 324 output << extraline << endl; 325 325 output << "set xlabel '" << xlabel << "'" << endl; -
src/element.cpp
ra19da5d rfa40b5 41 41 * \param NoOfAtoms total number of atom of this element type 42 42 */ 43 bool element::Checkout(ofstream *out, const int N o, const int NoOfAtoms) const43 bool element::Checkout(ofstream *out, const int Number, const int NoOfAtoms) const 44 44 { 45 45 if (out != NULL) { 46 *out << "Ion_Type" << N o<< "\t" << NoOfAtoms << "\t" << Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << mass << "\t" << name << "\t" << symbol <<endl;46 *out << "Ion_Type" << Number << "\t" << NoOfAtoms << "\t" << Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << mass << "\t" << name << "\t" << symbol <<endl; 47 47 return true; 48 48 } else -
src/parser.cpp
ra19da5d rfa40b5 101 101 ifstream input; 102 102 char *FragmentNumber = NULL; 103 stringstream line;103 stringstream file; 104 104 105 105 Header = (char *) Malloc(sizeof(char)*1023, "MatrixContainer::ParseMatrix: *EnergyHeader"); … … 107 107 // count the number of matrices 108 108 MatrixCounter = -1; // we count one too much 109 line << name << FRAGMENTPREFIX << KEYSETFILE;110 input.open( line.str().c_str(), ios::in);109 file << name << FRAGMENTPREFIX << KEYSETFILE; 110 input.open(file.str().c_str(), ios::in); 111 111 if (input == NULL) { 112 cout << endl << "Unable to open " << line.str() << ", is the directory correct?" << endl;112 cout << endl << "Unable to open " << file.str() << ", is the directory correct?" << endl; 113 113 return false; 114 114 } … … 182 182 Matrix[i][j] = (double *) Malloc(sizeof(double)*ColumnCounter, "MatrixContainer::ParseMatrix: *Matrix[][]"); 183 183 input.getline(filename, 1023); 184 stringstream line (filename);184 stringstream lines(filename); 185 185 //cout << "Matrix at level " << j << ":";// << filename << endl; 186 186 for(int k=skipcolumns;k--;) 187 line >> filename;187 lines >> filename; 188 188 for(int k=0;(k<ColumnCounter) && (!line.eof());k++) { 189 line >> Matrix[i][j][k];189 lines >> Matrix[i][j][k]; 190 190 //cout << " " << setprecision(2) << Matrix[i][j][k];; 191 191 } … … 522 522 ifstream input; 523 523 char *FragmentNumber = NULL; 524 stringstream line;524 stringstream file; 525 525 char filename[1023]; 526 526 … … 530 530 for(int i=FragmentCounter;i--;) 531 531 KeySets[i] = NULL; 532 line << name << FRAGMENTPREFIX << KEYSETFILE;533 input.open( line.str().c_str(), ios::in);532 file << name << FRAGMENTPREFIX << KEYSETFILE; 533 input.open(file.str().c_str(), ios::in); 534 534 if (input == NULL) { 535 cout << endl << "Unable to open " << line.str() << ", is the directory correct?" << endl;535 cout << endl << "Unable to open " << file.str() << ", is the directory correct?" << endl; 536 536 return false; 537 537 }
Note:
See TracChangeset
for help on using the changeset viewer.