source: trunk/source/global/management/src/G4GeometryTolerance.cc @ 833

Last change on this file since 833 was 833, checked in by garnier, 16 years ago

import all except CVS

File size: 4.6 KB
Line 
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: G4GeometryTolerance.cc,v 1.2.4.1 2008/04/23 09:22:49 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-01-patch-02 $
29//
30// class G4GeometryTolerance
31//
32// Implementation
33//
34// Author:
35// 30.10.06 - G.Cosmo, first implementation
36// --------------------------------------------------------------------
37
38#include "G4GeometryTolerance.hh"
39#include "globals.hh"
40
41// ***************************************************************************
42// Static class data
43// ***************************************************************************
44//
45G4GeometryTolerance* G4GeometryTolerance::fInstance = 0;
46G4bool G4GeometryTolerance::fInitialised = false;
47G4double G4GeometryTolerance::fCarTolerance = 1E-9*mm;
48G4double G4GeometryTolerance::fAngTolerance = 1E-9*rad;
49G4double G4GeometryTolerance::fRadTolerance = 1E-9*mm;
50
51// ***************************************************************************
52// Constructor.
53// ***************************************************************************
54//
55G4GeometryTolerance::G4GeometryTolerance()
56{
57}
58
59// ***************************************************************************
60// Empty destructor.
61// ***************************************************************************
62//
63G4GeometryTolerance::~G4GeometryTolerance()
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//
72G4GeometryTolerance* G4GeometryTolerance::GetInstance()
73{
74  static G4GeometryTolerance theToleranceManager;
75  if (!fInstance)
76  {
77    fInstance = &theToleranceManager;
78  }
79  return fInstance;   
80}
81
82// ***************************************************************************
83// Accessors.
84// ***************************************************************************
85//
86G4double G4GeometryTolerance::GetSurfaceTolerance() const
87{
88  return fCarTolerance;
89}
90
91G4double G4GeometryTolerance::GetAngularTolerance() const
92{
93  return fAngTolerance;
94}
95
96G4double G4GeometryTolerance::GetRadialTolerance() const
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//
106void G4GeometryTolerance::SetSurfaceTolerance(G4double worldExtent)
107{
108  if (!fInitialised)
109  {
110    fCarTolerance = 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}
Note: See TracBrowser for help on using the repository browser.