--- trunk/OOPSE-4/src/types/MoleculeStamp.cpp 2005/01/12 22:41:40 1930 +++ trunk/OOPSE-4/src/types/MoleculeStamp.cpp 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 @@ -561,14 +561,14 @@ bool MoleculeStamp::isAtomInRigidBody(int atomIndex, i //return the position of joint atom apears in rigidbody's definition //for the time being, we will use the most inefficient algorithm, the complexity is O(N2) //actually we could improve the complexity to O(NlgN) by sorting the atom index in rigid body first - std::vector > MoleculeStamp::getJointAtoms(int rb1, int rb2){ +std::vector > MoleculeStamp::getJointAtoms(int rb1, int rb2){ RigidBodyStamp* rbStamp1; RigidBodyStamp* rbStamp2; int natomInRb1; int natomInRb2; int atomIndex1; int atomIndex2; - std::vector > jointAtomIndexPair; + std::vector > jointAtomIndexPair; rbStamp1 = this->getRigidBody(rb1); natomInRb1 =rbStamp1->getNMembers();