add removed MPIIO dump styles to deprecated dump styles

This commit is contained in:
Axel Kohlmeyer
2023-08-20 22:03:34 -04:00
parent a81412f015
commit 4de7694bbe
2 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,9 @@ DumpDeprecated::DumpDeprecated(LAMMPS *lmp, int narg, char **arg) : Dump(lmp, na
if (my_style == "DEPRECATED") {
if (lmp->comm->me == 0) utils::logmesg(lmp, "\nDump style 'DEPRECATED' is a dummy style\n\n");
return;
} else if (utils::strmatch(my_style, "/mpiio$")) {
utils::logmesg(lmp, "\nThe MPIIO and thus dump style {} have been removed from LAMMPS.\n\n",
my_style);
}
error->all(FLERR, "This dump style is no longer available");
}

View File

@ -15,6 +15,10 @@
// clang-format off
// list all deprecated and removed dump styles here
DumpStyle(DEPRECATED,DumpDeprecated);
DumpStyle(atom/mpiio,DumpDeprecated);
DumpStyle(cfg/mpiio,DumpDeprecated);
DumpStyle(custom/mpiio,DumpDeprecated);
DumpStyle(xyz/mpiio,DumpDeprecated);
// clang-format on
#else