source: trunk/source/geometry/management/src/G4VTouchable.cc@ 1311

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

update geant4.9.3 tag

File size: 3.3 KB
RevLine 
[1229]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: G4VTouchable.cc,v 1.1 2009/11/06 10:36:00 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30//
31// class G4VTouchable implementation
32//
33// --------------------------------------------------------------------
34
35#include "G4VTouchable.hh"
36
37G4VTouchable::G4VTouchable()
38{
39}
40
41G4VTouchable::~G4VTouchable()
42{
43}
44
45G4VPhysicalVolume* G4VTouchable::GetVolume(G4int) const
46{
47 G4Exception("G4VTouchable::GetVolume()", "NotApplicable",
48 FatalException, "Undefined call to base class.");
49 return 0;
50}
51
52G4VSolid* G4VTouchable::GetSolid(G4int) const
53{
54 G4Exception("G4VTouchable::GetSolid()", "NotApplicable",
55 FatalException, "Undefined call to base class.");
56 return 0;
57}
58
59G4int G4VTouchable::GetReplicaNumber(G4int) const
60{
61 G4Exception("G4VTouchable::GetReplicaNumber()", "NotApplicable",
62 FatalException, "Undefined call to base class.");
63 return 0;
64}
65
66G4int G4VTouchable::MoveUpHistory(G4int)
67{
68 G4Exception("G4VTouchable::MoveUpHistory()", "NotApplicable",
69 FatalException, "Undefined call to base class.");
70 return 0;
71}
72
73void G4VTouchable::UpdateYourself(G4VPhysicalVolume*,
74 const G4NavigationHistory* )
75{
76 G4Exception("G4VTouchable::UpdateYourself()", "NotApplicable",
77 FatalException, "Undefined call to base class.");
78}
79
80G4int G4VTouchable::GetHistoryDepth() const
81{
82 G4Exception("G4VTouchable::GetHistoryDepth()", "NotApplicable",
83 FatalException, "Undefined call to base class.");
84 return 0;
85}
86
87const G4NavigationHistory* G4VTouchable::GetHistory() const
88{
89 G4Exception("G4VTouchable::GetHistory()", "NotApplicable",
90 FatalException, "Undefined call to base class.");
91 return 0;
92}
Note: See TracBrowser for help on using the repository browser.