source: trunk/source/geometry/management/include/G4VPhysicalVolume.icc@ 1317

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

update geant4.9.3 tag

File size: 3.4 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: G4VPhysicalVolume.icc,v 1.10 2006/06/29 18:32:37 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30//
31// class G4VPhysicalVolume Inline Implementation
32//
33// --------------------------------------------------------------------
34
35inline
36G4bool G4VPhysicalVolume::operator == (const G4VPhysicalVolume& p) const
37{
38 return (this==&p) ? true : false;
39}
40
41inline
42const G4ThreeVector& G4VPhysicalVolume::GetTranslation() const
43{
44 return ftrans;
45}
46
47inline
48void G4VPhysicalVolume::SetTranslation(const G4ThreeVector &v)
49{
50 ftrans=v;
51}
52
53inline
54const G4RotationMatrix* G4VPhysicalVolume::GetRotation() const
55{
56 return frot;
57}
58
59inline
60G4RotationMatrix* G4VPhysicalVolume::GetRotation()
61{
62 return frot;
63}
64
65inline
66void G4VPhysicalVolume::SetRotation(G4RotationMatrix *pRot)
67{
68 frot=pRot;
69}
70
71inline
72G4LogicalVolume* G4VPhysicalVolume::GetLogicalVolume() const
73{
74 return flogical;
75}
76
77inline
78void G4VPhysicalVolume::SetLogicalVolume(G4LogicalVolume *pLogical)
79{
80 flogical=pLogical;
81}
82
83inline
84G4LogicalVolume* G4VPhysicalVolume::GetMotherLogical() const
85{
86 return flmother;
87}
88
89inline
90void G4VPhysicalVolume::SetMotherLogical(G4LogicalVolume *pMother)
91{
92 flmother=pMother;
93}
94
95inline
96const G4String& G4VPhysicalVolume::GetName() const
97{
98 return fname;
99}
100
101inline
102void G4VPhysicalVolume::SetName(const G4String& pName)
103{
104 fname=pName;
105}
106
107inline
108G4RotationMatrix G4VPhysicalVolume::GetObjectRotationValue() const
109{
110 G4RotationMatrix aRotM; // Initialised to identity
111
112 // Insure against frot being a null pointer
113 if(frot)
114 {
115 aRotM= frot->inverse();
116 }
117 return aRotM;
118}
119
120inline
121G4ThreeVector G4VPhysicalVolume::GetObjectTranslation() const
122{
123 return ftrans;
124}
125
126inline
127const G4RotationMatrix* G4VPhysicalVolume::GetFrameRotation() const
128{
129 return frot;
130}
131
132inline
133G4ThreeVector G4VPhysicalVolume::GetFrameTranslation() const
134{
135 return -ftrans;
136}
Note: See TracBrowser for help on using the repository browser.