Changeset 5f612ee for src/Legacy/oldmenu.cpp
- Timestamp:
- Apr 27, 2010, 2:25:42 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:
- 632bc3
- Parents:
- 13d5a9 (diff), c695c9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Legacy/oldmenu.cpp
r13d5a9 r5f612ee 79 79 Log() << Verbose(0) << "Enter absolute coordinates." << endl; 80 80 first = World::getInstance().createAtom(); 81 first->x.AskPosition( mol->cell_size, false);81 first->x.AskPosition(World::getInstance().getDomain(), false); 82 82 first->type = periode->AskElement(); // give type 83 83 mol->AddAtom(first); // add to molecule … … 90 90 if (!valid) eLog() << Verbose(2) << "Resulting position out of cell." << endl; 91 91 Log() << Verbose(0) << "Enter reference coordinates." << endl; 92 x.AskPosition( mol->cell_size, true);92 x.AskPosition(World::getInstance().getDomain(), true); 93 93 Log() << Verbose(0) << "Enter relative coordinates." << endl; 94 first->x.AskPosition( mol->cell_size, false);94 first->x.AskPosition(World::getInstance().getDomain(), false); 95 95 first->x.AddVector((const Vector *)&x); 96 96 Log() << Verbose(0) << "\n"; … … 107 107 second = mol->AskAtom("Enter atom number: "); 108 108 Log() << Verbose(0) << "Enter relative coordinates." << endl; 109 first->x.AskPosition( mol->cell_size, false);109 first->x.AskPosition(World::getInstance().getDomain(), false); 110 110 for (int i=NDIM;i--;) { 111 111 first->x.x[i] += second->x.x[i]; … … 334 334 case 'b': // normal vector of mirror plane 335 335 Log() << Verbose(0) << "Enter normal vector of mirror plane." << endl; 336 n.AskPosition( mol->cell_size,0);336 n.AskPosition(World::getInstance().getDomain(),0); 337 337 n.Normalize(); 338 338 break; … … 401 401 case 'b': // normal vector of mirror plane 402 402 Log() << Verbose(0) << "Enter normal vector of mirror plane." << endl; 403 n.AskPosition( mol->cell_size,0);403 n.AskPosition(World::getInstance().getDomain(),0); 404 404 n.Normalize(); 405 405 break; … … 778 778 x.Zero(); 779 779 y.Zero(); 780 y.x[abs(axis)-1] = mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] * abs(axis)/axis; // last term is for sign, first is for magnitude780 y.x[abs(axis)-1] = World::getInstance().getDomain()[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] * abs(axis)/axis; // last term is for sign, first is for magnitude 781 781 for (int i=1;i<faktor;i++) { // then add this list with respective translation factor times 782 782 x.AddVector(&y); // per factor one cell width further … … 801 801 mol->Translate(&x); 802 802 } 803 mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] *= faktor;803 World::getInstance().getDomain()[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] *= faktor; 804 804 } 805 805 } … … 894 894 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; 895 895 Log() << Verbose(0) << "Enter translation vector." << endl; 896 x.AskPosition( mol->cell_size,0);896 x.AskPosition(World::getInstance().getDomain(),0); 897 897 mol->Center.AddVector((const Vector *)&x); 898 898 }
Note:
See TracChangeset
for help on using the changeset viewer.