Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PrintOptions Class Reference

#include <G4AccType.hh>

Public Types

enum  Option : std::size_t { kName = 0 , kType = 1 , kId = 2 }
 

Public Member Functions

 G4PrintOptions ()
 
 G4PrintOptions (std::initializer_list< Option > options)
 
 ~G4PrintOptions ()=default
 
void Set (Option option, bool value=true)
 
bool Has (Option option) const
 

Detailed Description

Definition at line 51 of file G4AccType.hh.

Member Enumeration Documentation

◆ Option

enum G4PrintOptions::Option : std::size_t
Enumerator
kName 
kType 
kId 

Definition at line 53 of file G4AccType.hh.

53 : std::size_t {
54 kName = 0,
55 kType = 1,
56 kId = 2
57 };

Constructor & Destructor Documentation

◆ G4PrintOptions() [1/2]

G4PrintOptions::G4PrintOptions ( )
inline

Definition at line 59 of file G4AccType.hh.

59 {
60 SetDefaults();
61 }

◆ G4PrintOptions() [2/2]

G4PrintOptions::G4PrintOptions ( std::initializer_list< Option > options)
inline

Definition at line 62 of file G4AccType.hh.

62 {
63 SetDefaults();
64 for (const Option& option : options) {
65 fValue.set(option);
66 }
67 }

◆ ~G4PrintOptions()

G4PrintOptions::~G4PrintOptions ( )
default

Member Function Documentation

◆ Has()

bool G4PrintOptions::Has ( Option option) const
inline

Definition at line 71 of file G4AccType.hh.

71{ return fValue[option]; }

◆ Set()

void G4PrintOptions::Set ( Option option,
bool value = true )
inline

Definition at line 70 of file G4AccType.hh.

70{ fValue.set(option, value); }

The documentation for this class was generated from the following file: