Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Control/Options/FieldFile.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 Field output file type options 9 : : \details Field output file type options 10 : : */ 11 : : // ***************************************************************************** 12 : : #ifndef FieldFileOptions_h 13 : : #define FieldFileOptions_h 14 : : 15 : : #include <brigand/sequences/list.hpp> 16 : : 17 : : #include "QuinoaBuildConfig.hpp" 18 : : #include "Toggle.hpp" 19 : : #include "Keywords.hpp" 20 : : #include "PUPUtil.hpp" 21 : : 22 : : namespace tk { 23 : : namespace ctr { 24 : : 25 : : //! Field output file types 26 : : enum class FieldFileType : uint8_t { EXODUSII 27 : : #ifdef HAS_ROOT 28 : : , ROOT 29 : : #endif 30 : : }; 31 : : 32 : : //! \brief Pack/Unpack FieldFileType: forward overload to generic enum class 33 : : //! packer 34 : 2930 : inline void operator|( PUP::er& p, FieldFileType& e ) { PUP::pup( p, e ); } 35 : : 36 : : //! \brief FieldFileType options: outsource searches to base templated on enum 37 : : //! type 38 : : class FieldFile : public tk::Toggle< FieldFileType > { 39 : : 40 : : public: 41 : : //! Valid expected choices to make them also available at compile-time 42 : : using keywords = brigand::list< kw::exodusii 43 : : #ifdef HAS_ROOT 44 : : , kw::root 45 : : #endif 46 : : >; 47 : : 48 : : //! \brief Options constructor 49 : : //! \details Simply initialize in-line and pass associations to base, which 50 : : //! will handle client interactions 51 : 6 : explicit FieldFile() : 52 : : tk::Toggle< FieldFileType >( 53 : : //! Group, i.e., options, name 54 : : "Field output file type", 55 : : //! Enums -> names 56 [ + - ]: 6 : { { FieldFileType::EXODUSII, kw::exodusii::name() }, 57 : : #ifdef HAS_ROOT 58 : : { FieldFileType::ROOT, kw::root::name() } 59 : : #endif 60 : : }, 61 : : //! keywords -> Enums 62 : 0 : { { kw::exodusii::string(), FieldFileType::EXODUSII }, 63 : : #ifdef HAS_ROOT 64 : : { kw::root::string(), FieldFileType::ROOT } 65 : : #endif 66 [ + - ][ + - ]: 24 : } ) {} [ + - ][ + - ] [ + + ][ + + ] [ - - ][ - - ] 67 : : }; 68 : : 69 : : } // ctr:: 70 : : } // tk::: 71 : : 72 : : #endif // FieldFileOptions_h