add removed MPIIO dump styles to deprecated dump styles
This commit is contained in:
@ -27,6 +27,9 @@ DumpDeprecated::DumpDeprecated(LAMMPS *lmp, int narg, char **arg) : Dump(lmp, na
|
|||||||
if (my_style == "DEPRECATED") {
|
if (my_style == "DEPRECATED") {
|
||||||
if (lmp->comm->me == 0) utils::logmesg(lmp, "\nDump style 'DEPRECATED' is a dummy style\n\n");
|
if (lmp->comm->me == 0) utils::logmesg(lmp, "\nDump style 'DEPRECATED' is a dummy style\n\n");
|
||||||
return;
|
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");
|
error->all(FLERR, "This dump style is no longer available");
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,6 +15,10 @@
|
|||||||
// clang-format off
|
// clang-format off
|
||||||
// list all deprecated and removed dump styles here
|
// list all deprecated and removed dump styles here
|
||||||
DumpStyle(DEPRECATED,DumpDeprecated);
|
DumpStyle(DEPRECATED,DumpDeprecated);
|
||||||
|
DumpStyle(atom/mpiio,DumpDeprecated);
|
||||||
|
DumpStyle(cfg/mpiio,DumpDeprecated);
|
||||||
|
DumpStyle(custom/mpiio,DumpDeprecated);
|
||||||
|
DumpStyle(xyz/mpiio,DumpDeprecated);
|
||||||
// clang-format on
|
// clang-format on
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user