forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14367 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
5f802f86b5
commit
074d5962c8
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,13 @@
|
|||
#ifndef GLOBAL_H
|
||||
#define GLOBAL_H
|
||||
|
||||
#define ZERO 1.e-8
|
||||
#define MAXLINE 512
|
||||
|
||||
#define MIN(a,b) ((a)>(b)?(b):(a))
|
||||
#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||
|
||||
// one can customize the following parameters
|
||||
#define QSTEP 0.02 // Step size when evaluating phonon dispersion automatically
|
||||
#define NUMATOM 10 // Maximum # of atoms that will be displayed when printing basis info
|
||||
#endif
|
Loading…
Reference in New Issue