ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/brains/ForceField.cpp
(Generate patch)

Comparing trunk/src/UseTheForce/ForceField.cpp (file contents):
Revision 1282 by gezelter, Wed Jul 30 18:11:19 2008 UTC vs.
Revision 1289 by cli2, Wed Sep 10 19:40:06 2008 UTC

# Line 124 | Line 124 | namespace oopse {
124            myKeys.push_back((*i)->getName());
125            myKeys.push_back((*j)->getName());
126  
127          std::cerr << "looking for " << myKeys[0] << " " << myKeys[1] << "\n";
127            BondType* bondType = bondTypeCont_.find(myKeys);
128            if (bondType) {
129              foundBonds.push_back(std::make_pair(bondTypeScore, myKeys));
# Line 142 | Line 141 | namespace oopse {
141          int bestScore = foundBonds[0].first;
142          std::vector<std::string> theKeys = foundBonds[0].second;
143          
145        std::cout << "best matching bond = " << theKeys[0] << "\t" << theKeys[1]  << "\t(score = "<< bestScore << ")\n";      
144          BondType* bestType = bondTypeCont_.find(theKeys);
145          
146          return bestType;
# Line 226 | Line 224 | namespace oopse {
224          std::sort(foundBends.begin(), foundBends.end());
225          int jscore = foundBends[0].first;
226          int ikscore = foundBends[0].second;
227 <        std::vector<std::string> theKeys = foundBends[0].third;
230 <        
231 <        std::cout << "best matching bend = " << theKeys[0] << "\t" <<theKeys[1]  << "\t" << theKeys[2] << "\t(scores = "<< jscore << "\t" << ikscore << ")\n";      
227 >        std::vector<std::string> theKeys = foundBends[0].third;      
228          
229          BendType* bestType = bendTypeCont_.find(theKeys);  
230          return bestType;
# Line 332 | Line 328 | namespace oopse {
328          int ilscore = foundTorsions[0].second;
329          std::vector<std::string> theKeys = foundTorsions[0].third;
330          
335        std::cout << "best matching torsion = " << theKeys[0] << "\t" <<theKeys[1]  << "\t" << theKeys[2] << "\t" << theKeys[3] << "\t(scores = "<< jkscore << "\t" << ilscore << ")\n";
336                
331          TorsionType* bestType = torsionTypeCont_.find(theKeys);
332          return bestType;
333        } else {
# Line 435 | Line 429 | namespace oopse {
429          int jklscore = foundInversions[0].second;
430          std::vector<std::string> theKeys = foundInversions[0].third;
431          
438        std::cout << "best matching inversion = " << theKeys[0] << "\t" <<theKeys[1]  << "\t" << theKeys[2] << "\t" << theKeys[3] << "\t(scores = "<< iscore << "\t" << jklscore << ")\n";
439                
432          InversionType* bestType = inversionTypeCont_.find(theKeys);
433          return bestType;
434        } else {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines