ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/headers/ForceFields.hpp
Revision: 151
Committed: Mon Oct 21 22:02:53 2002 UTC (21 years, 8 months ago) by mmeineke
File size: 2103 byte(s)
Log Message:
making further modifications to make FOrceField objects mpi aware

File Contents

# Content
1 #ifndef __FORCEFIELDS_H__
2 #define __FORCEFIELDS_H__
3
4 #include <cstdio>
5 #include <cstdlib>
6
7 #include "Atom.hpp"
8 #include "SimInfo.hpp"
9
10 #ifdef IS_MPI
11 #include "mpiForceField.h"
12 #endif
13
14 class bond_pair{
15 public:
16 bond_pair(){}
17 ~bond_pair(){}
18
19 int a;
20 int b;
21 };
22
23 class bend_set{
24 public:
25 bend_set(){}
26 ~bend_set(){}
27
28 int a;
29 int b;
30 int c;
31 };
32
33 class torsion_set{
34 public:
35 torsion_set(){}
36 ~torsion_set(){}
37
38 int a;
39 int b;
40 int c;
41 int d;
42 };
43
44 // typedef struct{
45 // int a, b;
46 // } bond_pair;
47
48 // typedef struct{
49 // int a, b, c;
50 // } bend_set;
51
52 // typedef struct{
53 // int a, b, c, d;
54 // } torsion_set;
55
56
57 class ForceFields{
58
59 public:
60 ForceFields(){ frcFile = NULL; entry_plug = NULL; }
61 virtual ~ForceFields(){}
62
63 void setSimInfo( SimInfo* the_entry_plug ) { entry_plug = the_entry_plug; }
64 virtual void initializeAtoms( void ) = 0;
65 virtual void initializeBonds( bond_pair* the_bonds ) = 0;
66 virtual void initializeBends( bend_set* the_bends ) = 0;
67 virtual void initializeTorsions( torsion_set* the_torsions ) = 0;
68
69 protected:
70
71 void ffError( char* errMsg ){
72
73 #ifdef IS_MPI
74 ffInterfaceExit( errMsg );
75 #else
76 fprintf( stderr, "%s\n", errMsg );
77 exit(0);
78 #endif
79 }
80
81
82 FILE *frcFile;
83 SimInfo* entry_plug;
84
85 };
86
87 class TraPPEFF : public ForceFields{
88
89 public:
90 TraPPEFF();
91 virtual ~TraPPEFF();
92
93 void initializeAtoms( void );
94 void initializeBonds( bond_pair* the_bonds );
95 void initializeBends( bend_set* the_bends );
96 void initializeTorsions( torsion_set* the_torsions );
97 };
98
99
100 class DipoleTestFF : public ForceFields{
101
102 public:
103 DipoleTestFF();
104 virtual ~DipoleTestFF();
105
106 void initializeAtoms( void );
107 void initializeBonds( bond_pair* the_bonds );
108 void initializeBends( bend_set* the_bends );
109 void initializeTorsions( torsion_set* the_torsions );
110 };
111
112 class TraPPE_ExFF : public ForceFields{
113
114 public:
115 TraPPE_ExFF();
116 virtual ~TraPPE_ExFF();
117
118 void initializeAtoms( void );
119 void initializeBonds( bond_pair* the_bonds );
120 void initializeBends( bend_set* the_bends );
121 void initializeTorsions( torsion_set* the_torsions );
122 };
123
124 #endif