/** * \file envelope_penetration.cpp * \brief functions for calculation envelope penetration * * Copyright 2007-2010 IMP Inventors. All rights reserved. * */ #include #include IMPEM_BEGIN_NAMESPACE long get_number_of_particles_outside_of_the_density(DensityMap *dmap, const Particles &ps) { IMP_LOG(IMP::VERBOSE,"start calculating the how many particles out of " <is_part_of_volume(xyz[i].get_coordinates())) { out_of_dens++; } } IMP_LOG(IMP::VERBOSE,"the number of particles outside of the density is:" << std::endl); return out_of_dens; } IMPEM_END_NAMESPACE