source: src/FunctionApproximation/Extractors.hpp@ c7aac9

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator 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_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since c7aac9 was c7aac9, checked in by Frederik Heber <heber@…>, 8 years ago

FIX: TrainingData used charges instead of atomic numbers to recognize fragments.

  • this only works if we do not DoSampleValenceOnly. Otherwise charges are no longer directly associable with the atomic number of the nuclei.
  • Extractors::gatherAllSymmetricDistanceArguments now needs atomicnumbers instead of charges.
  • TESTFIX: needed to adapt ExtractorsUnitTest.
  • Property mode set to 100644
File size: 5.3 KB
Line 
1/*
2 * Extractors.hpp
3 *
4 * Created on: 15.10.2012
5 * Author: heber
6 */
7
8#ifndef TRAININGDATA_EXTRACTORS_HPP_
9#define TRAININGDATA_EXTRACTORS_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <boost/function.hpp>
17
18#include "Fragmentation/Summation/SetValues/Fragment.hpp"
19#include "FunctionApproximation/FunctionModel.hpp"
20
21class Fragment;
22
23/** Namespace containing all simple extractor functions.
24 *
25 * Extractor functions extract distances from a given fragment matching with
26 * a given set of particle types (i.e. elements, e.h. H2O).
27 * Filter functions extract a subset of distances from a given set of distances
28 * to be used with a specific model.
29 *
30 * To this end, each FunctionModel has both a filter and an extractor function.
31 *
32 * The functions in this namespace act as helpers or basic building blocks in
33 * constructing such filters and extractors.
34 *
35 */
36namespace Extractors {
37 typedef Fragment::charges_t::const_iterator chargeiter_t;
38 typedef std::vector<chargeiter_t> chargeiters_t;
39
40 typedef size_t count_t;
41 typedef Fragment::charge_t element_t;
42 typedef std::map< element_t, count_t> elementcounts_t;
43 typedef std::map< element_t, chargeiters_t > elementtargets_t;
44 typedef std::vector< chargeiters_t > targets_per_combination_t;
45 //!> typedef for particle designation
46 typedef int ParticleType_t;
47 //!> typedef for a vector of particle designations
48 typedef std::vector<ParticleType_t> ParticleTypes_t;
49
50 /** Namespace for some internal helper functions.
51 *
52 */
53 namespace _detail {
54
55 /** Counts all same elements in the vector and places into map of elements.
56 *
57 * \param elements vector of elements
58 * \return count of same element in vector
59 */
60 elementcounts_t getElementCounts(
61 const Fragment::charges_t elements
62 );
63
64 }
65
66 /** Gather all distances from a given set of positions.
67 *
68 * Here, we only return one of the two equal distances.
69 *
70 * \param positions all nuclei positions
71 * \param atomicNumber all nuclei atomic numbers
72 * \param globalid index to associated in argument_t with
73 * \return vector of argument_ , each with a distance
74 */
75 FunctionModel::arguments_t
76 gatherAllSymmetricDistanceArguments(
77 const Fragment::positions_t& positions,
78 const Fragment::atomicnumbers_t& atomicnumbers,
79 const size_t globalid);
80
81 /** Simple extractor of all unique pair distances of a given \a fragment, where
82 * the first index is less than the second one.
83 *
84 * \param positions all nuclei positions
85 * \param atomicNumber all nuclei atomic numbers
86 * \param index index refers to the index within the global set of configurations
87 * \return vector of of argument_t containing all found distances
88 */
89 inline FunctionModel::arguments_t gatherAllSymmetricDistances(
90 const Fragment::positions_t& positions,
91 const Fragment::atomicnumbers_t& atomicnumbers,
92 const size_t index
93 ) {
94 // get distance out of Fragment
95 return gatherAllSymmetricDistanceArguments(positions, atomicnumbers, index);
96 }
97
98 /** Reorder the arguments to bring adjacent ones together.
99 *
100 * After filtering via particle types arguments related via same indices
101 * must not necessarily be contained in the same bunch. This reordering
102 * is done here, preserving the alignment given in
103 * \sa filterArgumentsByParticleTypes()
104 *
105 * \param listargs list of arguments to reorder each
106 * \param _types particle type vector
107 * \return reordered args
108 */
109 FunctionModel::list_of_arguments_t reorderArgumentsByParticleTypes(
110 const FunctionModel::list_of_arguments_t &eachargs,
111 const ParticleTypes_t &_types
112 );
113
114 /** Filter arguments according to types, allowing multiples.
115 *
116 * If particle types is (0,1,2) and three arguments, each with a pair of types,
117 * are given, then the alignment will be: (0,1), (0,2), and (1,2).
118 *
119 * \param args arguments to reorder
120 * \param _types particle type vector
121 * \return filtered list of args
122 */
123 FunctionModel::list_of_arguments_t filterArgumentsByParticleTypes(
124 const FunctionModel::arguments_t &args,
125 const ParticleTypes_t &_types
126 );
127
128 /** Combines two argument lists by sorting and making unique.
129 *
130 * @param firstargs first list of arguments
131 * @param secondargs second list of arguments
132 * @return concatenated lists
133 */
134 FunctionModel::arguments_t combineArguments(
135 const FunctionModel::arguments_t &firstargs,
136 const FunctionModel::arguments_t &secondargs);
137
138 /** Combines two argument lists by concatenation.
139 *
140 * @param firstargs first list of arguments
141 * @param secondargs second list of arguments
142 * @return concatenated lists
143 */
144 FunctionModel::arguments_t concatenateArguments(
145 const FunctionModel::arguments_t &firstargs,
146 const FunctionModel::arguments_t &secondargs);
147
148 /** Combines two argument lists by concatenation.
149 *
150 * @param firstlistargs first list of argument tuples
151 * @param secondlistargs second list of argument tuples
152 * @return concatenated lists
153 */
154 FunctionModel::list_of_arguments_t concatenateListOfArguments(
155 const FunctionModel::list_of_arguments_t &firstlistargs,
156 const FunctionModel::list_of_arguments_t &secondlistargs);
157
158}; /* namespace Extractors */
159
160
161#endif /* TRAININGDATA_EXTRACTORS_HPP_ */
Note: See TracBrowser for help on using the repository browser.