Skip to content

Commit

Permalink
Merge pull request #272 from badarsh2/LAMMPS-dev
Browse files Browse the repository at this point in the history
LAMMPS Molecular Dynamics enhancements
  • Loading branch information
cryos authored Jun 12, 2018
2 parents 9063890 + 5d724a9 commit da6ebb9
Show file tree
Hide file tree
Showing 4 changed files with 479 additions and 0 deletions.
2 changes: 2 additions & 0 deletions avogadro/io/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ set(HEADERS
mdlformat.h
poscarformat.h
xyzformat.h
lammpsformat.h
)

set(SOURCES
Expand All @@ -43,6 +44,7 @@ set(SOURCES
mdlformat.cpp
poscarformat.cpp
xyzformat.cpp
lammpsformat.cpp
)

if(USE_HDF5)
Expand Down
2 changes: 2 additions & 0 deletions avogadro/io/fileformatmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "cjsonformat.h"
#include "cmlformat.h"
#include "gromacsformat.h"
#include "lammpsformat.h"
#include "mdlformat.h"
#include "poscarformat.h"
#include "xyzformat.h"
Expand Down Expand Up @@ -290,6 +291,7 @@ FileFormatManager::FileFormatManager()
addFormat(new MdlFormat);
addFormat(new PoscarFormat);
addFormat(new XyzFormat);
addFormat(new LammpsFormat);
}

FileFormatManager::~FileFormatManager()
Expand Down
Loading

0 comments on commit da6ebb9

Please sign in to comment.