Skip to content

Commit

Permalink
Remove a few debugging statements
Browse files Browse the repository at this point in the history
Signed-off-by: Geoff Hutchison <[email protected]>
  • Loading branch information
ghutchis committed Oct 29, 2023
1 parent 4af9309 commit 59d2af6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions avogadro/qtplugins/forcefield/forcefield.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,6 @@ void Forcefield::setupMethod()
if (m_autodetect)
m_methodName = recommendedForceField();

qDebug() << " setup method " << m_methodName.c_str() << " autodetect: "
<< m_autodetect << " recommended " << recommendedForceField().c_str();

if (m_method == nullptr) {
// we have to create the calculator
m_method = Calc::EnergyManager::instance().model(m_methodName);
Expand Down
6 changes: 0 additions & 6 deletions avogadro/quantumio/orca.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,6 @@ void ORCAOutput::processLine(std::istream& in, GaussianSet* basis)
bond.push_back(secondAtom);
bond.push_back(static_cast<int>(std::round(bondOrder)));
m_bondOrders.push_back(bond);
std::cout << " bond " << firstAtom << " " << secondAtom << " "
<< bondOrder << std::endl;
}

if (key.size() > 54 && key[28] == 'B') {
Expand All @@ -317,8 +315,6 @@ void ORCAOutput::processLine(std::istream& in, GaussianSet* basis)
bond.push_back(firstAtom);
bond.push_back(secondAtom);
bond.push_back(static_cast<int>(std::round(bondOrder)));
std::cout << " bond " << firstAtom << " " << secondAtom << " "
<< bondOrder << std::endl;
m_bondOrders.push_back(bond);
}
}
Expand All @@ -332,8 +328,6 @@ void ORCAOutput::processLine(std::istream& in, GaussianSet* basis)
bond.push_back(firstAtom);
bond.push_back(secondAtom);
bond.push_back(static_cast<int>(std::round(bondOrder)));
std::cout << " bond " << firstAtom << " " << secondAtom << " "
<< bondOrder << std::endl;
m_bondOrders.push_back(bond);
}
}
Expand Down

0 comments on commit 59d2af6

Please sign in to comment.