00001 void save_partitioning_vtk(mdp_lattice &lattice, string filename) { 00002 mdp_field<int> where(lattice); 00003 mdp_site x(lattice); 00004 forallsites(x) { 00005 where(x)=ME; 00006 } 00007 where.save_vtk(filename); 00008 }