Changeset 3a1346 for src/Fragmentation
- Timestamp:
- May 17, 2012, 3:21:54 PM (13 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:
- 50f418
- Parents:
- 25b30aa
- git-author:
- Frederik Heber <heber@…> (12/11/11 17:31:37)
- git-committer:
- Frederik Heber <heber@…> (05/17/12 15:21:54)
- Location:
- src/Fragmentation/Automation/Controller/Commands
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Automation/Controller/Commands/CheckResultsOperation.hpp
r25b30aa r3a1346 26 26 /// Constructor for class CheckResultsOperation. 27 27 CheckResultsOperation(Connection &_connection) : 28 Operation( _connection),28 Operation(std::string("checkresults"), _connection), 29 29 doneJobs(0) 30 30 {} -
src/Fragmentation/Automation/Controller/Commands/Operation.cpp
r25b30aa r3a1346 36 36 /** Constructor for class Operation. 37 37 * 38 * \param _name name for this Operation for retrieval from a registry 38 39 * \param _connection connection to operate on 39 40 */ 40 Operation::Operation( Connection &_connection) :41 Operation::Operation(const std::string &_name, Connection &_connection) : 41 42 connection_(_connection), 43 name(_name), 42 44 Exitflag(OkFlag) 43 45 {} -
src/Fragmentation/Automation/Controller/Commands/Operation.hpp
r25b30aa r3a1346 22 22 class Operation { 23 23 public: 24 Operation( Connection &_connection);24 Operation(const std::string &_name, Connection &_connection); 25 25 virtual ~Operation(); 26 26 public: … … 52 52 } 53 53 54 std::string getName() const { 55 return name; 56 } 57 58 private: 59 /// Name of this Operation (required for Registry pattern) 60 std::string name; 61 54 62 protected: 55 63 /// internal function to disconnect from server -
src/Fragmentation/Automation/Controller/Commands/ReceiveJobsOperation.hpp
r25b30aa r3a1346 27 27 /// Constructor for class ReceiveJobsOperation. 28 28 ReceiveJobsOperation(Connection &_connection) : 29 Operation( _connection) {}29 Operation(std::string("receivejobs"), _connection) {} 30 30 /// Destructor for class ReceiveJobsOperation 31 31 ~ReceiveJobsOperation() {} -
src/Fragmentation/Automation/Controller/Commands/SendResultsOperation.hpp
r25b30aa r3a1346 27 27 /// Constructor for class SendResultsOperation. 28 28 SendResultsOperation(Connection &_connection) : 29 Operation( _connection) {}29 Operation(std::string("sendresults"), _connection) {} 30 30 /// Destructor for class SendResultsOperation 31 31 ~SendResultsOperation() {} -
src/Fragmentation/Automation/Controller/Commands/ShutdownOperation.hpp
r25b30aa r3a1346 26 26 /// Constructor for class ShutdownOperation. 27 27 ShutdownOperation(Connection &_connection) : 28 Operation( _connection) {}28 Operation(std::string("shutdown"),_connection) {} 29 29 /// Destructor for class ShutdownOperation 30 30 ~ShutdownOperation() {}
Note:
See TracChangeset
for help on using the changeset viewer.