ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/types/AtomType.hpp
(Generate patch)

Comparing trunk/OOPSE-3.0/src/types/AtomType.hpp (file contents):
Revision 2220 by chrisfen, Thu May 5 14:47:35 2005 UTC vs.
Revision 2427 by chuckv, Mon Nov 14 21:29:36 2005 UTC

# Line 163 | Line 163 | namespace oopse {
163        return atp.is_Shape;
164      }
165  
166 +    bool isSC() {
167 +      return atp.is_SC;
168 +    }
169 +    
170 +    void setSC() {
171 +      atp.is_SC = 1;
172 +    }
173 +    
174 +    
175 +    bool isMEAM() {
176 +      return atp.is_MEAM;
177 +    }
178 +    
179 +    void setMEAM() {
180 +      atp.is_MEAM = 1;
181 +    }
182 +    
183 +    
184      //below functions are just forward functions
185      /**
186       * Adds property into property map
# Line 239 | Line 257 | namespace oopse {
257    };
258  
259    typedef SimpleTypeData<EAMParam> EAMParamGenericData;
260 +  
261 +  struct SCParam {
262 +    double c;
263 +    double m;
264 +    double n;
265 +    double alpha;
266 +    double epsilon;
267 +  };
268 +  typedef SimpleTypeData<SCParam> SCParamGenericData;
269 +  
270 +  
271 +  
272 +  
273   }
274  
275   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines