~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to src/read_dump.h

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2013-11-20 22:41:36 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20131120224136-tzx7leh606fqnckm
Tags: 0~20131119.git7162cf0-1
* [e65b919] Imported Upstream version 0~20131119.git7162cf0
* [f7bddd4] Fix some problems, introduced by upstream recently.
* [3616dfc] Use wrap-and-sort script.
* [7e92030] Ignore quilt dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  int boxflag;             // overwrite simulation with dump file box params
56
56
  int replaceflag,addflag; // flags for processing dump snapshot atoms
57
57
  int trimflag,purgeflag;
58
 
  int scaledflag;          // user setting for coordinate scaling
59
 
  int scaled;              // actual setting for coordinate scaling
 
58
  int scaleflag;           // user 0/1 if dump file coords are unscaled/scaled
 
59
  int wrapflag;            // user 0/1 if dump file coords are unwrapped/wrapped
60
60
  char *readerstyle;       // style of dump files to read
61
61
 
62
62
  int nfield;              // # of fields to extract from dump file
64
64
  char **fieldlabel;       // user specified label for field
65
65
  double **fields;         // per-atom field values
66
66
 
 
67
  int scaled;              // 0/1 if dump file coords are unscaled/scaled
 
68
  int wrapped;             // 0/1 if dump file coords are unwrapped/wrapped
 
69
 
67
70
  double box[3][3];         // dump file box parameters
68
71
  double xlo,xhi,ylo,yhi,zlo,zhi,xy,xz,yz;  // dump snapshot box params
69
72
  double xprd,yprd,zprd;