ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4GeometryTolerance.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4GeometryTolerance.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 //
28 // class G4GeometryTolerance
29 //
30 // Implementation
31 //
32 // Author:
33 // 30.10.06 - G.Cosmo, first implementation
34 // --------------------------------------------------------------------
35 
36 #include "G4GeometryTolerance.hh"
37 #include "G4SystemOfUnits.hh"
38 #include "G4AutoDelete.hh"
39 #include "globals.hh"
40 
41 
42 // ***************************************************************************
43 // Static class instance
44 // ***************************************************************************
45 //
47 
48 // ***************************************************************************
49 // Constructor.
50 // ***************************************************************************
51 //
53 {
54  fCarTolerance = 1E-9*mm;
55  fAngTolerance = 1E-9*rad;
56  fRadTolerance = 1E-9*mm;
57 }
58 
59 // ***************************************************************************
60 // Empty destructor.
61 // ***************************************************************************
62 //
64 {
65 }
66 
67 // ***************************************************************************
68 // Returns the instance of the singleton.
69 // Creates it in case it's called for the first time.
70 // ***************************************************************************
71 //
73 {
74  if (fpInstance == 0)
75  {
78  }
79  return fpInstance;
80 }
81 
82 // ***************************************************************************
83 // Accessors.
84 // ***************************************************************************
85 //
87 {
88  return fCarTolerance;
89 }
90 
92 {
93  return fAngTolerance;
94 }
95 
97 {
98  return fRadTolerance;
99 }
100 
101 // ***************************************************************************
102 // Sets the tolerance to a value computed on the basis of the world volume
103 // extent provided as argument. The method can be called only once.
104 // ***************************************************************************
105 //
107 {
108  if (!fInitialised)
109  {
110  fCarTolerance = fRadTolerance = worldExtent*1E-11;
111  fInitialised = true;
112  }
113  else
114  {
115  G4cout << "WARNING - G4GeometryTolerance::SetSurfaceTolerance()" << G4endl
116  << " Tolerance can only be set once. Currently set to: "
117  << fCarTolerance/mm << " mm." << G4endl;
118  G4Exception("G4GeometryTolerance::SetSurfaceTolerance()",
119  "NotApplicable", JustWarning,
120  "The tolerance has been already set!");
121  }
122 }