Changeset fa40b5 for src


Ignore:
Timestamp:
Jun 7, 2008, 1:20:30 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
65684f, d250b2
Parents:
a19da5d
Message:

these are all smaller fixes due to extensively enabled compiler warnings

e.g. local variable shadows global (mol::nr by local nr)
and others

Location:
src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/analyzer.cpp

    ra19da5d rfa40b5  
    312312  // min/mean/max comparison for total force
    313313  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.]");
    315315  output << "plot " << Orderxrange.str().c_str() << " [1e-8:1e+0] \\" << endl; 
    316316  output << "'DeltaMinForces-Order.dat' title 'minimum' using 1:(sqrt($" << 8 << "*$" << 8 << "+$" << 8+1 << "*$" << 8+1 << "+$" << 8+2 << "*$" << 8+2 << ")) with linespoints, \\" << endl;
     
    331331  // min/mean/max comparison for total force
    332332  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.]");
    334334  output << "plot "<< Orderxrange.str().c_str() << " [1e-8:1e+0] \\" << endl; 
    335335  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  
    140140 * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
    141141 */
    142 bool bond::Contains(const int nr)
     142bool bond::Contains(const int number)
    143143{
    144   return ((leftatom->nr == nr) || (rightatom->nr == nr));
     144  return ((leftatom->nr == number) || (rightatom->nr == number));
    145145};
    146146
  • src/datacreator.cpp

    ra19da5d rfa40b5  
    319319  output << "set mxtics "<< mxtics << endl;
    320320  output << "set xtics "<< xtics << endl;
    321   if (logscale != "")
     321  if (logscale != NULL)
    322322    output << "set logscale " << logscale << endl;
    323   if (extraline != "")
     323  if (extraline != NULL)
    324324    output << extraline << endl;
    325325  output << "set xlabel '" << xlabel << "'" << endl;
  • src/element.cpp

    ra19da5d rfa40b5  
    4141 * \param NoOfAtoms total number of atom of this element type
    4242 */
    43 bool element::Checkout(ofstream *out, const int No, const int NoOfAtoms) const
     43bool element::Checkout(ofstream *out, const int Number, const int NoOfAtoms) const
    4444{
    4545  if (out != NULL) {
    46     *out << "Ion_Type" << No << "\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;
    4747    return true;
    4848  } else
  • src/parser.cpp

    ra19da5d rfa40b5  
    101101  ifstream input;
    102102  char *FragmentNumber = NULL;
    103   stringstream line;
     103  stringstream file;
    104104 
    105105  Header = (char *) Malloc(sizeof(char)*1023, "MatrixContainer::ParseMatrix: *EnergyHeader");
     
    107107  // count the number of matrices
    108108  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);
    111111  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;
    113113    return false;
    114114  }
     
    182182      Matrix[i][j] = (double *) Malloc(sizeof(double)*ColumnCounter, "MatrixContainer::ParseMatrix: *Matrix[][]");
    183183      input.getline(filename, 1023);
    184       stringstream line(filename);
     184      stringstream lines(filename);
    185185      //cout << "Matrix at level " << j << ":";// << filename << endl;
    186186      for(int k=skipcolumns;k--;)
    187         line >> filename;
     187        lines >> filename;
    188188      for(int k=0;(k<ColumnCounter) && (!line.eof());k++) {
    189         line >> Matrix[i][j][k];
     189        lines >> Matrix[i][j][k];
    190190        //cout << " " << setprecision(2) << Matrix[i][j][k];;
    191191      }
     
    522522  ifstream input;
    523523  char *FragmentNumber = NULL;
    524   stringstream line;
     524  stringstream file;
    525525  char filename[1023];
    526526 
     
    530530  for(int i=FragmentCounter;i--;)
    531531    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);
    534534  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;
    536536    return false;
    537537  }
Note: See TracChangeset for help on using the changeset viewer.