Changeset d754bb
- Timestamp:
- Dec 4, 2010, 11:44:19 PM (14 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:
- 5d4b73, d2b28f
- Parents:
- 5eebbc
- git-author:
- Frederik Heber <heber@…> (11/09/10 15:03:10)
- git-committer:
- Frederik Heber <heber@…> (12/04/10 23:44:19)
- Location:
- src/UIElements/TextUI/Query
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/Query/AtomTextQuery.cpp
r5eebbc rd754bb 41 41 do{ 42 42 badInput = false; 43 Log() << Verbose(0) << getTitle();44 cin >> idxOfAtom;45 if( cin.fail()){43 std::cout << getDescription() << ": "; 44 std::cin >> idxOfAtom; 45 if(std::cin.fail()){ 46 46 badInput = true; 47 cin.clear();48 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');49 Log() << Verbose(0) << "Input was not a number!" <<endl;47 std::cin.clear(); 48 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 49 std::cout << "Input was not a number!" << std::endl; 50 50 continue; 51 51 } … … 53 53 tmp = World::getInstance().getAtom(AtomById(idxOfAtom)); 54 54 if(!tmp && idxOfAtom!=-1){ 55 Log() << Verbose(0) << "Invalid Atom Index" << idxOfAtom <<endl;55 std::cout << "Invalid Atom Index" << idxOfAtom << std::endl; 56 56 badInput = true; 57 57 } 58 58 59 59 } while(badInput); 60 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');60 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 61 61 return (idxOfAtom!=-1); 62 62 } -
src/UIElements/TextUI/Query/AtomsTextQuery.cpp
r5eebbc rd754bb 39 39 bool TextDialog::AtomsTextQuery::handle() { 40 40 int idxOfAtom=-1; 41 Log() << Verbose(0) << getTitle();41 std::cout << getDescription() << ": "; 42 42 std::string line; 43 getline( cin,line);43 getline(std::cin,line); 44 44 // dissect by " " 45 45 std::string::iterator olditer = line.begin(); … … 50 50 temp = World::getInstance().getAtom(AtomById(idxOfAtom)); 51 51 if(!temp && idxOfAtom!=-1){ 52 Log() << Verbose(0) << "Invalid Atom Index" << idxOfAtom <<endl;52 std::cout << "Invalid Atom Index" << idxOfAtom << std::endl; 53 53 break; 54 54 } … … 62 62 temp = World::getInstance().getAtom(AtomById(idxOfAtom)); 63 63 if(!temp && idxOfAtom!=-1) { 64 Log() << Verbose(0) << "Invalid Atom Index" << idxOfAtom <<endl;64 std::cout << "Invalid Atom Index" << idxOfAtom << std::endl; 65 65 tmp.push_back(temp); 66 66 } -
src/UIElements/TextUI/Query/BooleanTextQuery.cpp
r5eebbc rd754bb 39 39 do{ 40 40 badInput = false; 41 Log() << Verbose(0) << getTitle();42 cin >> input;41 std::cout << getDescription() << "[y/n]: "; 42 std::cin >> input; 43 43 if ((input == 'y' ) || (input == 'Y')) { 44 44 tmp = true; … … 47 47 } else { 48 48 badInput=true; 49 cin.clear();50 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');51 Log() << Verbose(0) << "Input was not of [yYnN]!" <<endl;49 std::cin.clear(); 50 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 51 std::cout << "Input was not of [yYnN]!" << std::endl; 52 52 } 53 53 } while(badInput); 54 54 // clear the input buffer of anything still in the line 55 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');55 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 56 56 return true; 57 57 } -
src/UIElements/TextUI/Query/BoxTextQuery.cpp
r5eebbc rd754bb 37 37 38 38 bool TextDialog::BoxTextQuery::handle() { 39 Log() << Verbose(0)<< getTitle();39 std::cout << getTitle(); 40 40 41 41 double temp[6]; 42 std::cout << getDescription() << " - "; 42 43 std::string coords[6] = {"xx","yx","yy", "zx", "zy", "zz"}; 43 44 for (int i=0;i<6;i++) { 44 Log() << Verbose(0)<< coords[i] << ": ";45 cin >> temp[i];45 std::cout << coords[i] << ": "; 46 std::cin >> temp[i]; 46 47 } 47 48 Matrix M; -
src/UIElements/TextUI/Query/DoubleTextQuery.cpp
r5eebbc rd754bb 38 38 do{ 39 39 badInput = false; 40 Log() << Verbose(0) << getTitle();41 cin >> tmp;42 if( cin.fail()){40 std::cout << getDescription() << ": "; 41 std::cin >> tmp; 42 if(std::cin.fail()){ 43 43 badInput = true; 44 cin.clear();45 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');46 Log() << Verbose(0) << "Input was not a number!" <<endl;44 std::cin.clear(); 45 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 46 std::cout << "Input was not a number!" << std::endl; 47 47 } 48 48 }while(badInput); 49 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');49 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 50 50 return true; 51 51 } -
src/UIElements/TextUI/Query/DoublesTextQuery.cpp
r5eebbc rd754bb 35 35 36 36 bool TextDialog::DoublesTextQuery::handle() { 37 Log() << Verbose(0) << getTitle();37 std::cout << getDescription() << ": "; 38 38 std::string line; 39 getline( cin,line);39 getline(std::cin,line); 40 40 // dissect by " " 41 41 std::string::iterator olditer = line.begin(); -
src/UIElements/TextUI/Query/ElementTextQuery.cpp
r5eebbc rd754bb 44 44 do{ 45 45 badInput = false; 46 Log() << Verbose(0) << getTitle();46 std::cout << getDescription() << ": "; 47 47 48 48 // try to read as Atomic number 49 49 int Z; 50 cin >> Z;51 if(! cin.fail()){50 std::cin >> Z; 51 if(!std::cin.fail()){ 52 52 if(Z==-1){ 53 53 aborted = true; … … 56 56 temp = World::getInstance().getPeriode()->FindElement(Z); 57 57 if(!temp){ 58 Log() << Verbose(0) << "No element with this atomic number!" <<endl;58 std::cout << "No element with this atomic number!" << std::endl; 59 59 badInput = true; 60 60 } … … 63 63 } 64 64 else{ 65 cin.clear();65 std::cin.clear(); 66 66 } 67 67 … … 70 70 // same thing again, this time as a std::string 71 71 std::string shorthand; 72 cin >> shorthand;73 if(! cin.fail()){72 std::cin >> shorthand; 73 if(!std::cin.fail()){ 74 74 if(shorthand.empty()){ 75 75 aborted = true; … … 78 78 temp = World::getInstance().getPeriode()->FindElement(shorthand.c_str()); 79 79 if(!temp){ 80 Log() << Verbose(0) << "No element with this shorthand!" <<endl;80 std::cout << "No element with this shorthand!" << std::endl; 81 81 badInput = true; 82 82 } … … 84 84 } 85 85 else{ 86 Log() << Verbose(0) << "Could not read input. Try Again." <<endl;87 cin.clear();88 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');86 std::cout << "Could not read input. Try Again." << std::endl; 87 std::cin.clear(); 88 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 89 89 badInput = true; 90 90 } 91 91 92 92 }while(badInput); 93 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');93 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 94 94 return !aborted; 95 95 } -
src/UIElements/TextUI/Query/ElementsTextQuery.cpp
r5eebbc rd754bb 45 45 std::string shorthand; 46 46 int Z=-1; 47 Log() << Verbose(0) << getTitle();47 std::cout << getDescription() << ": "; 48 48 std::string line; 49 getline( cin,line);49 getline(std::cin,line); 50 50 // dissect by " " 51 51 std::string::iterator olditer = line.begin(); … … 61 61 }; 62 62 if(!temp && Z!=-1){ 63 Log() << Verbose(0) << "Invalid Element" << shorthand <<endl;63 std::cout << "Invalid Element" << shorthand << std::endl; 64 64 break; 65 65 } … … 78 78 }; 79 79 if(!temp && Z!=-1) { 80 Log() << Verbose(0) << "Invalid Element" << shorthand <<endl;80 std::cout << "Invalid Element" << shorthand << std::endl; 81 81 tmp.push_back(temp); 82 82 } -
src/UIElements/TextUI/Query/FileTextQuery.cpp
r5eebbc rd754bb 42 42 do{ 43 43 badInput = false; 44 std::cout << get Title();44 std::cout << getDescription() << ": "; 45 45 std::cin >> tempstring; 46 46 if(std::cin.fail()){ -
src/UIElements/TextUI/Query/IntTextQuery.cpp
r5eebbc rd754bb 38 38 do{ 39 39 badInput = false; 40 Log() << Verbose(0) << getTitle();41 cin >> tmp;42 if( cin.fail()){40 std::cout << getDescription() << ": "; 41 std::cin >> tmp; 42 if(std::cin.fail()){ 43 43 badInput=true; 44 cin.clear();45 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');46 Log() << Verbose(0) << "Input was not a number!" <<endl;44 std::cin.clear(); 45 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 46 std::cout << "Input was not a number!" << std::endl; 47 47 } 48 48 } while(badInput); 49 49 // clear the input buffer of anything still in the line 50 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');50 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 51 51 return true; 52 52 } -
src/UIElements/TextUI/Query/IntsTextQuery.cpp
r5eebbc rd754bb 35 35 36 36 bool TextDialog::IntsTextQuery::handle() { 37 Log() << Verbose(0) << getTitle();37 std::cout << getDescription() << ": "; 38 38 std::string line; 39 getline( cin,line);39 getline(std::cin,line); 40 40 // dissect by " " 41 41 std::string::iterator olditer = line.begin(); -
src/UIElements/TextUI/Query/MoleculeTextQuery.cpp
r5eebbc rd754bb 42 42 do{ 43 43 badInput = false; 44 Log() << Verbose(0) << getTitle();45 cin >> idxOfMol;46 if( cin.fail()){44 std::cout << getDescription() << ": "; 45 std::cin >> idxOfMol; 46 if(std::cin.fail()){ 47 47 badInput = true; 48 cin.clear();49 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');50 Log() << Verbose(0) << "Input was not a number!" <<endl;48 std::cin.clear(); 49 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 50 std::cout << "Input was not a number!" << std::endl; 51 51 continue; 52 52 } … … 54 54 tmp = World::getInstance().getMolecule(MoleculeById(idxOfMol)); 55 55 if(!tmp && idxOfMol!=-1){ 56 Log() << Verbose(0) << "Invalid Molecule Index" <<endl;56 std::cout << "Invalid Molecule Index" << std::endl; 57 57 badInput = true; 58 58 } 59 59 60 60 } while(badInput); 61 cin.ignore(std::numeric_limits<streamsize>::max(),'\n');61 std::cin.ignore(std::numeric_limits<streamsize>::max(),'\n'); 62 62 return (idxOfMol!=-1); 63 63 } -
src/UIElements/TextUI/Query/MoleculesTextQuery.cpp
r5eebbc rd754bb 39 39 bool TextDialog::MoleculesTextQuery::handle() { 40 40 int idxOfMol=-1; 41 Log() << Verbose(0) << getTitle();41 std::cout << getDescription() << ": "; 42 42 std::string line; 43 getline( cin,line);43 getline(std::cin,line); 44 44 // dissect by " " 45 45 std::string::iterator olditer = line.begin(); … … 50 50 temp = World::getInstance().getMolecule(MoleculeById(idxOfMol)); 51 51 if(!temp && idxOfMol!=-1){ 52 Log() << Verbose(0) << "Invalid Molecule Index" << idxOfMol <<endl;52 std::cout << "Invalid Molecule Index" << idxOfMol << std::endl; 53 53 break; 54 54 } … … 62 62 temp = World::getInstance().getMolecule(MoleculeById(idxOfMol)); 63 63 if(!temp && idxOfMol!=-1){ 64 Log() << Verbose(0) << "Invalid Molecule Index" << idxOfMol <<endl;64 std::cout << "Invalid Molecule Index" << idxOfMol << std::endl; 65 65 tmp.push_back(temp); 66 66 } -
src/UIElements/TextUI/Query/StringTextQuery.cpp
r5eebbc rd754bb 35 35 36 36 bool TextDialog::StringTextQuery::handle() { 37 Log() << Verbose(0) << getTitle();38 getline( cin,tmp);37 std::cout << getDescription() << ": "; 38 getline(std::cin,tmp); 39 39 return true; 40 40 } -
src/UIElements/TextUI/Query/StringsTextQuery.cpp
r5eebbc rd754bb 35 35 36 36 bool TextDialog::StringsTextQuery::handle() { 37 Log() << Verbose(0) << getTitle();38 getline( cin,temp);37 std::cout << getDescription() << ": "; 38 getline(std::cin,temp); 39 39 // dissect by " " 40 40 std::string::iterator olditer = temp.begin(); -
src/UIElements/TextUI/Query/VectorTextQuery.cpp
r5eebbc rd754bb 39 39 40 40 bool TextDialog::VectorTextQuery::handle() { 41 std::cout << get Title();41 std::cout << getDescription() << std::endl; 42 42 const Matrix &M = World::getInstance().getDomain().getM(); 43 43 char coords[3] = {'x', 'y', 'z'}; … … 46 46 47 47 std::string line; 48 getline( cin,line);48 getline(std::cin,line); 49 49 50 50 // dissect by "," -
src/UIElements/TextUI/Query/VectorsTextQuery.cpp
r5eebbc rd754bb 39 39 40 40 bool TextDialog::VectorsTextQuery::handle() { 41 std::cout << get Title();41 std::cout << getDescription() << std::endl; 42 42 char coords[3] = {'x', 'y', 'z'}; 43 43 const Matrix &M = World::getInstance().getDomain().getM(); … … 46 46 47 47 std::string line; 48 getline( cin,line);48 getline(std::cin,line); 49 49 50 50 // dissect by ","
Note:
See TracChangeset
for help on using the changeset viewer.