Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Inciter/Options/Initiate.hpp
4 : : \copyright 2012-2015 J. Bakosi,
5 : : 2016-2018 Los Alamos National Security, LLC.,
6 : : 2019-2021 Triad National Security, LLC.
7 : : All rights reserved. See the LICENSE file for details.
8 : : \brief Initiation options for initial conditions
9 : : \details Initiation options for initial conditions
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef InitiateOptions_h
13 : : #define InitiateOptions_h
14 : :
15 : : #include <brigand/sequences/list.hpp>
16 : :
17 : : #include "Toggle.hpp"
18 : : #include "Keywords.hpp"
19 : : #include "PUPUtil.hpp"
20 : :
21 : : namespace inciter {
22 : : namespace ctr {
23 : :
24 : : //! Initiation types
25 : : enum class InitiateType : uint8_t { IMPULSE
26 : : , LINEAR };
27 : :
28 : : //! Pack/Unpack InitiateType: forward overload to generic enum class packer
29 : 9 : inline void operator|( PUP::er& p, InitiateType& e ) { PUP::pup( p, e ); }
30 : :
31 : : //! \brief Initiation options: outsource to base templated on enum type
32 : : class Initiate : public tk::Toggle< InitiateType > {
33 : :
34 : : public:
35 : : //! Valid expected choices to make them also available at compile-time
36 : : using keywords = brigand::list< kw::impulse
37 : : , kw::linear
38 : : >;
39 : :
40 : : //! \brief Options constructor
41 : : //! \details Simply initialize in-line and pass associations to base, which
42 : : //! will handle client interactions
43 : 4 : explicit Initiate() :
44 : : tk::Toggle< InitiateType >(
45 : : //! Group, i.e., options, name
46 [ + - ]: 8 : kw::initiate::name(),
47 : : //! Enums -> names (if defined, policy codes, if not, name)
48 [ + - ]: 4 : { { InitiateType::IMPULSE, kw::impulse::name() },
49 [ + - ]: 8 : { InitiateType::LINEAR, kw::linear::name() } },
50 : : //! keywords -> Enums
51 : 0 : { { kw::impulse::string(), InitiateType::IMPULSE },
52 [ + - ][ + - ]: 40 : { kw::linear::string(), InitiateType::LINEAR } } )
[ + - ][ + - ]
[ + + ][ + + ]
[ - - ][ - - ]
53 : 4 : {}
54 : :
55 : : };
56 : :
57 : : } // ctr::
58 : : } // inciter::
59 : :
60 : : #endif // InitiateOptions_h
|