ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/UseTheForce/ForceField.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/UseTheForce/ForceField.hpp (file contents):
Revision 1770 by tim, Tue Nov 23 17:53:43 2004 UTC vs.
Revision 1807 by tim, Tue Nov 30 22:43:51 2004 UTC

# Line 38 | Line 38
38   #define STR_DEFINE(t, s) t = MK_STR(s)
39  
40   #include <string>
41 < #include <utilities>
41 > #include <utility>
42  
43   #include "io/basic_ifstrstream.hpp"
44   #include "utils/TypeContainer.hpp"
# Line 50 | Line 50 | namespace oopse {
50   namespace oopse {
51  
52   /**
53 < * @class ForceFiled ForceField.hpp ''UseTheForce/ForceField.hpp"
53 > * @class ForceField ForceField.hpp ''UseTheForce/ForceField.hpp"
54   * @brief
55   */
56   class ForceField{
57  
58      public:
59  
60 +        typedef TypeContainer<AtomType, 1> AtomTypeContainer;
61 +        typedef TypeContainer<BondType, 2> BondTypeContainer;
62 +        typedef TypeContainer<BendType, 3> BendTypeContainer;
63 +        typedef TypeContainer<TorsionType, 4> TorsionTypeContainer;
64 +        
65          ForceField();
66  
67 <        virtual ~ForceFields(){}
67 >        virtual ~ForceField(){}
68  
69 <        void setVariant(const std::string &variant) {
70 <            hasVariant_ = true;
66 <            variant_ = variant;
69 >        std::string getForceFieldFileName() {
70 >            return forceFieldFileName_;
71          }
72 +
73 +        void setForceFieldFileName(const std::string& filename) {
74 +            forceFieldFileName_ = filename;
75 +        }
76          
77          virtual void parse(const std::string& filename) = 0;  
78  
# Line 94 | Line 102 | class ForceField{
102              wildCardAtomTypeName_ = wildCard;
103          }
104  
105 <    protected:
105 >
106 >        unsigned int getNAtomType() {
107 >            return atomTypeCont_.size();
108 >        }
109          
110          bool addAtomType(const std::string &at, AtomType* atomType);
111 +
112          bool addBondType(const std::string &at1, const std::string &at2, BondType* bondType);
113 +
114          bool addBendType(const std::string &at1, const std::string &at2,
115                                      const std::string &at3, BendType* bendType);
116 +
117          bool addTorsionType(const std::string &at1, const std::string &at2,
118                                            const std::string &at3, const std::string &at4, TorsionType* torsionType);
119  
120          ifstrstream* openForceFieldFile(const std::string& filename);
121  
122 <        unsigned int getNAtomType() {
109 <            return atomTypeCont_.size();
110 <        }
111 <        
112 <    private:  
113 <        std::string ffPath_;
114 <        bool hasVariant_;
115 <        std::string variant_;
122 >    protected:
123  
117        std::string wildCardAtomTypeName_;
118
119        typedef TypeContainer<AtomType, 1> AtomTypeContainer;
120        typedef TypeContainer<BondType, 2> BondTypeContainer;
121        typedef TypeContainer<BendType, 3> BendTypeContainer;
122        typedef TypeContainer<TorsionType, 4> TorsionTypeContainer;
123
124          AtomTypeContainer atomTypeCont_;    
125          BondTypeContainer bondTypeCont_;
126          BendTypeContainer bendTypeCont_;
127          TorsionTypeContainer torsionTypeCont_;
128 +        
129 +    private:  
130 +        std::string ffPath_;
131  
132 <        SectionParserManager
132 >        std::string wildCardAtomTypeName_;
133 >
134 >        std::string forceFieldFileName_;
135   };
136  
137  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines