Ignore:
Timestamp:
Mar 24, 2017, 10:12:21 AM (8 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

Added FitFragmentPartialChargesAction that fits partial charges to fragments in result container.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/PotentialAction/FitPartialChargesAction.cpp

    r407d2c r2f9faf  
    184184}
    185185
    186 inline SerializablePotential::ParticleTypes_t
    187 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 
    198186static
    199187std::set<KeySet> accumulateKeySetsForAtoms(
     
    282270}
    283271
    284 const atom * getNonHydrogenSurrogate(const atom * const _walker)
     272static const atom * getNonHydrogenSurrogate(const atom * const _walker)
    285273{
    286274  const atom * surrogate = _walker;
     
    298286}
    299287
    300 double fitAverageChargeToAtom(
     288static double fitAverageChargeToAtom(
    301289    const atom * const _walker,
    302290    const AtomFragmentsMap &_atomfragments,
     
    361349}
    362350
    363 void addToParticleRegistry(
     351static void addToParticleRegistry(
    364352    const ParticleFactory &factory,
    365353    const periodentafel &periode,
     
    400388}
    401389
    402 bool isNotHydrogen(const atom * const _atom)
     390static bool isNotHydrogen(const atom * const _atom)
    403391{
    404392  return (_atom->getElementNo() != (atomicNumber_t) 1);
    405393}
    406394
    407 struct KeySetSizeComp {
     395static struct KeySetSizeComp {
    408396  bool operator() (const KeySet &a, const KeySet &b) { return a.size()<b.size(); }
    409397} keyset_comparator;
Note: See TracChangeset for help on using the changeset viewer.