| 199 | template<class> class Allocator, class CellAssignor> |
| 200 | template <typename P, typename Assignor> |
| 201 | IntVect |
| 202 | ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator, CellAssignor>::Index (const P& p, int lev) const |
| 203 | { |
| 204 | const Geometry& geom = Geom(lev); |
| 205 | const auto& domain = geom.Domain(); |
| 206 | const auto& plo = geom.ProbLoArray(); |
| 207 | const auto& dxi = geom.InvCellSizeArray(); |
| 208 | |
| 209 | return Assignor{}(p, plo, dxi, domain); |
| 210 | } |
| 211 | |
| 212 | template <typename ParticleType, int NArrayReal, int NArrayInt, |
| 213 | template<class> class Allocator, class CellAssignor> |
no test coverage detected