--- trunk/OOPSE-3.0/src/io/BondTypesSectionParser.hpp 2005/01/12 22:41:40 1930 +++ trunk/OOPSE-3.0/src/io/BondTypesSectionParser.hpp 2005/04/15 22:04:00 2204 @@ -1,4 +1,4 @@ - /* +/* * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. * * The University of Notre Dame grants you ("Licensee") a @@ -45,30 +45,30 @@ namespace oopse { #include "io/SectionParser.hpp" namespace oopse { - /** - * @class BondTypesSectionParser BondTypesSectionParser.hpp "io/BondTypesSectionParser.hpp" - */ - class BondTypesSectionParser : public SectionParser { - public: - BondTypesSectionParser(); + /** + * @class BondTypesSectionParser BondTypesSectionParser.hpp "io/BondTypesSectionParser.hpp" + */ + class BondTypesSectionParser : public SectionParser { + public: + BondTypesSectionParser(); - private: + private: - enum BondTypeEnum{ - btFixed, - btHarmonic, - btCubic, - btQuartic, - btPolynomial, - btUnknown - }; + enum BondTypeEnum{ + btFixed, + btHarmonic, + btCubic, + btQuartic, + btPolynomial, + btUnknown + }; - void parseLine(ForceField& ff, const std::string& line, int lineNo); + void parseLine(ForceField& ff, const std::string& line, int lineNo); - BondTypeEnum getBondTypeEnum(const std::string& str); + BondTypeEnum getBondTypeEnum(const std::string& str); - std::map stringToEnumMap_; - }; + std::map stringToEnumMap_; + }; } //namespace oopse