- Timestamp:
- Mar 24, 2017, 10:12:21 AM (8 years ago)
- Branches:
- FitPartialCharges_GlobalError
- Children:
- a3d08c
- Parents:
- 407d2c
- git-author:
- Frederik Heber <heber@…> (10/09/16 21:28:59)
- git-committer:
- Frederik Heber <heber@…> (03/24/17 10:12:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/PotentialAction/FitPartialChargesAction.cpp
r407d2c r2f9faf 184 184 } 185 185 186 inline SerializablePotential::ParticleTypes_t187 getParticleTypesForAtomIdSet(const AtomIdSet &_atoms)188 {189 SerializablePotential::ParticleTypes_t particletypes;190 particletypes.resize(_atoms.size());191 std::transform(192 _atoms.begin(), _atoms.end(),193 particletypes.begin(),194 boost::bind(&atom::getElementNo, _1));195 return particletypes;196 }197 198 186 static 199 187 std::set<KeySet> accumulateKeySetsForAtoms( … … 282 270 } 283 271 284 const atom * getNonHydrogenSurrogate(const atom * const _walker)272 static const atom * getNonHydrogenSurrogate(const atom * const _walker) 285 273 { 286 274 const atom * surrogate = _walker; … … 298 286 } 299 287 300 double fitAverageChargeToAtom(288 static double fitAverageChargeToAtom( 301 289 const atom * const _walker, 302 290 const AtomFragmentsMap &_atomfragments, … … 361 349 } 362 350 363 void addToParticleRegistry(351 static void addToParticleRegistry( 364 352 const ParticleFactory &factory, 365 353 const periodentafel &periode, … … 400 388 } 401 389 402 bool isNotHydrogen(const atom * const _atom)390 static bool isNotHydrogen(const atom * const _atom) 403 391 { 404 392 return (_atom->getElementNo() != (atomicNumber_t) 1); 405 393 } 406 394 407 st ruct KeySetSizeComp {395 static struct KeySetSizeComp { 408 396 bool operator() (const KeySet &a, const KeySet &b) { return a.size()<b.size(); } 409 397 } keyset_comparator;
Note:
See TracChangeset
for help on using the changeset viewer.