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

#include <G4AnalysisMessenger.hh>

+ Inheritance diagram for G4AnalysisMessenger:

Public Member Functions

 G4AnalysisMessenger (G4VAnalysisManager *manager)
 
 G4AnalysisMessenger ()=delete
 
 ~G4AnalysisMessenger () override
 
void SetNewValue (G4UIcommand *command, G4String value) final
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String LtoS (G4long l)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (const G4String &s)
 
G4long StoL (const G4String &s)
 
G4double StoD (const G4String &s)
 
G4bool StoB (G4String s)
 
void AddUIcommand (G4UIcommand *newCommand)
 
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
template<typename T >
T * CreateCommand (const G4String &cname, const G4String &dsc)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 

Detailed Description

Definition at line 60 of file G4AnalysisMessenger.hh.

Constructor & Destructor Documentation

◆ G4AnalysisMessenger() [1/2]

G4AnalysisMessenger::G4AnalysisMessenger ( G4VAnalysisManager * manager)
explicit

Definition at line 42 of file G4AnalysisMessenger.cc.

43 : fManager(manager)
44{
45 fAnalysisDir = std::make_unique<G4UIdirectory>("/analysis/");
46 fAnalysisDir->SetGuidance("analysis control");
47
48 fOpenFileCmd = CreateCommand<G4UIcmdWithAString>(
49 "openFile", "Open analysis file", "FileName", true);
50 fOpenFileCmd->SetDefaultValue("");
51 fOpenFileCmd->SetToBeBroadcasted(true);
52
53 fWriteCmd = CreateCommandWithoutParameter(
54 "write", "Write analysis data.");
55 fWriteCmd->SetToBeBroadcasted(false);
56
57 fResetCmd = CreateCommandWithoutParameter(
58 "reset", "Reset analysis data.");
59 fResetCmd->SetToBeBroadcasted(false);
60
61 fCloseFileCmd = CreateCommand<G4UIcmdWithABool>(
62 "closeFile", "Close analysis file and (optionally) reset data.", "IsReset", true);
63 fCloseFileCmd->SetDefaultValue(true);
64 fCloseFileCmd->SetToBeBroadcasted(false);
65
66 fListCmd = CreateCommand<G4UIcmdWithABool>(
67 "list", "List all/activate analysis objects.", "OnlyIfActive", true);
68 fListCmd->SetDefaultValue(true);
69
70 fSetDefaultFileTypeCmd = CreateCommand<G4UIcmdWithAString>(
71 "setDefaultFileType", "Set default output file type", "DefaultFileType", false);
72#ifdef TOOLS_USE_HDF5
73 fSetDefaultFileTypeCmd->SetCandidates("csv hdf5 root xml");
74#else
75 fSetDefaultFileTypeCmd->SetCandidates("csv root xml");
76#endif
77
78 fSetActivationCmd = CreateCommand<G4UIcmdWithABool>(
79 "setActivation",
80 "Set activation. \n"
81 "When this option is enabled, only the histograms marked as activated\n"
82 "are returned, filled or saved on file.\n"
83 "No warning is issued when Get or Fill is called on inactive histogram.",
84 "Activation");
85
86 fVerboseCmd = CreateCommand<G4UIcmdWithAnInteger>(
87 "verbose", "Set verbose level", "VerboseLevel");
88 fVerboseCmd->SetRange("VerboseLevel>=0 && VerboseLevel<=4");
89
90 fCompressionCmd = CreateCommand<G4UIcmdWithAnInteger>(
91 "compression", "Set compression level", "CompressionLevel");
92 fCompressionCmd->SetRange("CompressionLevel>=0 && CompressionLevel<=4");
93
94 fSetFileNameCmd = CreateCommand<G4UIcmdWithAString>(
95 "setFileName", "Set name for the histograms & ntuple file", "Filename");
96
97 fSetHistoDirNameCmd = CreateCommand<G4UIcmdWithAString>(
98 "setHistoDirName", "Set name for the histograms directory", "HistoDirName");
99
100 fSetNtupleDirNameCmd = CreateCommand<G4UIcmdWithAString>(
101 "setNtupleDirName", "Set name for the ntuple directory", "NtupleDirName");
102
103 fNtupleMessenger = std::make_unique<G4NtupleMessenger>(manager);
104}

◆ G4AnalysisMessenger() [2/2]

G4AnalysisMessenger::G4AnalysisMessenger ( )
delete

◆ ~G4AnalysisMessenger()

G4AnalysisMessenger::~G4AnalysisMessenger ( )
overridedefault

Member Function Documentation

◆ SetNewValue()

void G4AnalysisMessenger::SetNewValue ( G4UIcommand * command,
G4String value )
finalvirtual

Reimplemented from G4UImessenger.

Definition at line 133 of file G4AnalysisMessenger.cc.

134{
135 if ( command == fOpenFileCmd.get() ) {
136 // G4cout << "Calling OpenFile from command for " << fManager << G4endl;
137 fManager->OpenFile(newValues);
138 return;
139 }
140
141 if ( command == fWriteCmd.get() ) {
142 fManager->WriteFromUI();
143 return;
144 }
145
146 if ( command == fResetCmd.get() ) {
147 fManager->ResetFromUI();
148 return;
149 }
150
151 if ( command == fCloseFileCmd.get() ) {
152 fManager->CloseFileFromUI(fCloseFileCmd->GetNewBoolValue(newValues));
153 return;
154 }
155
156 if ( command == fListCmd.get() ) {
157 fManager->List(fListCmd->GetNewBoolValue(newValues));
158 return;
159 }
160
161 if ( command == fSetDefaultFileTypeCmd.get() ) {
162 fManager->SetDefaultFileType(newValues);
163 return;
164 }
165
166 if ( command == fSetActivationCmd.get() ) {
167 fManager->SetActivation(fSetActivationCmd->GetNewBoolValue(newValues));
168 return;
169 }
170
171 if ( command == fVerboseCmd.get() ) {
172 fManager->SetVerboseLevel(fVerboseCmd->GetNewIntValue(newValues));
173 return;
174 }
175
176 if ( command == fCompressionCmd.get() ) {
177 fManager->SetCompressionLevel(fCompressionCmd->GetNewIntValue(newValues));
178 return;
179 }
180
181 if ( command == fSetFileNameCmd.get() ) {
182 fManager->SetFileName(newValues);
183 return;
184 }
185
186 if ( command == fSetHistoDirNameCmd.get() ) {
187 fManager->SetHistoDirectoryName(newValues);
188 return;
189 }
190
191 if ( command == fSetNtupleDirNameCmd.get() ) {
192 fManager->SetNtupleDirectoryName(newValues);
193 return;
194 }
195}
void SetActivation(G4bool activation)
G4bool OpenFile(const G4String &fileName="")
G4bool SetHistoDirectoryName(const G4String &dirName)
void SetVerboseLevel(G4int verboseLevel)
G4bool List(G4bool onlyIfActive=true) const
G4bool SetFileName(const G4String &fileName)
void SetCompressionLevel(G4int level)
G4bool SetNtupleDirectoryName(const G4String &dirName)
void SetDefaultFileType(const G4String &value)

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