- Timestamp:
- Sep 19, 2013, 8:23:53 PM (11 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:
- 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)
- Location:
- src/Actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/toCLIString.cpp
r477012 r27d0bc 37 37 #include "toCLIString.hpp" 38 38 39 #include " Box.hpp"39 #include "Element/element.hpp" 40 40 #include "LinearAlgebra/RealSpaceMatrix.hpp" 41 41 #include "LinearAlgebra/Vector.hpp" … … 48 48 49 49 template <> 50 const std::string toCLIString( const Box& _value)50 const std::string toCLIString( const element & _value) 51 51 { 52 52 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 57 template <> 58 const 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) << "\""; 60 68 return output.str(); 61 69 } … … 65 73 { 66 74 std::stringstream output; 67 output << _value[0] << "," << _value[1] << "," << _value[2];75 output << "\"" << _value[0] << "," << _value[1] << "," << _value[2] << "\""; 68 76 return output.str(); 69 77 } 78 79 template <> 80 const 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 18 18 #include <string> 19 19 #include <sstream> 20 #include <vector> 20 21 21 22 class Box;22 class element; 23 class RealSpaceMatrix; 23 24 class Vector; 24 25 … … 32 33 } 33 34 35 template <typename T> 36 inline 37 const std::string toCLIString( const T *& _value) 38 { 39 std::stringstream output; 40 output << toCLIString(*_value); 41 return output.str(); 42 } 43 44 template <typename T> 45 inline 46 const std::string toCLIString( const T * _value) 47 { 48 std::stringstream output; 49 output << toCLIString(*_value); 50 return output.str(); 51 } 52 53 template <typename T> 54 inline 55 const 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 69 template <> const std::string toCLIString( const element & _value); 70 34 71 template <> const std::string toCLIString( const boost::filesystem::path & _value); 35 72 36 template <> const std::string toCLIString( const Box& _value);73 template <> const std::string toCLIString( const RealSpaceMatrix& _value); 37 74 38 75 template <> const std::string toCLIString( const Vector& _value); 39 76 77 template <> const std::string toCLIString( const std::string& _value); 78 40 79 #endif /* TOCLISTRING_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.