Changeset 520c8b


Ignore:
Timestamp:
Feb 2, 2010, 12:21:13 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
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)
Message:

Moved method to rename molecules to a seperate Action

Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/small_actions.cpp

    rbfce50 r520c8b  
    3232  dialog->queryString("Enter name: ",&filename);
    3333  if(dialog->display()) {
    34     strcpy(mol->name, filename.c_str());
     34    mol->setName(filename);
    3535  }
    3636
  • src/molecule.cpp

    rbfce50 r520c8b  
    6161  delete(start);
    6262};
     63
     64
     65// getter and setter
     66const std::string molecule::getName(){
     67  return std::string(name);
     68}
     69
     70void molecule::setName(const std::string _name){
     71  START_OBSERVER;
     72  strncpy(name,_name.c_str(),MAXSTRINGSIZE);
     73  FINISH_OBSERVER;
     74}
    6375
    6476
  • src/molecule.hpp

    rbfce50 r520c8b  
    2626#include <list>
    2727#include <vector>
     28
     29#include <string>
    2830
    2931#include "graph.hpp"
     
    8183 * Class incorporates number of types
    8284 */
    83 class molecule : public PointCloud {
     85class molecule : public PointCloud , public Observable {
    8486  public:
    8587    double cell_size[6];//!< cell size
     
    100102    bool ActiveFlag;    //!< in a MoleculeListClass used to discern active from inactive molecules
    101103    Vector Center;      //!< Center of molecule in a global box
     104    int IndexNr;        //!< index of molecule in a MoleculeListClass
    102105    char name[MAXSTRINGSIZE];         //!< arbitrary name
    103     int IndexNr;        //!< index of molecule in a MoleculeListClass
    104 
     106
     107public:
    105108  molecule(const periodentafel * const teil);
    106109  virtual ~molecule();
     110
     111  //getter and setter
     112  const std::string getName();
     113  void setName(const std::string);
    107114
    108115  // re-definition of virtual functions from PointCloud
  • src/moleculelist.cpp

    rbfce50 r520c8b  
    5050void MoleculeListClass::insert(molecule *mol)
    5151{
     52  START_OBSERVER;
    5253  mol->IndexNr = MaxIndex++;
    5354  ListOfMolecules.push_back(mol);
     55  mol->signOn(this);
     56  FINISH_OBSERVER;
    5457};
    5558
Note: See TracChangeset for help on using the changeset viewer.