Changeset 691be4 for src/FunctionApproximation
- Timestamp:
- Feb 25, 2013, 5:28:58 PM (12 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:
- 1f3b2a
- Parents:
- d94e7e
- git-author:
- Frederik Heber <heber@…> (11/26/12 22:23:13)
- git-committer:
- Frederik Heber <heber@…> (02/25/13 17:28:58)
- Location:
- src/FunctionApproximation
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/FunctionApproximation/Extractors.cpp
rd94e7e r691be4 52 52 FunctionModel::arguments_t 53 53 Extractors::gatherAllDistanceArguments( 54 const Fragment::positions_t &positions, 54 const Fragment::positions_t& positions, 55 const Fragment::charges_t& charges, 55 56 const size_t globalid) 56 57 { … … 68 69 const Vector secondtemp((*secondpositer)[0],(*secondpositer)[1],(*secondpositer)[2]); 69 70 arg.distance = firsttemp.distance(secondtemp); 71 arg.types = std::make_pair( 72 charges[ std::distance(positions.begin(), firstpositer) ], 73 charges[ std::distance(positions.begin(), secondpositer) ] 74 ); 70 75 arg.indices = std::make_pair( 71 76 std::distance( … … 84 89 FunctionModel::arguments_t 85 90 Extractors::gatherAllSymmetricDistanceArguments( 86 const Fragment::positions_t &positions, 91 const Fragment::positions_t& positions, 92 const Fragment::charges_t& charges, 87 93 const size_t globalid) 88 94 { … … 100 106 const Vector secondtemp((*secondpositer)[0],(*secondpositer)[1],(*secondpositer)[2]); 101 107 arg.distance = firsttemp.distance(secondtemp); 108 arg.types = std::make_pair( 109 charges[ std::distance(positions.begin(), firstpositer) ], 110 charges[ std::distance(positions.begin(), secondpositer) ] 111 ); 102 112 arg.indices = std::make_pair( 103 113 std::distance( … … 114 124 } 115 125 116 Fragment::positions_t Extractors::_detail::gatherPositionsFrom Charges(117 const Fragment::positions_t &positions,118 const Fragment::charges_t &charges,119 const chargeiters_t targets126 Fragment::positions_t Extractors::_detail::gatherPositionsFromTargets( 127 const Fragment::positions_t& positions, 128 const Fragment::charges_t& charges, 129 const chargeiters_t &targets 120 130 ) 121 131 { … … 129 139 } 130 140 return filtered_positions; 141 } 142 143 FunctionModel::arguments_t Extractors::_detail::gatherDistancesFromTargets( 144 const Fragment::positions_t& positions, 145 const Fragment::charges_t& charges, 146 const chargeiters_t &targets, 147 const size_t globalid 148 ) 149 { 150 Fragment::positions_t filtered_positions; 151 Fragment::charges_t filtered_charges; 152 for (chargeiters_t::const_iterator firstpairiter = targets.begin(); 153 firstpairiter != targets.end(); ++firstpairiter) { 154 Fragment::positions_t::const_iterator positer = positions.begin(); 155 const size_t steps = std::distance(charges.begin(), *firstpairiter); 156 std::advance(positer, steps); 157 filtered_positions.push_back(*positer); 158 filtered_charges.push_back(**firstpairiter); 159 } 160 return Extractors::gatherAllSymmetricDistanceArguments( 161 filtered_positions, 162 filtered_charges, 163 globalid); 131 164 } 132 165 … … 218 251 } 219 252 220 Fragment::positions_t221 Extractors:: gatherPositionOfTuples(222 const Fragment & fragment,253 Extractors::chargeiters_t 254 Extractors::_detail::gatherTargetsFromFragment( 255 const Fragment::charges_t& charges, 223 256 const Fragment::charges_t elements 224 ) {225 const Fragment::charges_t charges = fragment.getCharges(); 257 ) 258 { 226 259 /// The main problem here is that we have to know how many same 227 260 /// elements (but different atoms!) we are required to find. Hence, … … 248 281 ++chargeiter) 249 282 ASSERT( *chargeiter != charges.end(), 250 "Extractors::gather DistanceOfTuples() - we have not found enough targets?!");283 "Extractors::gatherTargetsFromFragment() - we have not found enough targets?!"); 251 284 #endif 285 286 return targets; 287 } 288 289 Fragment::positions_t 290 Extractors::gatherPositionsFromFragment( 291 const Fragment::positions_t positions, 292 const Fragment::charges_t charges, 293 const Fragment::charges_t& elements 294 ) 295 { 296 // 1.-3. gather correct charge positions 297 chargeiters_t targets = 298 Extractors::_detail::gatherTargetsFromFragment(charges, elements); 252 299 // 4. convert position_t to Vector 253 return Extractors::_detail::gatherPositionsFrom Charges(254 fragment.getPositions(),300 return Extractors::_detail::gatherPositionsFromTargets( 301 positions, 255 302 charges, 256 303 targets); 304 } 305 306 FunctionModel::arguments_t 307 Extractors::gatherDistancesFromFragment( 308 const Fragment::positions_t positions, 309 const Fragment::charges_t charges, 310 const Fragment::charges_t& elements, 311 const size_t globalid 312 ) 313 { 314 // 1.-3. gather correct charge positions 315 chargeiters_t targets = 316 Extractors::_detail::gatherTargetsFromFragment(charges, elements); 317 // 4. convert position_t to Vector 318 return Extractors::_detail::gatherDistancesFromTargets( 319 positions, 320 charges, 321 targets, 322 globalid); 257 323 } 258 324 -
src/FunctionApproximation/Extractors.hpp
rd94e7e r691be4 35 35 */ 36 36 namespace _detail { 37 /** Gather all positions from the same aligned vector of charges.37 /** Gather all distance arguments from the same aligned vector of charges. 38 38 * 39 39 * Basically, we filter the positions indicated by the targets but 40 40 * from a different vector that has the same layout. 41 41 * 42 * \param positions positions to search 43 * \param charges charges to match with \targets 42 * \param positions all nuclei positions 43 * \param charges all nuclei charges 44 * \param targets iterators on charges 45 * \return filtered distance arguments 46 */ 47 FunctionModel::arguments_t gatherDistancesFromTargets( 48 const Fragment::positions_t& positions, 49 const Fragment::charges_t& charges, 50 const chargeiters_t &targets, 51 const size_t globalid 52 ); 53 54 /** Gather all positions from the same aligned vector of charges. 55 * 56 * Basically, we filter the positions indicated by the targets but 57 * from a different vector that has the same layout. 58 * 59 * \param positions all nuclei positions 60 * \param charges all nuclei charges 44 61 * \param targets iterators on charges 45 62 * \return filtered positions 46 63 */ 47 Fragment::positions_t gatherPositionsFrom Charges(48 const Fragment::positions_t &positions,49 const Fragment::charges_t &charges,50 const chargeiters_t targets64 Fragment::positions_t gatherPositionsFromTargets( 65 const Fragment::positions_t& positions, 66 const Fragment::charges_t& charges, 67 const chargeiters_t& targets 51 68 ); 52 69 … … 86 103 const elementcounts_t &elementcounts 87 104 ); 105 106 /** Searches for desired elements in charges in a unique manner. 107 * 108 * The idea is to have e.g. a fragment with charges 8,1,1,2 and 109 * elements as 1,8,1 (e.g. for an angle HOH) and we get the 110 * chargeiters in the desired manner on indices: 1,0,3. 111 * 112 * \param charges charges to look through 113 * \param elements vector of elements to find 114 */ 115 chargeiters_t 116 gatherTargetsFromFragment( 117 const Fragment::charges_t& charges, 118 const Fragment::charges_t elements 119 ); 88 120 } 89 121 90 122 /** Gather all distances from a given set of positions. 91 123 * 92 * \param positions vector of positions 124 * \param positions all nuclei positions 125 * \param charges all nuclei charges 93 126 * \param globalid index to associated in argument_t with 94 127 * \return vector of argument_ , each with a distance … … 96 129 FunctionModel::arguments_t 97 130 gatherAllDistanceArguments( 98 const Fragment::positions_t &positions, 131 const Fragment::positions_t& positions, 132 const Fragment::charges_t& charges, 99 133 const size_t globalid); 100 134 … … 103 137 * Here, we only return one of the two equal distances. 104 138 * 105 * \param positions vector of positions 139 * \param positions all nuclei positions 140 * \param charges all nuclei charges 106 141 * \param globalid index to associated in argument_t with 107 142 * \return vector of argument_ , each with a distance … … 109 144 FunctionModel::arguments_t 110 145 gatherAllSymmetricDistanceArguments( 111 const Fragment::positions_t &positions, 146 const Fragment::positions_t& positions, 147 const Fragment::charges_t& charges, 112 148 const size_t globalid); 113 149 114 150 /** Simple extractor of all unique pair distances of a given \a fragment. 115 151 * 116 * \param fragment fragment with all nuclei positions 152 * \param positions all nuclei positions 153 * \param charges all nuclei charges 117 154 * \param index index refers to the index within the global set of configurations 118 155 * \return vector of of argument_t containing all found distances 119 156 */ 120 157 inline FunctionModel::arguments_t gatherAllDistances( 121 const Fragment& fragment, 158 const Fragment::positions_t& positions, 159 const Fragment::charges_t& charges, 122 160 const size_t index 123 161 ) { 124 162 // get distance out of Fragment 125 return gatherAllDistanceArguments( fragment.getPositions(), index);163 return gatherAllDistanceArguments(positions, charges, index); 126 164 } 127 165 128 /** Gather all positions associated to the matching \a elements. 129 * 130 * \param fragment fragment with all nuclei positions 166 /** Simple extractor of all unique pair distances of a given \a fragment, where 167 * the first index is less than the second one. 168 * 169 * \param positions all nuclei positions 170 * \param charges all nuclei charges 171 * \param index index refers to the index within the global set of configurations 172 * \return vector of of argument_t containing all found distances 173 */ 174 inline FunctionModel::arguments_t gatherAllSymmetricDistances( 175 const Fragment::positions_t& positions, 176 const Fragment::charges_t& charges, 177 const size_t index 178 ) { 179 // get distance out of Fragment 180 return gatherAllSymmetricDistanceArguments(positions, charges, index); 181 } 182 183 /** Filters only those positions out of given \a fragment that match \a elements. 184 * 185 * \param positions all nuclei positions 186 * \param charges all nuclei charges 131 187 * \param elements tuple of desired elements 132 188 * \return vector of positions_t containing 133 189 */ 134 Fragment::positions_t gatherPositionOfTuples( 135 const Fragment& fragment, 136 const Fragment::charges_t elements 190 Fragment::positions_t gatherPositionsFromFragment( 191 const Fragment::positions_t positions, 192 const Fragment::charges_t charges, 193 const Fragment::charges_t& elements 194 ); 195 196 /** Filters only those distances out of given \a fragment that match \a elements. 197 * 198 * \param positions all nuclei positions 199 * \param charges all nuclei charges 200 * \param elements tuple of desired elements 201 * \return vector of arguments_t containing those matched with elements 202 */ 203 FunctionModel::arguments_t gatherDistancesFromFragment( 204 const Fragment::positions_t positions, 205 const Fragment::charges_t charges, 206 const Fragment::charges_t& elements, 207 const size_t globalid 137 208 ); 138 209 -
src/FunctionApproximation/FunctionArgument.cpp
rd94e7e r691be4 44 44 { 45 45 ost << "[(" << arg.indices.first << "," << arg.indices.second 46 << "), q( " << arg.types.first << "," << arg.types.second << ")," 46 47 << "r=" << arg.distance; 47 48 return ost; -
src/FunctionApproximation/FunctionArgument.hpp
rd94e7e r691be4 32 32 //!> typedef for the two indices of the argument 33 33 typedef std::pair<size_t, size_t> indices_t; 34 //!> typedef for the underlying type of the particle 35 typedef int ParticleType_t; 36 //!> typedef for the two particle types of the argument 37 typedef std::pair<ParticleType_t, ParticleType_t> types_t; 34 38 35 39 /** Default constructor for class argument_t. … … 38 42 argument_t() : 39 43 indices( std::make_pair(0,1) ), 44 types( std::make_pair(0,0) ), 40 45 distance(0.), 41 46 globalid(-1) … … 50 55 argument_t(const double &_distance) : 51 56 indices( std::make_pair(0,1) ), 57 types( std::make_pair(0,0) ), 52 58 distance(_distance), 53 59 globalid(-1) … … 61 67 argument_t(const indices_t &_indices, const double &_distance) : 62 68 indices( _indices ), 69 types( std::make_pair(0,0) ), 70 distance(_distance), 71 globalid(-1) 72 {} 73 74 /** Constructor for class argument_t. 75 * 76 * \param _indices pair of indices associated with the \a _distance 77 * \param _types pair of particle type 78 * \param _distance distance argument 79 */ 80 argument_t(const indices_t &_indices, const types_t &_types, const double &_distance) : 81 indices( _indices ), 82 types( _types ), 63 83 distance(_distance), 64 84 globalid(-1) … … 98 118 //!> indices between which the distance is given 99 119 indices_t indices; 120 //!> indices between which the distance is given 121 types_t types; 100 122 //!> distance 101 123 double distance; -
src/FunctionApproximation/unittests/ExtractorsUnitTest.cpp
rd94e7e r691be4 84 84 } 85 85 86 // create charges 87 Fragment::charges_t charges; 88 charges += 6., 6., 1., 1., 1.; 89 86 90 // create distances 87 91 FunctionModel::arguments_t args = 88 Extractors::gatherAllDistanceArguments(positions, 0);92 Extractors::gatherAllDistanceArguments(positions, charges, 0); 89 93 CPPUNIT_ASSERT_EQUAL( (size_t)(5*4), args.size() ); 90 94 … … 94 98 } 95 99 96 /** UnitTest for gatherPosition OfTuples()100 /** UnitTest for gatherPositionsFromFragment() 97 101 */ 98 void ExtractorsTest::gatherPosition OfTuplesTest()102 void ExtractorsTest::gatherPositionsFromFragmentTest() 99 103 { 100 104 // create positions … … 110 114 charges += 6., 6., 1., 1., 1.; 111 115 112 // create Fragment 113 Fragment fragment(positions, charges); 116 { 117 // extract carbon pairs 118 Fragment::charges_t carbonpair; 119 carbonpair += 6.,6.; 120 Fragment::positions_t filtered_positions = 121 Extractors::gatherPositionsFromFragment(positions, charges, carbonpair); 122 CPPUNIT_ASSERT_EQUAL( (size_t)2, filtered_positions.size() ); 123 } 124 125 { 126 // extract hydrogen triple 127 Fragment::charges_t hydrogentriple; 128 hydrogentriple += 1.,1.,1.; 129 Fragment::positions_t filtered_positions = 130 Extractors::gatherPositionsFromFragment(positions, charges, hydrogentriple); 131 CPPUNIT_ASSERT_EQUAL( (size_t)3, filtered_positions.size() ); 132 } 133 } 134 135 /** UnitTest for gatherDistancesFromFragment() 136 */ 137 void ExtractorsTest::gatherDistancesFromFragmentTest() 138 { 139 // create positions 140 Fragment::positions_t positions; 141 Fragment::position_t pos(3, 0.); 142 for (double i = 0; i < 5; i+=1.) { 143 pos[0] = i; 144 positions.push_back(pos); 145 } 146 147 // create charges 148 Fragment::charges_t charges; 149 charges += 6., 6., 1., 1., 1.; 114 150 115 151 { … … 118 154 carbonpair += 6.,6.; 119 155 FunctionModel::arguments_t args = 120 Extractors::gatherAllSymmetricDistanceArguments( 121 Extractors::gatherPositionOfTuples(fragment, carbonpair), 122 0 123 ); 156 Extractors::gatherDistancesFromFragment(positions, charges, carbonpair, 0); 124 157 CPPUNIT_ASSERT_EQUAL( (size_t)1, args.size() ); 125 CPPUNIT_ASSERT_EQUAL( 1., args[0].distance );126 158 } 127 159 … … 131 163 hydrogentriple += 1.,1.,1.; 132 164 FunctionModel::arguments_t args = 133 Extractors::reorderArgumentsByIncreasingDistance( 134 Extractors::gatherAllSymmetricDistanceArguments( 135 Extractors::gatherPositionOfTuples(fragment, hydrogentriple), 136 0 137 ) 138 ); 165 Extractors::gatherDistancesFromFragment(positions, charges, hydrogentriple, 0); 139 166 CPPUNIT_ASSERT_EQUAL( (size_t)3, args.size() ); 140 CPPUNIT_ASSERT_EQUAL( 1., args[0].distance );141 CPPUNIT_ASSERT_EQUAL( 1., args[1].distance );142 CPPUNIT_ASSERT_EQUAL( 2., args[2].distance );143 167 } 144 168 } -
src/FunctionApproximation/unittests/ExtractorsUnitTest.hpp
rd94e7e r691be4 24 24 CPPUNIT_TEST ( gatherAllDistanceArgumentsTest ); 25 25 CPPUNIT_TEST ( reorderArgumentsByIncreasingDistanceTest ); 26 CPPUNIT_TEST ( gatherPositionOfTuplesTest ); 26 CPPUNIT_TEST ( gatherPositionsFromFragmentTest ); 27 CPPUNIT_TEST ( gatherDistancesFromFragmentTest ); 27 28 CPPUNIT_TEST_SUITE_END(); 28 29 … … 32 33 void gatherAllDistanceArgumentsTest(); 33 34 void reorderArgumentsByIncreasingDistanceTest(); 34 void gatherPositionOfTuplesTest(); 35 void gatherPositionsFromFragmentTest(); 36 void gatherDistancesFromFragmentTest(); 35 37 36 38 private:
Note:
See TracChangeset
for help on using the changeset viewer.