Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GeomTestVolume.hh
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// G4GeomTestVolume
27//
28// Class description:
29//
30// Checks for inconsistencies in the geometric boundaries of a physical
31// volume and the boundaries of all its immediate daughters.
32
33// Author: Gabriele Cosmo (CERN), 22 August 2013
34// --------------------------------------------------------------------
35#ifndef G4GeomTestVolume_hh
36#define G4GeomTestVolume_hh 1
37
38#include "G4ThreeVector.hh"
39
41class G4GeomTestLogger;
42
43/**
44 * @brief G4GeomTestVolume allows to check for inconsistencies in the
45 * geometric boundaries of a physical volume and the boundaries of all
46 * its immediate daughters.
47 */
48
50{
51 public:
52
53 /**
54 * Constructor and Destructor.
55 */
57 G4double theTolerance = 0.0, // mm
58 G4int numberOfPoints = 10000,
59 G4bool theVerbosity = true);
61
62 /**
63 * Gets/Sets error tolerance (default set to 0*mm).
64 */
65 G4double GetTolerance() const;
66 void SetTolerance(G4double tolerance);
67
68 /**
69 * Gets/Sets number of points to check (default set to 10000).
70 */
71 G4int GetResolution() const;
72 void SetResolution(G4int points);
73
74 /**
75 * Gets/Sets verbosity mode (default set to true).
76 */
77 G4bool GetVerbosity() const;
78 void SetVerbosity(G4bool verbosity);
79
80 /**
81 * Get/Set maximum number of errors to report (default set to 1).
82 */
84 void SetErrorsThreshold(G4int max);
85
86 /**
87 * Checks for overlaps in the volume tree without duplication in
88 * identical logical volumes.
89 */
90 void TestOverlapInTree() const;
91
92 /**
93 * Activates overlaps check, propagating recursively to the daughters,
94 * with possibility of specifying the initial level in the volume tree
95 * and the depth (default is the whole tree).
96 * @note Depending on the complexity of the geometry, this may require
97 * long computational time.
98 */
99 void TestRecursiveOverlap( G4int sLevel=0, G4int depth=-1 );
100
101 private:
102
103 G4VPhysicalVolume *target; // Target volume
104 G4double tolerance; // Error tolerance
105 G4int resolution; // Number of points to test
106 G4int maxErr = 1; // Maximum number of errors to report
107 G4bool verbosity; // Verbosity level for overlaps check
108};
109
110#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4bool GetVerbosity() const
void SetTolerance(G4double tolerance)
G4int GetErrorsThreshold() const
void SetVerbosity(G4bool verbosity)
void TestRecursiveOverlap(G4int sLevel=0, G4int depth=-1)
void TestOverlapInTree() const
void SetResolution(G4int points)
G4GeomTestVolume(G4VPhysicalVolume *theTarget, G4double theTolerance=0.0, G4int numberOfPoints=10000, G4bool theVerbosity=true)
G4int GetResolution() const
void SetErrorsThreshold(G4int max)
G4double GetTolerance() const
G4VPhysicalVolume is an abstract base class for the representation of a positioned volume....