Changeset 898ae8


Ignore:
Timestamp:
Dec 17, 2009, 2:40:16 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:
816625
Parents:
1fa107
Message:

Removed legacy code from old menu structure.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/menu.cpp

    r1fa107 r898ae8  
    12901290
    12911291  delete main_menu;
    1292 
    1293 #if 0
    1294     char choice;
    1295     int j;
    1296     Log() << Verbose(0) << endl << "Now comes the real construction..." << endl;
    1297     do {
    1298     Log() << Verbose(0) << endl << endl;
    1299     Log() << Verbose(0) << "============Molecule list=======================" << endl;
    1300     molecules->Enumerate((ofstream *)&cout);
    1301     Log() << Verbose(0) << "============Menu===============================" << endl;
    1302     Log() << Verbose(0) << "a - set molecule (in)active" << endl; //to be moved
    1303     Log() << Verbose(0) << "e - edit molecules (load, parse, save)" << endl; // done
    1304     Log() << Verbose(0) << "g - globally manipulate atoms in molecule" << endl;
    1305     Log() << Verbose(0) << "M - Merge molecules" << endl;
    1306     Log() << Verbose(0) << "m - manipulate atoms" << endl;
    1307     Log() << Verbose(0) << "-----------------------------------------------" << endl;
    1308     Log() << Verbose(0) << "c - edit the current configuration" << endl;
    1309     Log() << Verbose(0) << "-----------------------------------------------" << endl;
    1310     Log() << Verbose(0) << "s - save current setup to config file" << endl;
    1311     Log() << Verbose(0) << "T - call the current test routine" << endl;
    1312     Log() << Verbose(0) << "q - quit" << endl; //done
    1313     Log() << Verbose(0) << "===============================================" << endl;
    1314     Log() << Verbose(0) << "Input: ";
    1315     cin >> choice;
    1316 
    1317     switch (choice) {
    1318       case 'a':  // (in)activate molecule
    1319         {
    1320           Log() << Verbose(0) << "Enter index of molecule: ";
    1321           cin >> j;
    1322           for(MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
    1323             if ((*ListRunner)->IndexNr == j)
    1324               (*ListRunner)->ActiveFlag = !(*ListRunner)->ActiveFlag;
    1325         }
    1326         break;
    1327 
    1328       case 'c': // edit each field of the configuration
    1329        configuration->Edit();
    1330        break;
    1331 
    1332       case 'e': // create molecule
    1333         EditMolecules(periode, molecules);
    1334         break;
    1335 
    1336       case 'g': // manipulate molecules
    1337         ManipulateMolecules(periode, molecules, configuration);
    1338         break;
    1339 
    1340       case 'M':  // merge molecules
    1341         MergeMolecules(periode, molecules);
    1342         break;
    1343 
    1344       case 'm': // manipulate atoms
    1345         ManipulateAtoms(periode, molecules, configuration);
    1346         break;
    1347 
    1348       case 'q': // quit
    1349         break;
    1350 
    1351       case 's': // save to config file
    1352         SaveConfig(ConfigFileName, configuration, periode, molecules);
    1353         break;
    1354 
    1355       case 'T':
    1356         testroutine(molecules);
    1357         break;
    1358 
    1359       default:
    1360         break;
    1361     };
    1362   } while (choice != 'q');
    1363 #endif
    13641292};
    13651293
Note: See TracChangeset for help on using the changeset viewer.