Skip to content

Commit

Permalink
Change default behavior of convert4qmc: Will only generate inputs wit…
Browse files Browse the repository at this point in the history
…h Jastrows unless -nojastrow is specified, then only inputs with no jastrow will be generated
  • Loading branch information
anbenali committed Oct 3, 2021
1 parent 618cdb2 commit 273ecb0
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions src/QMCTools/convert4qmc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,21 +302,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 273ecb0

Please sign in to comment.