Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/module_cell/read_atoms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1125,9 +1125,9 @@ void UnitCell::check_dtau() {

void UnitCell::read_orb_file(int it, std::string &orb_file, std::ofstream &ofs_running, Atom* atom)
{
// the maximum L is 7, according to the basissetexchange https://www.basissetexchange.org/
// there is no orbitals with L>7 presently
const std::string spectrum = "SPDFGHIK";
// the maximum L is 9 like cc-pV9Z, according to the basissetexchange https://www.basissetexchange.org/
// there is no orbitals with L>9 presently
const std::string spectrum = "SPDFGHIKLM";
std::ifstream ifs(orb_file.c_str(), std::ios::in); // pengfei 2014-10-13
// mohan add return 2021-04-26
if (!ifs)
Expand Down
Loading