Changeset 520c8b
- Timestamp:
- Feb 2, 2010, 12:21:13 PM (15 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:
- a25aae
- Parents:
- bfce50
- git-author:
- Tillmann Crueger <crueger@…> (01/15/10 15:53:29)
- git-committer:
- Tillmann Crueger <crueger@…> (02/02/10 12:21:13)
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/small_actions.cpp
rbfce50 r520c8b 32 32 dialog->queryString("Enter name: ",&filename); 33 33 if(dialog->display()) { 34 strcpy(mol->name, filename.c_str());34 mol->setName(filename); 35 35 } 36 36 -
src/molecule.cpp
rbfce50 r520c8b 61 61 delete(start); 62 62 }; 63 64 65 // getter and setter 66 const std::string molecule::getName(){ 67 return std::string(name); 68 } 69 70 void molecule::setName(const std::string _name){ 71 START_OBSERVER; 72 strncpy(name,_name.c_str(),MAXSTRINGSIZE); 73 FINISH_OBSERVER; 74 } 63 75 64 76 -
src/molecule.hpp
rbfce50 r520c8b 26 26 #include <list> 27 27 #include <vector> 28 29 #include <string> 28 30 29 31 #include "graph.hpp" … … 81 83 * Class incorporates number of types 82 84 */ 83 class molecule : public PointCloud {85 class molecule : public PointCloud , public Observable { 84 86 public: 85 87 double cell_size[6];//!< cell size … … 100 102 bool ActiveFlag; //!< in a MoleculeListClass used to discern active from inactive molecules 101 103 Vector Center; //!< Center of molecule in a global box 104 int IndexNr; //!< index of molecule in a MoleculeListClass 102 105 char name[MAXSTRINGSIZE]; //!< arbitrary name 103 int IndexNr; //!< index of molecule in a MoleculeListClass 104 106 107 public: 105 108 molecule(const periodentafel * const teil); 106 109 virtual ~molecule(); 110 111 //getter and setter 112 const std::string getName(); 113 void setName(const std::string); 107 114 108 115 // re-definition of virtual functions from PointCloud -
src/moleculelist.cpp
rbfce50 r520c8b 50 50 void MoleculeListClass::insert(molecule *mol) 51 51 { 52 START_OBSERVER; 52 53 mol->IndexNr = MaxIndex++; 53 54 ListOfMolecules.push_back(mol); 55 mol->signOn(this); 56 FINISH_OBSERVER; 54 57 }; 55 58
Note:
See TracChangeset
for help on using the changeset viewer.