ASCOT5
Loading...
Searching...
No Matches
hist.h
Go to the documentation of this file.
1
5#ifndef HIST_H
6#define HIST_H
7
8#include <stdlib.h>
9#include "../ascot5.h"
10#include "../particle.h"
11
12#define HIST_ALLDIM 16
13
35
39typedef struct {
43 size_t n;
44} hist_axis;
45
52typedef struct {
53 hist_axis axes[HIST_ALLDIM];
54 size_t strides[HIST_ALLDIM-1];
55 size_t nbin;
57} histogram;
58
59int hist_init(histogram* data, int dimensions, hist_coordinate* coordinates,
60 real* binmin, real* binmax, size_t* nbin);
61void hist_free(histogram* data);
62void hist_offload(histogram* data);
64 particle_simd_fo* p_i);
66 particle_simd_gc* p_i);
67#endif
Main header file for ASCOT5.
double real
Definition ascot5.h:85
void hist_update_fo(histogram *hist, particle_simd_fo *p_f, particle_simd_fo *p_i)
Update the histogram in the particle picture.
Definition hist.c:83
void hist_offload(histogram *data)
Offload the data to the accelerator.
Definition hist.c:74
int hist_init(histogram *data, int dimensions, hist_coordinate *coordinates, real *binmin, real *binmax, size_t *nbin)
Initialize the histogram object.
Definition hist.c:20
void hist_free(histogram *data)
Free allocated resources.
Definition hist.c:66
void hist_update_gc(histogram *hist, particle_simd_gc *p_f, particle_simd_gc *p_i)
Update the histogram in the GC picture.
Definition hist.c:176
hist_coordinate
Quantities that can be used as histogram axis coordinates.
Definition hist.h:17
@ R
Definition hist.h:18
@ XI
Definition hist.h:29
@ THETA
Definition hist.h:22
@ PZ
Definition hist.h:27
@ PPHI
Definition hist.h:26
@ RHO
Definition hist.h:21
@ PHI
Definition hist.h:19
@ PPERP
Definition hist.h:24
@ PR
Definition hist.h:25
@ MU
Definition hist.h:30
@ PPAR
Definition hist.h:23
@ Z
Definition hist.h:20
@ EKIN
Definition hist.h:28
@ PTOR
Definition hist.h:31
@ TIME
Definition hist.h:32
@ CHARGE
Definition hist.h:33
Header file for particle.c.
Coordinate axis for the histogram.
Definition hist.h:39
real min
Definition hist.h:41
real max
Definition hist.h:42
hist_coordinate name
Definition hist.h:40
size_t n
Definition hist.h:43
Histogram parameters.
Definition hist.h:52
hist_axis axes[HIST_ALLDIM]
Definition hist.h:53
size_t nbin
Definition hist.h:55
size_t strides[HIST_ALLDIM-1]
Definition hist.h:54
real * bins
Definition hist.h:56
Struct representing NSIMD particle markers.
Definition particle.h:210
Struct representing NSIMD guiding center markers.
Definition particle.h:275