Changeset 26f75a for src/Actions


Ignore:
Timestamp:
May 30, 2010, 10:49:13 PM (15 years ago)
Author:
Frederik Heber <heber@…>
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:
6ca1f7
Parents:
8c574b
Message:

FIX: Box was not parsed correctly.

  • ListOf... types have to be multitoken() in MapOfActions class.
  • BoxQuery::setResult() - had *target[] instead of (*target)[] (priorities of ops)
  • change-box, bound-in-box, center-in-box all have ListOfDoubles now
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MapOfActions.cpp

    r8c574b r26f75a  
    132132  TypeMap["bond-table"] = String;
    133133  TypeMap["boundary"] = Vector;
    134   TypeMap["change-box"] = Vector;
     134  TypeMap["bound-in-box"] = ListOfDoubles;
     135  TypeMap["center-in-box"] = ListOfDoubles;
     136  TypeMap["change-box"] = ListOfDoubles;
    135137  TypeMap["change-element"] = Element;
    136138  TypeMap["change-molname"] = String;
     
    279281          case ListOfInts:
    280282            ListRunner->second->add_options()
    281               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >(), getDescription(*OptionRunner).c_str())
     283              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >()->multitoken(), getDescription(*OptionRunner).c_str())
    282284              ;
    283285            break;
     
    289291          case ListOfDoubles:
    290292            ListRunner->second->add_options()
     293              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<double> >()->multitoken(), getDescription(*OptionRunner).c_str())
     294              ;
     295            break;
     296          case String:
     297            ListRunner->second->add_options()
     298              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< std::string >(), getDescription(*OptionRunner).c_str())
     299              ;
     300            break;
     301          case Axis:
     302            ListRunner->second->add_options()
     303              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< int >(), getDescription(*OptionRunner).c_str())
     304              ;
     305            break;
     306          case Vector:
     307            ListRunner->second->add_options()
    291308              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<double> >(), getDescription(*OptionRunner).c_str())
    292309              ;
    293310            break;
    294           case String:
    295             ListRunner->second->add_options()
    296               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< std::string >(), getDescription(*OptionRunner).c_str())
    297               ;
    298             break;
    299           case Axis:
     311          case Box:
     312            ListRunner->second->add_options()
     313              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<double> >(), getDescription(*OptionRunner).c_str())
     314              ;
     315            break;
     316          case Molecule:
    300317            ListRunner->second->add_options()
    301318              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< int >(), getDescription(*OptionRunner).c_str())
    302319              ;
    303320            break;
    304           case Vector:
    305             ListRunner->second->add_options()
    306               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<double> >(), getDescription(*OptionRunner).c_str())
    307               ;
    308             break;
    309           case Box:
    310             ListRunner->second->add_options()
    311               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<double> >(), getDescription(*OptionRunner).c_str())
    312               ;
    313             break;
    314           case Molecule:
     321          case ListOfMolecules:
     322            ListRunner->second->add_options()
     323              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >()->multitoken(), getDescription(*OptionRunner).c_str())
     324              ;
     325            break;
     326          case Atom:
    315327            ListRunner->second->add_options()
    316328              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< int >(), getDescription(*OptionRunner).c_str())
    317329              ;
    318330            break;
    319           case ListOfMolecules:
    320             ListRunner->second->add_options()
    321               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >(), getDescription(*OptionRunner).c_str())
    322               ;
    323             break;
    324           case Atom:
     331          case ListOfAtoms:
     332            ListRunner->second->add_options()
     333              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >()->multitoken(), getDescription(*OptionRunner).c_str())
     334              ;
     335            break;
     336          case Element:
    325337            ListRunner->second->add_options()
    326338              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< int >(), getDescription(*OptionRunner).c_str())
    327339              ;
    328340            break;
    329           case ListOfAtoms:
    330             ListRunner->second->add_options()
    331               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >(), getDescription(*OptionRunner).c_str())
    332               ;
    333             break;
    334           case Element:
    335             ListRunner->second->add_options()
    336               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< int >(), getDescription(*OptionRunner).c_str())
    337               ;
    338             break;
    339341          case ListOfElements:
    340342            ListRunner->second->add_options()
    341               (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >(), getDescription(*OptionRunner).c_str())
     343              (getKeyAndShortForm(*OptionRunner).c_str(), po::value< vector<int> >()->multitoken(), getDescription(*OptionRunner).c_str())
    342344              ;
    343345            break;
Note: See TracChangeset for help on using the changeset viewer.