source: src/Potentials/InternalCoordinates/Coordinator.hpp@ f1cacb

Action_Thermostats Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator EmpiricalPotential_contain_HomologyGraph_documentation Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_oldresults ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps
Last change on this file since f1cacb was 4e6a60, checked in by Frederik Heber <heber@…>, 12 years ago

Added CoordinatorFactory that returns the correct Coordinator for a given graph.

  • extended HomologyGraph interface by getter for nodes and edges.
  • CoordinatorFactory::create() decides by number of nodes and connected_edges which coordinator to return.
  • Property mode set to 100644
File size: 599 bytes
Line 
1/*
2 * Coordinator.hpp
3 *
4 * Created on: 03.09.2013
5 * Author: heber
6 */
7
8#ifndef COORDINATOR_HPP_
9#define COORDINATOR_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include "FunctionApproximation/FunctionModel.hpp"
17
18#include <boost/shared_ptr.hpp>
19
20/** This class is the interface for all functors converting
21 * a list of distances (arguments_t) into internal coordinates.
22 *
23 */
24struct Coordinator
25{
26 typedef boost::shared_ptr<Coordinator> ptr;
27
28 virtual double operator()(const FunctionModel::arguments_t &arguments) const=0;
29};
30
31#endif /* COORDINATOR_HPP_ */
Note: See TracBrowser for help on using the repository browser.