1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* Copyright 2021 Luca Fedeli, Axel Huebl
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#ifndef WARPX_WarpXParticleContainer_fwd_H_
#define WARPX_WarpXParticleContainer_fwd_H_
#include <AMReX_GpuAllocators.H>
enum struct ParticleBC;
enum struct ConvertDirection;
struct PIdx;
struct DiagIdx;
struct TmpIdx;
class WarpXParIter;
class WarpXParticleContainer;
struct DiagIdx
{
enum {
w = 0,
x, y, z, ux, uy, uz,
nattribs
};
};
struct TmpIdx
{
enum {
xold = 0,
yold, zold, uxold, uyold, uzold,
nattribs
};
};
#endif /* WARPX_WarpXParticleContainer_fwd_H_ */
|