Skip to content

Commit

Permalink
Merge pull request QMCPACK#3505 from anbenali/Convert4qmcGuessH5Format
Browse files Browse the repository at this point in the history
Convert4qmc guess h5 format
  • Loading branch information
prckent authored Oct 3, 2021
2 parents 618cdb2 + 2318723 commit aca1bf6
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions src/QMCTools/convert4qmc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ int main(int argc, char** argv)
{
WARNMSG("Creating LCAOHDFParser")
parser = std::make_unique<LCAOHDFParser>(argc, argv);
h5 = true;
}
else if (ext == "out")
{
Expand Down Expand Up @@ -302,21 +303,7 @@ int main(int argc, char** argv)
}
else
{
parser->addJastrow = false;
jastrow = "noj";
parser->WFS_name = jastrow;
if (parser->PBC)
{
std::cout << "Generating Inputs for Supertwist with coordinates:" << parser->STwist_Coord[0] << " "
<< parser->STwist_Coord[1] << " " << parser->STwist_Coord[2] << std::endl;
parser->dumpPBC(psi_tag, ion_tag);
}
else
parser->dump(psi_tag, ion_tag);
parser->dumpStdInput(psi_tag, ion_tag);

parser->addJastrow = true;
jastrow = "j";
parser->addJastrow = addJastrow;
parser->WFS_name = jastrow;
if (parser->PBC)
{
Expand Down

0 comments on commit aca1bf6

Please sign in to comment.