ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/samples/gbljtest/lj.md
Revision: 2489
Committed: Tue Dec 6 16:49:59 2005 UTC (18 years, 7 months ago) by tim
File size: 414 byte(s)
Log Message:
remove deprecated keywords from samples

File Contents

# Content
1 #ifndef __LJ_MD__
2 #define __LJ_MD__
3
4 molecule{
5 name = "Ar";
6
7 atom[0]{
8 type="Ar";
9 position( 0.0, 0.0, 0.0 );
10 }
11 }
12 molecule{
13 name = "Ne";
14
15 atom[0]{
16 type="Ne";
17 position( 0.0, 0.0, 0.0 );
18 }
19 }
20 molecule{
21 name = "He";
22
23 atom[0]{
24 type="He";
25 position( 0.0, 0.0, 0.0 );
26 }
27 }
28 molecule{
29 name = "C";
30
31 atom[0]{
32 type="C";
33 position( 0.0, 0.0, 0.0 );
34 }
35 }
36 #endif