ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/io/DirectionalAtomTypesSectionParser.cpp
(Generate patch)

Comparing trunk/OOPSE-4/src/io/DirectionalAtomTypesSectionParser.cpp (file contents):
Revision 2209 by chrisfen, Mon Apr 18 03:50:23 2005 UTC vs.
Revision 2759 by tim, Wed May 17 21:51:42 2006 UTC

# Line 45 | Line 45 | namespace oopse {
45   #include "utils/simError.h"
46   namespace oopse {
47  
48 <  DirectionalAtomTypesSectionParser::DirectionalAtomTypesSectionParser() {
48 >  DirectionalAtomTypesSectionParser::DirectionalAtomTypesSectionParser(ForceFieldOptions& options)  : options_(options){
49      setSectionName("DirectionalAtomTypes");
50    }
51  
# Line 85 | Line 85 | namespace oopse {
85          }
86        }
87        
88 <      double Ixx = tokenizer.nextTokenAsDouble();
89 <      double Iyy = tokenizer.nextTokenAsDouble();
90 <      double Izz = tokenizer.nextTokenAsDouble();            
88 >      RealType Ixx = tokenizer.nextTokenAsDouble();
89 >      RealType Iyy = tokenizer.nextTokenAsDouble();
90 >      RealType Izz = tokenizer.nextTokenAsDouble();            
91        Mat3x3d inertialMat;
92        inertialMat(0, 0) = Ixx;
93        inertialMat(1, 1) = Iyy;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines