WarpX
Enums.H
Go to the documentation of this file.
1 /* Copyright 2024 Axel Huebl
2  *
3  * This file is part of ABLASTR.
4  *
5  * License: BSD-3-Clause-LBNL
6  */
7 
8 #ifndef ABLASTR_UTILS_ENUMS_H_
9 #define ABLASTR_UTILS_ENUMS_H_
10 
12 {
17  enum struct GridType {
18  Collocated = 0,
19  Staggered = 1,
20  Hybrid = 2
21  };
22 
28  enum struct PatchType {
29  fine,
30  coarse
31  };
32 
33 } // namespace ablastr::utils::enums
34 
35 #endif // ABLASTR_UTILS_ENUMS_H_
Definition: Enums.H:12
GridType
Definition: Enums.H:17
PatchType
Definition: Enums.H:28