Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4ModelingParameters.cc
이 파일의 문서화 페이지로 가기
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 //
27 // $Id: G4ModelingParameters.cc 109510 2018-04-26 07:15:57Z gcosmo $
28 //
29 //
30 // John Allison 31st December 1997.
31 // Parameters associated with the modeling of GEANT4 objects.
32 
33 #include "G4ModelingParameters.hh"
34 
35 #include "G4ios.hh"
36 #include "G4VisAttributes.hh"
37 #include "G4ExceptionSeverity.hh"
38 #include "G4SystemOfUnits.hh"
39 #include "G4VSolid.hh"
40 #include "G4VPhysicalVolume.hh"
41 #include "G4PhysicalVolumeModel.hh"
42 #include "G4UnitsTable.hh"
43 
45  fWarning (true),
46  fpDefaultVisAttributes (0),
47  fDrawingStyle (wf),
48  fCulling (false),
49  fCullInvisible (false),
50  fDensityCulling (false),
51  fVisibleDensity (0.01 * g / cm3),
52  fCullCovered (false),
53  fCBDAlgorithmNumber (0),
54  fExplodeFactor (1.),
55  fNoOfSides (24),
56  fpSectionSolid (0),
57  fpCutawaySolid (0),
58  fpEvent (0)
59 {}
60 
62 (const G4VisAttributes* pDefaultVisAttributes,
64  G4bool isCulling,
65  G4bool isCullingInvisible,
66  G4bool isDensityCulling,
67  G4double visibleDensity,
68  G4bool isCullingCovered,
69  G4int noOfSides
70  ):
71  fWarning (true),
72  fpDefaultVisAttributes (pDefaultVisAttributes),
73  fDrawingStyle (drawingStyle),
74  fCulling (isCulling),
75  fCullInvisible (isCullingInvisible),
76  fDensityCulling (isDensityCulling),
77  fVisibleDensity (visibleDensity),
78  fCullCovered (isCullingCovered),
79  fCBDAlgorithmNumber(0),
80  fExplodeFactor (1.),
81  fNoOfSides (noOfSides),
82  fpSectionSolid (0),
83  fpCutawaySolid (0),
84  fpEvent (0)
85 {}
86 
88 {
89  delete fpSectionSolid;
90  delete fpCutawaySolid;
91 }
92 
94 (const G4VisAttributes& visAtts,
96  const std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>& path):
97 fVisAtts(visAtts), fSignifier(signifier)
98 {
100  typedef std::vector<PVNodeID> PVPath;
101  typedef PVPath::const_iterator PVPathConstIterator;
102  PVPathConstIterator i;
103  for (i = path.begin();
104  i != path.end();
105  ++i) {
106  fPVNameCopyNoPath.push_back
107  (PVNameCopyNo
108  (i->GetPhysicalVolume()->GetName(),
109  i->GetCopyNo()));
110  }
111 }
112 
114  const G4double reasonableMaximum = 10.0 * g / cm3;
115  if (visibleDensity < 0 && fWarning) {
116  G4cout << "G4ModelingParameters::SetVisibleDensity: attempt to set negative "
117  "density - ignored." << G4endl;
118  }
119  else {
120  if (fVisibleDensity > reasonableMaximum && fWarning) {
121  G4cout << "G4ModelingParameters::SetVisibleDensity: density > "
122  << reasonableMaximum
123  << " g / cm3 - did you mean this?"
124  << G4endl;
125  }
126  fVisibleDensity = visibleDensity;
127  }
128 }
129 
132  if (nSides < nSidesMin) {
133  nSides = nSidesMin;
134  if (fWarning)
135  G4cout << "G4ModelingParameters::SetNoOfSides: attempt to set the"
136  "\nnumber of sides per circle < " << nSidesMin
137  << "; forced to" << nSides << G4endl;
138  }
139  fNoOfSides = nSides;
140  return fNoOfSides;
141 }
142 
144 (G4VSolid* pSectionSolid) {
145  delete fpSectionSolid;
146  fpSectionSolid = pSectionSolid;
147 }
148 
150 (G4VSolid* pCutawaySolid) {
151  delete fpCutawaySolid;
152  fpCutawaySolid = pCutawaySolid;
153 }
154 
155 std::ostream& operator << (std::ostream& os, const G4ModelingParameters& mp)
156 {
157  os << "Modeling parameters (warning ";
158  if (mp.fWarning) os << "true";
159  else os << "false";
160  os << "):";
161 
163  os << "\n Default vis. attributes: ";
164  if (va) os << *va;
165  else os << "none";
166 
167  os << "\n Current requested drawing style: ";
168  switch (mp.fDrawingStyle) {
170  os << "wireframe"; break;
172  os << "hidden line removal (hlr)"; break;
174  os << "surface (hsr)"; break;
176  os << "surface and edges (hlhsr)"; break;
177  default: os << "unrecognised"; break;
178  }
179 
180  os << "\n Culling: ";
181  if (mp.fCulling) os << "on";
182  else os << "off";
183 
184  os << "\n Culling invisible objects: ";
185  if (mp.fCullInvisible) os << "on";
186  else os << "off";
187 
188  os << "\n Density culling: ";
189  if (mp.fDensityCulling) {
190  os << "on - invisible if density less than "
191  << mp.fVisibleDensity / (1. * g / cm3) << " g cm^-3";
192  }
193  else os << "off";
194 
195  os << "\n Culling daughters covered by opaque mothers: ";
196  if (mp.fCullCovered) os << "on";
197  else os << "off";
198 
199  os << "\n Colour by density: ";
200  if (mp.fCBDAlgorithmNumber <= 0) {
201  os << "inactive";
202  } else {
203  os << "Algorithm " << mp.fCBDAlgorithmNumber << ", Parameters:";
204  for (auto p: mp.fCBDParameters) {
205  os << ' ' << G4BestUnit(p,"Volumic Mass");
206  }
207  }
208 
209  os << "\n Explode factor: " << mp.fExplodeFactor
210  << " about centre: " << mp.fExplodeCentre;
211 
212  os << "\n No. of sides used in circle polygon approximation: "
213  << mp.fNoOfSides;
214 
215  os << "\n Section (DCUT) shape (G4VSolid) pointer: ";
216  if (!mp.fpSectionSolid) os << "non-";
217  os << "null";
218 
219  os << "\n Cutaway (DCUT) shape (G4VSolid) pointer: ";
220  if (!mp.fpCutawaySolid) os << "non-";
221  os << "null";
222 
223  os << "\n Event pointer: " << mp.fpEvent;
224 
225  os << "\n Vis attributes modifiers: ";
226  const std::vector<G4ModelingParameters::VisAttributesModifier>& vams =
228  if (vams.empty()) {
229  os << "None";
230  } else {
231  os << vams;
232  }
233 
234  return os;
235 }
236 
237 G4bool G4ModelingParameters::operator !=
238 (const G4ModelingParameters& mp) const {
239 
240  if (
241  (fWarning != mp.fWarning) ||
242  (*fpDefaultVisAttributes != *mp.fpDefaultVisAttributes) ||
243  (fCulling != mp.fCulling) ||
244  (fCullInvisible != mp.fCullInvisible) ||
245  (fDensityCulling != mp.fDensityCulling) ||
246  (fCullCovered != mp.fCullCovered) ||
247  (fCBDAlgorithmNumber != mp.fCBDAlgorithmNumber) ||
248  (fExplodeFactor != mp.fExplodeFactor) ||
249  (fExplodeCentre != mp.fExplodeCentre) ||
250  (fNoOfSides != mp.fNoOfSides) ||
251  (fpSectionSolid != mp.fpSectionSolid) ||
252  (fpCutawaySolid != mp.fpCutawaySolid) ||
253  (fpEvent != mp.fpEvent)
254  )
255  return true;
256 
257  if (fDensityCulling &&
258  (fVisibleDensity != mp.fVisibleDensity)) return true;
259 
260  if (fCBDAlgorithmNumber > 0) {
261  if (fCBDParameters.size() != mp.fCBDParameters.size()) return true;
262  else if (fCBDParameters != mp.fCBDParameters) return true;
263  }
264 
265  if (fVisAttributesModifiers != mp.fVisAttributesModifiers)
266  return true;
267 
268  return false;
269 }
270 
271 G4bool G4ModelingParameters::VisAttributesModifier::operator!=
273 {
274  if (fSignifier != rhs.fSignifier) return true;
275  if (fPVNameCopyNoPath != rhs.fPVNameCopyNoPath) return true;
276  switch (fSignifier) {
278  if (fVisAtts.IsVisible() != rhs.fVisAtts.IsVisible())
279  return true;
280  break;
282  if (fVisAtts.IsDaughtersInvisible() !=
283  rhs.fVisAtts.IsDaughtersInvisible())
284  return true;
285  break;
287  if (fVisAtts.GetColour() != rhs.fVisAtts.GetColour())
288  return true;
289  break;
291  if (fVisAtts.GetLineStyle() != rhs.fVisAtts.GetLineStyle())
292  return true;
293  break;
295  if (fVisAtts.GetLineWidth() != rhs.fVisAtts.GetLineWidth())
296  return true;
297  break;
299  if (fVisAtts.GetForcedDrawingStyle() !=
300  rhs.fVisAtts.GetForcedDrawingStyle())
301  return true;
302  break;
304  if (fVisAtts.GetForcedDrawingStyle() !=
305  rhs.fVisAtts.GetForcedDrawingStyle())
306  return true;
307  break;
309  if (fVisAtts.IsForceAuxEdgeVisible() !=
310  rhs.fVisAtts.IsForceAuxEdgeVisible() ||
311  fVisAtts.IsForcedAuxEdgeVisible() !=
312  rhs.fVisAtts.IsForcedAuxEdgeVisible())
313  return true;
314  break;
316  if (fVisAtts.GetForcedLineSegmentsPerCircle() !=
317  rhs.fVisAtts.GetForcedLineSegmentsPerCircle())
318  return true;
319  break;
320  }
321  return false;
322 }
323 
324 G4bool G4ModelingParameters::PVNameCopyNo::operator!=
326 {
327  if (fName != rhs.fName) return true;
328  if (fCopyNo != rhs.fCopyNo) return true;
329  return false;
330 }
331 
332 std::ostream& operator <<
333 (std::ostream& os, const G4ModelingParameters::PVNameCopyNoPath& path)
334 {
335  os << "Touchable path: physical-volume-name:copy-number pairs:\n ";
337  for (i = path.begin(); i != path.end(); ++i) {
338  if (i != path.begin()) {
339  os << ',';
340  }
341  os << i->GetName() << ':' << i->GetCopyNo();
342  }
343  return os;
344 }
345 
347 {
348  return fpPV->GetName();
349 }
350 
351 G4bool G4ModelingParameters::PVPointerCopyNo::operator!=
353 {
354  if (fpPV != rhs.fpPV) return true;
355  if (fCopyNo != rhs.fCopyNo) return true;
356  return false;
357 }
358 
359 std::ostream& operator <<
360 (std::ostream& os, const G4ModelingParameters::PVPointerCopyNoPath& path)
361 {
362  os << "Touchable path: physical-volume-pointer:copy-number pairs:\n ";
364  for (i = path.begin(); i != path.end(); ++i) {
365  if (i != path.begin()) {
366  os << ',';
367  }
368  os << '(' << (void*)(i->GetPVPointer()) << ')' << i->GetName() << ':' << i->GetCopyNo();
369  }
370  return os;
371 }
372 
373 std::ostream& operator <<
374 (std::ostream& os,
375  const std::vector<G4ModelingParameters::VisAttributesModifier>& vams)
376 {
377  std::vector<G4ModelingParameters::VisAttributesModifier>::const_iterator
378  iModifier;
379  for (iModifier = vams.begin();
380  iModifier != vams.end();
381  ++iModifier) {
383  iModifier->GetPVNameCopyNoPath();
384  os << '\n' << vamPath;
385  const G4VisAttributes& vamVisAtts = iModifier->GetVisAttributes();
386  const G4Colour& c = vamVisAtts.GetColour();
387  switch (iModifier->GetVisAttributesSignifier()) {
389  os << " visibility ";
390  if (vamVisAtts.IsVisible()) {
391  os << "true";
392  } else {
393  os << "false";
394  }
395  break;
397  os << " daughtersInvisible ";
398  if (vamVisAtts.IsDaughtersInvisible()) {
399  os << "true";
400  } else {
401  os << "false";
402  }
403  break;
405  os << " colour " << c;
406  break;
408  os << " lineStyle ";
409  switch (vamVisAtts.GetLineStyle()) {
411  os << "unbroken";
412  break;
414  os << "dashed";
415  break;
417  os << "dotted";
418  }
419  break;
421  os << " lineWidth "
422  << vamVisAtts.GetLineWidth();
423  break;
426  os << " forceWireframe ";
427  if (vamVisAtts.IsForceDrawingStyle()) {
428  os << "true";
429  } else {
430  os << "false";
431  }
432  }
433  break;
435  if (vamVisAtts.GetForcedDrawingStyle() == G4VisAttributes::solid) {
436  os << " forceSolid ";
437  if (vamVisAtts.IsForceDrawingStyle()) {
438  os << "true";
439  } else {
440  os << "false";
441  }
442  }
443  break;
445  os << " forceAuxEdgeVisible: ";
446  if (!vamVisAtts.IsForceDrawingStyle()) {
447  os << "not ";
448  }
449  os << " forced";
450  if (vamVisAtts.IsForceAuxEdgeVisible()) {
451  os << ": ";
452  if (vamVisAtts.IsForcedAuxEdgeVisible()) {
453  os << "true";
454  } else {
455  os << "false";
456  }
457  }
458  break;
460  os << " lineSegmentsPerCircle "
461  << vamVisAtts.GetForcedLineSegmentsPerCircle();
462  break;
463  }
464  }
465 
466  return os;
467 }
468 
std::vector< PVNameCopyNo > PVNameCopyNoPath
std::ostream & operator<<(std::ostream &, const BasicVector3D< float > &)
#define G4endl
Definition: G4ios.hh:61
ForcedDrawingStyle GetForcedDrawingStyle() const
const char * p
Definition: xmltok.h:285
G4bool IsVisible() const
PVPointerCopyNoPath::const_iterator PVPointerCopyNoPathConstIterator
VisAttributesModifier(const G4VisAttributes &visAtts, VisAttributesSignifier signifier, const PVNameCopyNoPath &path)
G4bool IsForceAuxEdgeVisible() const
void SetSectionSolid(G4VSolid *pSectionSolid)
G4bool IsForcedAuxEdgeVisible() const
static G4int GetMinLineSegmentsPerCircle()
static constexpr double g
Definition: G4SIunits.hh:183
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
std::vector< PVNodeID > PVPath
G4double GetLineWidth() const
G4String fName
Definition: G4AttUtils.hh:55
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
std::vector< PVPointerCopyNo > PVPointerCopyNoPath
std::vector< VisAttributesModifier > fVisAttributesModifiers
int G4int
Definition: G4Types.hh:78
G4bool IsForceDrawingStyle() const
G4PhysicalVolumeModel::G4PhysicalVolumeNodeID PVNodeID
const G4VisAttributes * fpDefaultVisAttributes
G4GLOB_DLL std::ostream G4cout
void SetCutawaySolid(G4VSolid *pCutawaySolid)
void SetVisibleDensity(G4double)
PVNameCopyNoPath::const_iterator PVNameCopyNoPathConstIterator
static constexpr double cm3
Definition: G4SIunits.hh:121
LineStyle GetLineStyle() const
G4int GetForcedLineSegmentsPerCircle() const
const G4Colour & GetColour() const
const G4String & GetName() const
G4bool IsDaughtersInvisible() const
std::vector< G4double > fCBDParameters