ASCOT5
Loading...
Searching...
No Matches
hist.c File Reference

Diagnostic for collecting histograms representing the distribution function. More...

#include <stdlib.h>
#include "../ascot5.h"
#include "../math.h"
#include "../consts.h"
#include "../offload.h"
#include "../particle.h"
#include "hist.h"

Go to the source code of this file.

Functions

int hist_init (histogram *data, int dimensions, hist_coordinate *coordinates, real *binmin, real *binmax, size_t *nbin)
 Initialize the histogram object.
 
void hist_free (histogram *data)
 Free allocated resources.
 
void hist_offload (histogram *data)
 Offload the data to the accelerator.
 
void hist_update_fo (histogram *hist, particle_simd_fo *p_f, particle_simd_fo *p_i)
 Update the histogram in the particle picture.
 
void hist_update_gc (histogram *hist, particle_simd_gc *p_f, particle_simd_gc *p_i)
 Update the histogram in the GC picture.
 

Detailed Description

Diagnostic for collecting histograms representing the distribution function.

The histogram can have an arbitrary number of dimensions consisting of any of the predefined coordinate axes.

Definition in file hist.c.

Function Documentation

◆ hist_init()

int hist_init ( histogram * data,
int dimensions,
hist_coordinate * coordinates,
real * binmin,
real * binmax,
size_t * nbin )

Initialize the histogram object.

Definition at line 20 of file hist.c.

◆ hist_free()

void hist_free ( histogram * data)

Free allocated resources.

Definition at line 66 of file hist.c.

◆ hist_offload()

void hist_offload ( histogram * data)

Offload the data to the accelerator.

Definition at line 74 of file hist.c.

◆ hist_update_fo()

void hist_update_fo ( histogram * hist,
particle_simd_fo * p_f,
particle_simd_fo * p_i )

Update the histogram in the particle picture.

Definition at line 83 of file hist.c.

◆ hist_update_gc()

void hist_update_gc ( histogram * hist,
particle_simd_gc * p_f,
particle_simd_gc * p_i )

Update the histogram in the GC picture.

Definition at line 176 of file hist.c.