50 persistencyDir->SetGuidance(
"UI commands specific to persistency.");
53 gdmlDir->SetGuidance(
"GDML parser and writer.");
56 ReaderSchema->SetGuidance(
"Set alternative GDML schema file for import validation.");
57 ReaderSchema->SetParameterName(
"schema_path_and_filename",
false);
59 ReaderSchema->SetToBeBroadcasted(
false);
62 ReaderCmd->SetGuidance(
"Read GDML file.");
63 ReaderCmd->SetParameterName(
"filename",
false);
65 ReaderCmd->SetToBeBroadcasted(
false);
68 TopVolCmd->SetGuidance(
"Set the top volume for writing the GDML file.");
69 TopVolCmd->SetParameterName(
"topvol",
false);
70 TopVolCmd->SetToBeBroadcasted(
false);
73 WriterCmd->SetGuidance(
"Write GDML file.");
74 WriterCmd->SetParameterName(
"filename",
false);
76 WriterCmd->SetToBeBroadcasted(
false);
79 StripCmd->SetGuidance(
"Enable/disable stripping of pointers on names");
80 StripCmd->SetGuidance(
"when reading a GDML file.");
81 StripCmd->SetParameterName(
"strip_pointers",
true);
82 StripCmd->SetDefaultValue(
true);
84 StripCmd->SetToBeBroadcasted(
false);
87 AppendCmd->SetGuidance(
"Enable/disable appending of pointers to names");
88 AppendCmd->SetGuidance(
"when writing a GDML file.");
89 AppendCmd->SetParameterName(
"append_pointers",
true);
90 AppendCmd->SetDefaultValue(
true);
92 AppendCmd->SetToBeBroadcasted(
false);
95 RegionCmd->SetGuidance(
"Enable export of geometrical regions");
96 RegionCmd->SetGuidance(
"for storing production cuts.");
97 RegionCmd->SetParameterName(
"export_regions",
false);
98 RegionCmd->SetDefaultValue(
false);
100 RegionCmd->SetToBeBroadcasted(
false);
103 EcutsCmd->SetGuidance(
"Enable export of energy cuts associated");
104 EcutsCmd->SetGuidance(
"to logical volumes.");
105 EcutsCmd->SetGuidance(
"NOTE: may increase considerably the size of the");
106 EcutsCmd->SetGuidance(
" GDML file! Information is anyhow not used");
107 EcutsCmd->SetGuidance(
" for import.");
108 EcutsCmd->SetParameterName(
"export_Ecuts",
false);
109 EcutsCmd->SetDefaultValue(
false);
111 EcutsCmd->SetToBeBroadcasted(
false);
114 SDCmd->SetGuidance(
"Enable export of SD associated");
115 SDCmd->SetGuidance(
"to logical volumes.");
116 SDCmd->SetParameterName(
"export_SD",
false);
117 SDCmd->SetDefaultValue(
false);
119 SDCmd->SetToBeBroadcasted(
false);
122 ClearCmd->SetGuidance(
"Clear geometry (before reading a new one from GDML).");
124 ClearCmd->SetToBeBroadcasted(
false);
147 if(command == StripCmd)
149 G4bool mode = StripCmd->GetNewBoolValue(newValue);
150 myParser->SetStripFlag(mode);
153 if(command == AppendCmd)
155 pFlag = AppendCmd->GetNewBoolValue(newValue);
156 myParser->SetAddPointerToName(pFlag);
159 if(command == ReaderSchema)
161 myParser->SetImportSchema(newValue);
164 if(command == ReaderCmd)
167 myParser->Read(newValue);
169 myParser->GetWorldVolume());
173 if(command == RegionCmd)
175 G4bool mode = RegionCmd->GetNewBoolValue(newValue);
176 myParser->SetRegionExport(mode);
179 if(command == EcutsCmd)
181 G4bool mode = EcutsCmd->GetNewBoolValue(newValue);
182 myParser->SetEnergyCutsExport(mode);
187 G4bool mode = SDCmd->GetNewBoolValue(newValue);
188 myParser->SetSDExport(mode);
191 if(command == TopVolCmd)
196 if(command == WriterCmd)
198 myParser->Write(newValue, topvol, pFlag);
201 if(command == ClearCmd)