Skip to content

Commit

Permalink
Rename ChipsNeutronElasticModel to NeutronElasticModel
Browse files Browse the repository at this point in the history
  • Loading branch information
whokion committed Apr 1, 2024
1 parent 6b78e49 commit e97c827
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/celeritas/neutron/process/NeutronElasticProcess.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include "corecel/Assert.hh"
#include "celeritas/grid/ValueGridBuilder.hh"
#include "celeritas/neutron/model/ChipsNeutronElasticModel.hh"
#include "celeritas/neutron/model/NeutronElasticModel.hh"
#include "celeritas/phys/PDGNumber.hh"

namespace celeritas
Expand Down Expand Up @@ -38,13 +38,13 @@ NeutronElasticProcess::NeutronElasticProcess(SPConstParticles particles,
*/
auto NeutronElasticProcess::build_models(ActionIdIter id) const -> VecModel
{
return {std::make_shared<ChipsNeutronElasticModel>(
return {std::make_shared<NeutronElasticModel>(
*id++, *particles_, *materials_, load_data_)};
}

//---------------------------------------------------------------------------//
/*!
* Get the interaction cross sections for the given energy range.
* Get the elastic scattering cross sections for the given energy range.
*/
auto NeutronElasticProcess::step_limits(Applicability applic) const
-> StepLimitBuilders
Expand Down

0 comments on commit e97c827

Please sign in to comment.