From 2970d73d228ad219d1cfc36d79e65e03bae03655 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sat, 2 Dec 2023 08:53:20 -0500 Subject: [PATCH] cosmetic --- tools/msi2lmp/src/InitializeItems.c | 8 ++++---- tools/msi2lmp/src/ReadCarFile.c | 6 +++--- tools/msi2lmp/src/ReadFrcFile.c | 9 ++++----- tools/msi2lmp/src/ReadMdfFile.c | 11 +++++------ tools/msi2lmp/src/WriteDataFile.c | 4 ++-- 5 files changed, 18 insertions(+), 20 deletions(-) diff --git a/tools/msi2lmp/src/InitializeItems.c b/tools/msi2lmp/src/InitializeItems.c index 1e33636913..561e0056f6 100644 --- a/tools/msi2lmp/src/InitializeItems.c +++ b/tools/msi2lmp/src/InitializeItems.c @@ -1,8 +1,8 @@ /* -* This function fills in the keyword field, the number of members for each -* item and the number of parameters for each item -* -*/ + * This function fills in the keyword field, the number of members for each + * item and the number of parameters for each item + * + */ #include "msi2lmp.h" #include "Forcefield.h" diff --git a/tools/msi2lmp/src/ReadCarFile.c b/tools/msi2lmp/src/ReadCarFile.c index 24e2272a83..df2c86a064 100644 --- a/tools/msi2lmp/src/ReadCarFile.c +++ b/tools/msi2lmp/src/ReadCarFile.c @@ -1,7 +1,7 @@ /* -* This function opens the .car file and extracts coordinate information -* into the atoms Atom structure -*/ + * This function opens the .car file and extracts coordinate information + * into the atoms Atom structure + */ #include "msi2lmp.h" diff --git a/tools/msi2lmp/src/ReadFrcFile.c b/tools/msi2lmp/src/ReadFrcFile.c index c85b947d00..5d7ab9ea5d 100644 --- a/tools/msi2lmp/src/ReadFrcFile.c +++ b/tools/msi2lmp/src/ReadFrcFile.c @@ -1,9 +1,8 @@ /* -* This routine reads the data from a .frc forcefield file and stores it in -* dynamically allocated memory. This allows for fast searches of the -* file. -* -*/ + * This routine reads the data from a .frc forcefield file and stores it in + * dynamically allocated memory. This allows for fast searches of the + * file. + */ #include "msi2lmp.h" #include "Forcefield.h" diff --git a/tools/msi2lmp/src/ReadMdfFile.c b/tools/msi2lmp/src/ReadMdfFile.c index 0a0c240cf4..96a6a01ab2 100644 --- a/tools/msi2lmp/src/ReadMdfFile.c +++ b/tools/msi2lmp/src/ReadMdfFile.c @@ -1,10 +1,9 @@ /****************************** -* -* This function opens the .mdf file and extracts connectivity information -* into the atoms Atom structure. It also updates the charge from the .car -* file because the charge in the .mdf file has more significant figures. -* -*/ + * + * This function opens the .mdf file and extracts connectivity information + * into the atoms Atom structure. It also updates the charge from the .car + * file because the charge in the .mdf file has more significant figures. + */ #include "msi2lmp.h" diff --git a/tools/msi2lmp/src/WriteDataFile.c b/tools/msi2lmp/src/WriteDataFile.c index 63224db0f1..e9bec78da3 100644 --- a/tools/msi2lmp/src/WriteDataFile.c +++ b/tools/msi2lmp/src/WriteDataFile.c @@ -1,6 +1,6 @@ /* -* This function creates and writes the data file to be used with LAMMPS -*/ + * This function creates and writes the data file to be used with LAMMPS + */ #include "msi2lmp.h"