From 94d5c75fdfd1a89d9c108538ec7ff12073d54b19 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 12 Dec 2021 18:11:33 -0500 Subject: [PATCH] small updates for docs and comments --- doc/src/read_dump.rst | 5 ++--- src/reader.cpp | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/src/read_dump.rst b/doc/src/read_dump.rst index 2e02020a83..3a771b9c2d 100644 --- a/doc/src/read_dump.rst +++ b/doc/src/read_dump.rst @@ -41,7 +41,6 @@ Syntax *wrapped* value = *yes* or *no* = coords in dump file are wrapped/unwrapped *format* values = format of dump file, must be last keyword if used *native* = native LAMMPS dump file - *native/bin* = native LAMMPS dump file in binary format *xyz* = XYZ file *adios* [*timeout* value] = dump file written by the :doc:`dump adios ` command *timeout* = specify waiting time for the arrival of the timestep when running concurrently. @@ -114,8 +113,8 @@ to tell LAMMPS how many parallel files exist, via its specified The format of the dump file is selected through the *format* keyword. If specified, it must be the last keyword used, since all remaining -arguments are passed on to the dump reader. The *native* and *native/bin" -format is for native LAMMPS dump files, written with a :doc:`dump atom ` +arguments are passed on to the dump reader. The *native* format is +for native LAMMPS dump files, written with a :doc:`dump atom ` or :doc:`dump custom ` command. The *xyz* format is for generic XYZ formatted dump files. These formats take no additional values. diff --git a/src/reader.cpp b/src/reader.cpp index 0c5a78be1a..eb8cd9ffb6 100644 --- a/src/reader.cpp +++ b/src/reader.cpp @@ -31,7 +31,7 @@ Reader::Reader(LAMMPS *lmp) : Pointers(lmp) /* ---------------------------------------------------------------------- try to open given file - generic version for ASCII files that may be compressed or native binary dumps + generic version for ASCII files with optional compression or for native binary dumps ------------------------------------------------------------------------- */ void Reader::open_file(const std::string &file)