-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding an enum to restrict keywords for rprod
- Loading branch information
Showing
6 changed files
with
105 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/NDItk/depletion/ReactionMultiplicities/src/getPostFix.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
static std::string getPostFix( const ReactionMultiplicityType& type ) { | ||
|
||
return type == ReactionMultiplicityType::All | ||
? std::string( "all" ) | ||
: type == ReactionMultiplicityType::Few | ||
? std::string( "few" ) | ||
: std::string( "rmo" ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef NJOY_NDITK_DEPLETION_REACTIONMULTIPLICITYTYPE | ||
#define NJOY_NDITK_DEPLETION_REACTIONMULTIPLICITYTYPE | ||
|
||
// system includes | ||
|
||
// other includes | ||
|
||
namespace njoy { | ||
namespace NDItk { | ||
namespace depletion { | ||
|
||
enum class ReactionMultiplicityType : short { | ||
|
||
All = 1, | ||
Few = 2, | ||
RMO = 3 //! @todo change this name to be more understandable | ||
}; | ||
|
||
} // depletion namespace | ||
} // NDItk namespace | ||
} // njoy namespace | ||
|
||
#endif |