--- branches/new_design/OOPSE-3.0/src/UseTheForce/Shapes_FF.cpp 2004/12/02 04:55:10 1825 +++ branches/new_design/OOPSE-3.0/src/UseTheForce/Shapes_FF.cpp 2004/12/02 05:04:20 1826 @@ -87,22 +87,22 @@ void Shapes_FF::readParams( void ){ DirectionalAtomType* dat; ShapeAtomType* st; - map::iterator iter; + std::map::iterator iter; // vectors for shape transfer to fortran - vector tempSHVector; - vector contactL; - vector contactM; - vector contactFunc; - vector contactCoeff; - vector rangeL; - vector rangeM; - vector rangeFunc; - vector rangeCoeff; - vector strengthL; - vector strengthM; - vector strengthFunc; - vector strengthCoeff; + std::vector tempSHVector; + std::vector contactL; + std::vector contactM; + std::vector contactFunc; + std::vector contactCoeff; + std::vector rangeL; + std::vector rangeM; + std::vector rangeFunc; + std::vector rangeCoeff; + std::vector strengthL; + std::vector strengthM; + std::vector strengthFunc; + std::vector strengthCoeff; // generate the force file name fileName = "Shapes.frc"; @@ -291,7 +291,7 @@ void Shapes_FF::initializeAtoms( int nAtoms, Atom** th void Shapes_FF::initializeAtoms( int nAtoms, Atom** the_atoms ){ int i,j,k; - map::iterator iter; + std::map::iterator iter; // initialize the atoms DirectionalAtom* dAtom; @@ -400,7 +400,7 @@ void Shapes_FF::parseShapeFile(string shapeFileName, S int nTokens; Mat3x3d momInert; RealSphericalHarmonic* rsh; - vector functionVector; + std::vector functionVector; ifstrstream shapeFile; std::stringtempString;