Skip to content

Commit

Permalink
Fixed particle file name bug in neutrino init
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsexton03 committed Jul 8, 2019
1 parent 31f7c86 commit 99e1033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/NyxParticles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -664,14 +664,14 @@ Nyx::init_particles ()
if (verbose)
{
amrex::Print() << "\nInitializing NPC particles from meta file\""
<< binary_particle_file << "\" ...\n\n";
<< neutrino_particle_file << "\" ...\n\n";
}
//
// The second argument is how many Reals we read into `m_data[]`
// after reading in `m_pos[]` in each of the binary particle files.
// Here we're reading in the particle mass and velocity.
//
NPC->InitFromBinaryMetaFile(binary_particle_file, BL_SPACEDIM + 1);
NPC->InitFromBinaryMetaFile(neutrino_particle_file, BL_SPACEDIM + 1);
}
else
{
Expand Down

0 comments on commit 99e1033

Please sign in to comment.