For example, you can do
std::for_each(particles.begin(), particles.end(),
IMP::SingletonFunctor(new IMP::core::Transform(tr)));
IMP::for_each(particles,
IMP::SingletonFunctor(new IMP::core::Transform(tr)));
particles is a temporary value) or
map(SingletonFunctor(Transform(tr)), particles)
Public Member Functions | |
| void | operator() (ParticlePair p) const |
| PairFunctor (const PairModifier *f, DerivativeAccumulator *da) | |
| PairFunctor (const PairModifier *f) | |
| Store the PairModifier and the optional DerivativeAccumulator. | |