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

Namespaces

namespace  ID
 

Typedefs

using SetupStyle_f = std::function<G4int(G4coutDestination*)>
 
using String_V = std::vector<G4String>
 

Functions

String_V Names ()
 
G4int HandleStyle (G4coutDestination *dest, const G4String &style)
 
void SetMasterStyle (const G4String &)
 
G4String GetMasterStyle ()
 
void SetupStyleGlobally (const G4String &news)
 
void RegisterNewStyle (const G4String &name, SetupStyle_f &formatter)
 

Typedef Documentation

◆ SetupStyle_f

Definition at line 60 of file G4coutFormatters.hh.

◆ String_V

using G4coutFormatters::String_V = std::vector<G4String>

Definition at line 72 of file G4coutFormatters.hh.

Function Documentation

◆ GetMasterStyle()

G4String G4coutFormatters::GetMasterStyle ( )

Definition at line 119 of file G4coutFormatters.cc.

119{ return masterStyle; }

◆ HandleStyle()

G4int G4coutFormatters::HandleStyle ( G4coutDestination * dest,
const G4String & style )

Definition at line 139 of file G4coutFormatters.cc.

140 {
141 const auto& handler = transformers.find(style);
142 return (handler != transformers.cend()) ? (handler->second)(dest) : -1;
143 }

Referenced by SetupStyleGlobally().

◆ Names()

String_V G4coutFormatters::Names ( )

Definition at line 129 of file G4coutFormatters.cc.

130 {
131 String_V result;
132 for(const auto& el : transformers)
133 {
134 result.push_back(el.first);
135 }
136 return result;
137 }
std::vector< G4String > String_V

◆ RegisterNewStyle()

void G4coutFormatters::RegisterNewStyle ( const G4String & name,
SetupStyle_f & formatter )

Definition at line 145 of file G4coutFormatters.cc.

146 {
147 if(transformers.find(name) != transformers.cend())
148 {
150 msg << "Format Style with name " << name
151 << " already exists. Replacing existing.";
152 G4Exception("G4coutFormatters::RegisterNewStyle()", "FORMATTER001",
153 JustWarning, msg);
154 }
155 // transformers.insert(std::make_pair(name,fmt));
156 transformers[name] = fmt;
157 }
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription

◆ SetMasterStyle()

void G4coutFormatters::SetMasterStyle ( const G4String & news)

Definition at line 117 of file G4coutFormatters.cc.

117{ masterStyle = news; }

Referenced by SetupStyleGlobally().

◆ SetupStyleGlobally()

void G4coutFormatters::SetupStyleGlobally ( const G4String & news)

Definition at line 121 of file G4coutFormatters.cc.

122 {
123 static G4coutDestination ss;
127 }
void G4iosSetDestination(G4coutDestination *sink)
Definition G4ios.cc:297
void SetMasterStyle(const G4String &)
G4int HandleStyle(G4coutDestination *dest, const G4String &style)