34 fpInstance =
new G4HepRepMessenger;
38G4HepRepMessenger::G4HepRepMessenger()
42 , cullInvisibles(false)
43 , cylAsPolygons(false)
47 , pointAttributes(false)
55 setFileDirCommand->
SetGuidance(
"Set directory for output.");
57 "This command is used by HepRepFile, not by HepRepXML.");
59 if(std::getenv(
"G4HEPREPFILE_DIR") == NULL)
65 setFileDirCommand->SetDefaultValue(std::getenv(
"G4HEPREPFILE_DIR"));
66 fileDir = std::getenv(
"G4HEPREPFILE_DIR");
70 setFileNameCommand =
new G4UIcmdWithAString(
"/vis/heprep/setFileName",
this);
71 setFileNameCommand->SetGuidance(
"Set file name for output.");
72 setFileNameCommand->SetGuidance(
73 "This command is used by HepRepFile, not by HepRepXML.");
74 setFileNameCommand->SetParameterName(
"directory",
false);
75 if(std::getenv(
"G4HEPREPFILE_NAME") == NULL)
77 setFileNameCommand->SetDefaultValue(
"G4Data");
81 setFileNameCommand->SetDefaultValue(std::getenv(
"G4HEPREPFILE_NAME"));
82 fileName = std::getenv(
"G4HEPREPFILE_NAME");
86 setOverwriteCommand =
new G4UIcmdWithABool(
"/vis/heprep/setOverwrite",
this);
87 setOverwriteCommand->SetGuidance(
88 "Set true to write all output to exact same file name.");
89 setOverwriteCommand->SetGuidance(
90 "Set false to increment the file name for each new output.");
91 setOverwriteCommand->SetGuidance(
92 "This command is used by HepRepFile, not by HepRepXML.");
93 setOverwriteCommand->SetParameterName(
"flag",
false);
94 if(std::getenv(
"G4HEPREPFILE_OVERWRITE") == NULL)
96 setOverwriteCommand->SetDefaultValue(
false);
100 setOverwriteCommand->SetDefaultValue(std::getenv(
"G4HEPREPFILE_OVERWRITE"));
102 setOverwriteCommand->ConvertToBool(std::getenv(
"G4HEPREPFILE_OVERWRITE"));
106 setCullInvisiblesCommand =
107 new G4UIcmdWithABool(
"/vis/heprep/setCullInvisibles",
this);
108 setCullInvisiblesCommand->SetGuidance(
109 "Remove invisible objects from output file.");
110 setCullInvisiblesCommand->SetGuidance(
111 "This command is used by HepRepFile, not by HepRepXML.");
112 setCullInvisiblesCommand->SetParameterName(
"flag",
false);
113 if(std::getenv(
"G4HEPREPFILE_CULL") == NULL)
115 setCullInvisiblesCommand->SetDefaultValue(
false);
119 setCullInvisiblesCommand->SetDefaultValue(std::getenv(
"G4HEPREPFILE_CULL"));
121 setCullInvisiblesCommand->ConvertToBool(std::getenv(
"G4HEPREPFILE_CULL"));
123 setCullInvisiblesCommand->AvailableForStates(
G4State_Idle);
125 renderCylAsPolygonsCommand =
126 new G4UIcmdWithABool(
"/vis/heprep/renderCylAsPolygons",
this);
127 renderCylAsPolygonsCommand->SetGuidance(
128 "Render cylinders and cones as polygons.");
129 renderCylAsPolygonsCommand->SetGuidance(
130 "This command is used by HepRepFile, not by HepRepXML.");
131 renderCylAsPolygonsCommand->SetParameterName(
"flag",
false);
132 renderCylAsPolygonsCommand->SetDefaultValue(
false);
133 renderCylAsPolygonsCommand->AvailableForStates(
G4State_Idle);
135 setScaleCommand =
new G4UIcmdWithADouble(
"/vis/heprep/scale",
this);
136 setScaleCommand->SetGuidance(
"Re-Scale coordinates.");
137 setScaleCommand->SetParameterName(
"Scale",
true);
138 setScaleCommand->SetDefaultValue(1.);
139 setScaleCommand->SetRange(
"Scale > 0");
141 setCenterCommand =
new G4UIcmdWith3VectorAndUnit(
"/vis/heprep/center",
this);
142 setCenterCommand->SetGuidance(
"Re-Center coordinates.");
143 setCenterCommand->SetParameterName(
"CenterX",
"CenterY",
"CenterZ",
true);
144 setCenterCommand->SetDefaultValue(
G4ThreeVector(0., 0., 0.));
145 setCenterCommand->SetDefaultUnit(
"m");
147 setEventNumberSuffixCommand =
148 new G4UIcmdWithAString(
"/vis/heprep/setEventNumberSuffix",
this);
149 setEventNumberSuffixCommand->SetGuidance(
150 "Write separate event files, appended with given suffix.");
151 setEventNumberSuffixCommand->SetGuidance(
152 "Define the suffix with a pattern such as '-0000'.");
153 setEventNumberSuffixCommand->SetGuidance(
154 "This command is used by HepRepXML, not by HepRepFile.");
155 setEventNumberSuffixCommand->SetParameterName(
"suffix",
false);
156 setEventNumberSuffixCommand->SetDefaultValue(
"");
157 setEventNumberSuffixCommand->AvailableForStates(
G4State_Idle);
159 appendGeometryCommand =
160 new G4UIcmdWithABool(
"/vis/heprep/appendGeometry",
this);
161 appendGeometryCommand->SetGuidance(
162 "Appends copy of geometry to every event.");
163 appendGeometryCommand->SetGuidance(
164 "This command is used by HepRepXML, not by HepRepFile.");
165 appendGeometryCommand->SetParameterName(
"flag",
false);
166 appendGeometryCommand->SetDefaultValue(
true);
167 appendGeometryCommand->AvailableForStates(
G4State_Idle);
169 addPointAttributesCommand =
170 new G4UIcmdWithABool(
"/vis/heprep/addPointAttributes",
this);
171 addPointAttributesCommand->SetGuidance(
172 "Adds point attributes to the points of trajectories.");
173 addPointAttributesCommand->SetGuidance(
174 "This command is used by HepRepXML, not by HepRepFile.");
175 addPointAttributesCommand->SetParameterName(
"flag",
false);
176 addPointAttributesCommand->SetDefaultValue(
false);
177 addPointAttributesCommand->AvailableForStates(
G4State_Idle);
179 useSolidsCommand =
new G4UIcmdWithABool(
"/vis/heprep/useSolids",
this);
180 useSolidsCommand->SetGuidance(
181 "Use HepRep Solids, rather than Geant4 Primitives.");
182 useSolidsCommand->SetGuidance(
183 "This command is used by HepRepXML, not by HepRepFile..");
184 useSolidsCommand->SetParameterName(
"flag",
false);
185 useSolidsCommand->SetDefaultValue(
true);
191 delete setFileDirCommand;
192 delete setFileNameCommand;
193 delete setOverwriteCommand;
194 delete setCullInvisiblesCommand;
195 delete renderCylAsPolygonsCommand;
196 delete setScaleCommand;
197 delete setCenterCommand;
198 delete setEventNumberSuffixCommand;
199 delete appendGeometryCommand;
200 delete addPointAttributesCommand;
201 delete useSolidsCommand;
202 delete heprepDirectory;
207 if(command == setFileDirCommand)
211 else if(command == setFileNameCommand)
215 else if(command == setOverwriteCommand)
219 else if(command == setCullInvisiblesCommand)
223 else if(command == renderCylAsPolygonsCommand)
225 return renderCylAsPolygonsCommand->ConvertToString(cylAsPolygons);
227 else if(command == setScaleCommand)
229 return setScaleCommand->ConvertToString(scale);
231 else if(command == setCenterCommand)
233 return setCenterCommand->ConvertToString(center,
"m");
235 else if(command == setEventNumberSuffixCommand)
239 else if(command == appendGeometryCommand)
241 return appendGeometryCommand->ConvertToString(geometry);
243 else if(command == addPointAttributesCommand)
245 return addPointAttributesCommand->ConvertToString(pointAttributes);
247 else if(command == useSolidsCommand)
249 return useSolidsCommand->ConvertToString(solids);
259 if(command == setFileDirCommand)
263 else if(command == setFileNameCommand)
267 else if(command == setOverwriteCommand)
269 overwrite = setOverwriteCommand->GetNewBoolValue(newValue);
271 else if(command == setCullInvisiblesCommand)
273 cullInvisibles = setCullInvisiblesCommand->GetNewBoolValue(newValue);
275 else if(command == renderCylAsPolygonsCommand)
277 cylAsPolygons = renderCylAsPolygonsCommand->GetNewBoolValue(newValue);
279 else if(command == setScaleCommand)
281 scale = setScaleCommand->GetNewDoubleValue(newValue);
283 else if(command == setCenterCommand)
285 center = setCenterCommand->GetNew3VectorValue(newValue);
287 else if(command == setEventNumberSuffixCommand)
291 else if(command == appendGeometryCommand)
293 geometry = appendGeometryCommand->GetNewBoolValue(newValue);
295 else if(command == addPointAttributesCommand)
297 pointAttributes = addPointAttributesCommand->GetNewBoolValue(newValue);
299 else if(command == useSolidsCommand)
301 solids = useSolidsCommand->GetNewBoolValue(newValue);
CLHEP::Hep3Vector G4ThreeVector
virtual G4String GetCurrentValue(G4UIcommand *command)
virtual G4bool renderCylAsPolygons()
virtual void SetNewValue(G4UIcommand *command, G4String newValue)
virtual G4String getFileName()
virtual G4bool addPointAttributes()
virtual G4bool writeInvisibles()
virtual G4double getScale()
virtual ~G4HepRepMessenger()
virtual G4bool useSolids()
virtual G4String getEventNumberSuffix()
virtual G4String getFileDir()
virtual G4bool getCullInvisibles()
virtual G4bool appendGeometry()
virtual G4bool getOverwrite()
static G4HepRepMessenger * GetInstance()
virtual G4ThreeVector getCenter()
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetDefaultValue(const char *defVal)
static G4String ConvertToString(G4bool boolVal)
void SetGuidance(const char *aGuidance)