Go to the source code of this file.
Definition at line 170 of file G4VisAttributes.cc.
References G4VisAttributes::dashed, G4VisAttributes::dotted, G4VisAttributes::solid, G4VisAttributes::unbroken, and G4VisAttributes::wireframe.
172 os <<
"G4VisAttributes: ";
174 if (!a.fVisible) os <<
"in";
175 os <<
"visible, daughters ";
176 if (a.fDaughtersInvisible) os <<
"in";
177 os <<
"visible, colour: " << a.fColour;
178 os <<
"\n linestyle: ";
179 switch (a.fLineStyle) {
181 os <<
"solid";
break;
183 os <<
"dashed";
break;
185 default: os <<
"unrecognised";
break;
187 os <<
", line width: " << a.fLineWidth;
188 os <<
"\n drawing style: ";
189 if (a.fForceDrawingStyle) {
191 switch (a.fForcedStyle) {
193 os <<
"wireframe";
break;
195 os <<
"solid";
break;
196 default: os <<
"unrecognised";
break;
202 os <<
", auxiliary edge visibility: ";
203 if (!a.fForceAuxEdgeVisible) {
207 os <<
"\n line segments per circle: ";
208 if (a.fForcedLineSegmentsPerCircle > 0) {
209 os <<
"forced to " << a.fForcedLineSegmentsPerCircle;
213 os <<
"\n time range: (" << a.fStartTime <<
',' << a.fEndTime <<
')';
214 os <<
"\n G4AttValue pointer is ";
219 os <<
", G4AttDef pointer is ";
225 else os <<
" zero G4VisAttributes pointer";