lammps/src/dump_dcd.h

49 lines
1.2 KiB
C++

/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#ifndef DUMP_DCD_H
#define DUMP_DCD_H
#include "stdio.h"
#include "dump.h"
#include "inttypes.h"
namespace LAMMPS_NS {
class DumpDCD : public Dump {
public:
DumpDCD(LAMMPS *, int, char**);
~DumpDCD();
void init();
double memory_usage();
private:
int natoms,ntotal,headerflag,nevery_save,nframes;
float *coords,*xf,*yf,*zf;
int unwrap_flag; // 1 if atom coords are unwrapped, 0 if no
void openfile();
void write_header(int);
int count();
int pack();
void write_data(int, double *);
int modify_param(int, char **);
void write_frame();
void write_dcd_header(const char *);
};
}
#endif