mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 05:05:30 -04:00
Fix pointer placement on uint64_t
This commit is contained in:
parent
60015e5c5c
commit
eca3ce33d2
41 changed files with 141 additions and 141 deletions
|
|
@ -167,7 +167,7 @@ ScattData::base_combine(size_t max_order,
|
|||
//==============================================================================
|
||||
|
||||
void
|
||||
ScattData::sample_energy(int gin, int& gout, int& i_gout, uint64_t * prn_seeds, int stream)
|
||||
ScattData::sample_energy(int gin, int& gout, int& i_gout, uint64_t* prn_seeds, int stream)
|
||||
{
|
||||
// Sample the outgoing group
|
||||
double xi = prn(prn_seeds, stream);
|
||||
|
|
@ -348,7 +348,7 @@ ScattDataLegendre::calc_f(int gin, int gout, double mu)
|
|||
|
||||
void
|
||||
ScattDataLegendre::sample(int gin, int& gout, double& mu, double& wgt,
|
||||
uint64_t * prn_seeds, int stream)
|
||||
uint64_t* prn_seeds, int stream)
|
||||
{
|
||||
// Sample the outgoing energy using the base-class method
|
||||
int i_gout;
|
||||
|
|
@ -537,7 +537,7 @@ ScattDataHistogram::calc_f(int gin, int gout, double mu)
|
|||
|
||||
void
|
||||
ScattDataHistogram::sample(int gin, int& gout, double& mu, double& wgt,
|
||||
uint64_t * prn_seeds, int stream)
|
||||
uint64_t* prn_seeds, int stream)
|
||||
{
|
||||
// Sample the outgoing energy using the base-class method
|
||||
int i_gout;
|
||||
|
|
@ -741,7 +741,7 @@ ScattDataTabular::calc_f(int gin, int gout, double mu)
|
|||
|
||||
void
|
||||
ScattDataTabular::sample(int gin, int& gout, double& mu, double& wgt,
|
||||
uint64_t * prn_seeds, int stream)
|
||||
uint64_t* prn_seeds, int stream)
|
||||
{
|
||||
// Sample the outgoing energy using the base-class method
|
||||
int i_gout;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue