Changeset 27d0bc for src


Ignore:
Timestamp:
Sep 19, 2013, 8:23:53 PM (11 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:
f6ff216
Parents:
477012
git-author:
Frederik Heber <heber@…> (08/26/13 13:40:34)
git-committer:
Frederik Heber <heber@…> (09/19/13 20:23:53)
Message:

Extended and fixed toCLIString for RealSpaceMatrix, element and vector<>.

Location:
src/Actions
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/toCLIString.cpp

    r477012 r27d0bc  
    3737#include "toCLIString.hpp"
    3838
    39 #include "Box.hpp"
     39#include "Element/element.hpp"
    4040#include "LinearAlgebra/RealSpaceMatrix.hpp"
    4141#include "LinearAlgebra/Vector.hpp"
     
    4848
    4949template <>
    50 const std::string toCLIString( const Box& _value)
     50const std::string toCLIString( const element & _value)
    5151{
    5252  std::stringstream output;
    53   output
    54     << _value.getM().at(0,0) << ","
    55     << _value.getM().at(0,1) << ","
    56     << _value.getM().at(0,2) << ","
    57     << _value.getM().at(1,1) << ","
    58     << _value.getM().at(1,2) << ","
    59     << _value.getM().at(2,2);
     53  output << _value.getAtomicNumber();
     54  return output.str();
     55}
     56
     57template <>
     58const std::string toCLIString( const RealSpaceMatrix& _value)
     59{
     60  std::stringstream output;
     61  output << "\""
     62    << _value.at(0,0) << ","
     63    << _value.at(1,0) << ","
     64    << _value.at(1,1) << ","
     65    << _value.at(2,0) << ","
     66    << _value.at(2,1) << ","
     67    << _value.at(2,2) << "\"";
    6068  return output.str();
    6169}
     
    6573{
    6674  std::stringstream output;
    67   output << _value[0] << "," << _value[1] << "," << _value[2];
     75  output << "\"" << _value[0] << "," << _value[1] << "," << _value[2] << "\"";
    6876  return output.str();
    6977}
     78
     79template <>
     80const std::string toCLIString( const std::string& _value)
     81{
     82  std::stringstream output;
     83  output << "\"" << _value << "\"";
     84  return output.str();
     85}
  • src/Actions/toCLIString.hpp

    r477012 r27d0bc  
    1818#include <string>
    1919#include <sstream>
     20#include <vector>
    2021
    21 
    22 class Box;
     22class element;
     23class RealSpaceMatrix;
    2324class Vector;
    2425
     
    3233}
    3334
     35template <typename T>
     36inline
     37const std::string toCLIString( const T *& _value)
     38{
     39  std::stringstream output;
     40  output << toCLIString(*_value);
     41  return output.str();
     42}
     43
     44template <typename T>
     45inline
     46const std::string toCLIString( const T * _value)
     47{
     48  std::stringstream output;
     49  output << toCLIString(*_value);
     50  return output.str();
     51}
     52
     53template <typename T>
     54inline
     55const std::string toCLIString( const std::vector<T>& _values)
     56{
     57  std::stringstream output;
     58  for (typename std::vector<T>::const_iterator iter = _values.begin();
     59      iter != _values.end();
     60      ++iter) {
     61    const T& _value = *iter;
     62    if (iter != _values.begin())
     63      output << " ";
     64    output << toCLIString(_value);
     65  }
     66  return output.str();
     67}
     68
     69template <> const std::string toCLIString( const element & _value);
     70
    3471template <> const std::string toCLIString( const boost::filesystem::path & _value);
    3572
    36 template <> const std::string toCLIString( const Box& _value);
     73template <> const std::string toCLIString( const RealSpaceMatrix& _value);
    3774
    3875template <> const std::string toCLIString( const Vector& _value);
    3976
     77template <> const std::string toCLIString( const std::string& _value);
     78
    4079#endif /* TOCLISTRING_HPP_ */
Note: See TracChangeset for help on using the changeset viewer.