Geant4-11
G4GDMLMessenger.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4GDMLMessenger implementation
27//
28// Author: Witold Pokorski, October 2010
29// --------------------------------------------------------------------
30
31#include "G4GDMLMessenger.hh"
32#include "G4GDMLParser.hh"
33
34#include "globals.hh"
35#include "G4RunManager.hh"
36#include "G4UIdirectory.hh"
37#include "G4UIcmdWithAString.hh"
38#include "G4UIcmdWithABool.hh"
40#include "G4GeometryManager.hh"
43#include "G4SolidStore.hh"
44
45// --------------------------------------------------------------------
47 : myParser(myPars)
48{
49 persistencyDir = new G4UIdirectory("/persistency/");
50 persistencyDir->SetGuidance("UI commands specific to persistency.");
51
52 gdmlDir = new G4UIdirectory("/persistency/gdml/");
53 gdmlDir->SetGuidance("GDML parser and writer.");
54
55 ReaderCmd = new G4UIcmdWithAString("/persistency/gdml/read", this);
56 ReaderCmd->SetGuidance("Read GDML file.");
57 ReaderCmd->SetParameterName("filename", false);
60
61 TopVolCmd = new G4UIcmdWithAString("/persistency/gdml/topvol", this);
62 TopVolCmd->SetGuidance("Set the top volume for writing the GDML file.");
63 TopVolCmd->SetParameterName("topvol", false);
65
66 WriterCmd = new G4UIcmdWithAString("/persistency/gdml/write", this);
67 WriterCmd->SetGuidance("Write GDML file.");
68 WriterCmd->SetParameterName("filename", false);
71
72 StripCmd = new G4UIcmdWithABool("/persistency/gdml/strip_pointers", this);
73 StripCmd->SetGuidance("Enable/disable stripping of pointers on names");
74 StripCmd->SetGuidance("when reading a GDML file.");
75 StripCmd->SetParameterName("strip_pointers", true);
79
80 AppendCmd = new G4UIcmdWithABool("/persistency/gdml/add_pointers", this);
81 AppendCmd->SetGuidance("Enable/disable appending of pointers to names");
82 AppendCmd->SetGuidance("when writing a GDML file.");
83 AppendCmd->SetParameterName("append_pointers", true);
87
88 RegionCmd = new G4UIcmdWithABool("/persistency/gdml/export_regions", this);
89 RegionCmd->SetGuidance("Enable export of geometrical regions");
90 RegionCmd->SetGuidance("for storing production cuts.");
91 RegionCmd->SetParameterName("export_regions", false);
95
96 EcutsCmd = new G4UIcmdWithABool("/persistency/gdml/export_Ecuts", this);
97 EcutsCmd->SetGuidance("Enable export of energy cuts associated");
98 EcutsCmd->SetGuidance("to logical volumes.");
99 EcutsCmd->SetGuidance("NOTE: may increase considerably the size of the");
100 EcutsCmd->SetGuidance(" GDML file! Information is anyhow not used");
101 EcutsCmd->SetGuidance(" for import.");
102 EcutsCmd->SetParameterName("export_Ecuts", false);
106
107 SDCmd = new G4UIcmdWithABool("/persistency/gdml/export_SD", this);
108 SDCmd->SetGuidance("Enable export of SD associated");
109 SDCmd->SetGuidance("to logical volumes.");
110 SDCmd->SetParameterName("export_SD", false);
111 SDCmd->SetDefaultValue(false);
114
115 ClearCmd = new G4UIcmdWithoutParameter("/persistency/gdml/clear", this);
116 ClearCmd->SetGuidance("Clear geometry (before reading a new one from GDML).");
119}
120
121// --------------------------------------------------------------------
123{
124 delete ReaderCmd;
125 delete WriterCmd;
126 delete ClearCmd;
127 delete TopVolCmd;
128 delete RegionCmd;
129 delete EcutsCmd;
130 delete SDCmd;
131 delete persistencyDir;
132 delete gdmlDir;
133 delete StripCmd;
134 delete AppendCmd;
135}
136
137// --------------------------------------------------------------------
139{
140 if(command == StripCmd)
141 {
142 G4bool mode = StripCmd->GetNewBoolValue(newValue);
143 myParser->SetStripFlag(mode);
144 }
145
146 if(command == AppendCmd)
147 {
148 pFlag = AppendCmd->GetNewBoolValue(newValue);
150 }
151
152 if(command == ReaderCmd)
153 {
155 myParser->Read(newValue);
159 }
160
161 if(command == RegionCmd)
162 {
163 G4bool mode = RegionCmd->GetNewBoolValue(newValue);
165 }
166
167 if(command == EcutsCmd)
168 {
169 G4bool mode = EcutsCmd->GetNewBoolValue(newValue);
171 }
172
173 if(command == SDCmd)
174 {
175 G4bool mode = SDCmd->GetNewBoolValue(newValue);
176 myParser->SetSDExport(mode);
177 }
178
179 if(command == TopVolCmd)
180 {
182 }
183
184 if(command == WriterCmd)
185 {
186 myParser->Write(newValue, topvol, pFlag);
187 }
188
189 if(command == ClearCmd)
190 {
191 myParser->Clear();
193 }
194}
@ G4State_Idle
@ G4State_PreInit
bool G4bool
Definition: G4Types.hh:86
G4UIdirectory * gdmlDir
G4UIcmdWithABool * AppendCmd
G4UIcmdWithAString * TopVolCmd
G4UIcmdWithAString * ReaderCmd
G4GDMLParser * myParser
G4UIcmdWithoutParameter * ClearCmd
G4LogicalVolume * topvol
G4UIcmdWithAString * WriterCmd
G4UIcmdWithABool * SDCmd
G4UIcmdWithABool * StripCmd
G4GDMLMessenger(G4GDMLParser *)
G4UIcmdWithABool * EcutsCmd
G4UIcmdWithABool * RegionCmd
G4UIdirectory * persistencyDir
void SetNewValue(G4UIcommand *, G4String)
G4VPhysicalVolume * GetWorldVolume(const G4String &setupName="Default") const
void Read(const G4String &filename, G4bool Validate=true)
void SetSDExport(G4bool)
void SetEnergyCutsExport(G4bool)
void SetStripFlag(G4bool)
void SetAddPointerToName(G4bool set)
void Write(const G4String &filename, const G4VPhysicalVolume *pvol=0, G4bool storeReferences=true, const G4String &SchemaLocation=G4GDML_DEFAULT_SCHEMALOCATION)
void SetRegionExport(G4bool)
static G4GeometryManager * GetInstance()
void OpenGeometry(G4VPhysicalVolume *vol=nullptr)
G4LogicalVolume * GetVolume(const G4String &name, G4bool verbose=true, G4bool reverseSearch=false) const
static G4LogicalVolumeStore * GetInstance()
void ReinitializeGeometry(G4bool destroyFirst=false, G4bool prop=true)
static G4RunManager * GetRunManager()
virtual void DefineWorldVolume(G4VPhysicalVolume *worldVol, G4bool topologyIsChanged=true)
void GeometryDirectlyUpdated(G4bool val=true)
static G4bool GetNewBoolValue(const char *paramString)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetDefaultValue(G4bool defVal)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetToBeBroadcasted(G4bool val)
Definition: G4UIcommand.hh:172
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:156
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:288