Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // class G4VPhysicalVolume inline implementati << 27 // 23 // 28 // ------------------------------------------- << 24 // $Id: G4VPhysicalVolume.icc,v 1.6 2003/05/13 18:38:33 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-05-02 $ >> 26 // >> 27 // >> 28 // class G4VPhysicalVolume Inline Implementation >> 29 // >> 30 >> 31 inline >> 32 G4bool G4VPhysicalVolume::operator == (const G4VPhysicalVolume& p) const >> 33 { >> 34 return (this==&p) ? true : false; >> 35 } >> 36 >> 37 inline >> 38 const G4ThreeVector& G4VPhysicalVolume::GetTranslation() const >> 39 { >> 40 return ftrans; >> 41 } 29 42 30 inline 43 inline 31 G4bool G4VPhysicalVolume::operator == (const G << 44 void G4VPhysicalVolume::SetTranslation(const G4ThreeVector &v) 32 { 45 { 33 return this==&right; << 46 ftrans=v; 34 } 47 } 35 48 36 inline 49 inline 37 G4int G4VPhysicalVolume::GetInstanceID() const << 50 const G4RotationMatrix* G4VPhysicalVolume::GetRotation() const 38 { 51 { 39 return instanceID; << 52 return frot; >> 53 } >> 54 >> 55 inline >> 56 G4RotationMatrix* G4VPhysicalVolume::GetRotation() >> 57 { >> 58 return frot; >> 59 } >> 60 >> 61 inline >> 62 void G4VPhysicalVolume::SetRotation(G4RotationMatrix *pRot) >> 63 { >> 64 frot=pRot; 40 } 65 } 41 66 42 inline 67 inline 43 G4LogicalVolume* G4VPhysicalVolume::GetLogical 68 G4LogicalVolume* G4VPhysicalVolume::GetLogicalVolume() const 44 { 69 { 45 return flogical; 70 return flogical; 46 } 71 } 47 72 48 inline 73 inline 49 void G4VPhysicalVolume::SetLogicalVolume(G4Log << 74 void G4VPhysicalVolume::SetLogicalVolume(G4LogicalVolume *pLogical) >> 75 { >> 76 flogical=pLogical; >> 77 } >> 78 >> 79 inline >> 80 G4VPhysicalVolume* G4VPhysicalVolume::GetMother() const 50 { 81 { 51 flogical = pLogical; << 82 return fpmother; >> 83 } >> 84 >> 85 inline >> 86 void G4VPhysicalVolume::SetMother(G4VPhysicalVolume *pMother) >> 87 { >> 88 fpmother=pMother; 52 } 89 } 53 90 54 inline 91 inline 55 G4LogicalVolume* G4VPhysicalVolume::GetMotherL 92 G4LogicalVolume* G4VPhysicalVolume::GetMotherLogical() const 56 { 93 { 57 return flmother; 94 return flmother; 58 } 95 } 59 96 60 inline 97 inline 61 void G4VPhysicalVolume::SetMotherLogical(G4Log << 98 void G4VPhysicalVolume::SetMotherLogical(G4LogicalVolume *pMother) 62 { 99 { 63 flmother = pMother; << 100 flmother=pMother; 64 } 101 } 65 102 66 inline 103 inline 67 const G4String& G4VPhysicalVolume::GetName() c << 104 G4String G4VPhysicalVolume::GetName() const 68 { 105 { 69 return fname; 106 return fname; 70 } 107 } 71 108 72 inline 109 inline 73 EVolume G4VPhysicalVolume::DeduceVolumeType() << 110 void G4VPhysicalVolume::SetName(const G4String& pName) 74 { 111 { 75 EVolume type; << 112 fname=pName; 76 EAxis axis; << 113 } 77 G4int nReplicas; << 114 78 G4double width,offset; << 115 inline 79 G4bool consuming; << 116 G4RotationMatrix G4VPhysicalVolume::GetObjectRotationValue() const 80 if ( IsReplicated() ) << 117 { 81 { << 118 G4RotationMatrix aRotM; // Initialised to identity 82 GetReplicationData(axis,nReplicas,width,of << 119 83 type = (consuming) ? kReplica : kParameter << 120 // Insure against frot being a null pointer 84 } << 121 if(frot) 85 else << 86 { 122 { 87 type = kNormal; << 123 aRotM= frot->inverse(); 88 } 124 } 89 return type; << 125 return aRotM; >> 126 } >> 127 >> 128 inline >> 129 G4ThreeVector G4VPhysicalVolume::GetObjectTranslation() const >> 130 { >> 131 return ftrans; >> 132 } >> 133 >> 134 inline >> 135 const G4RotationMatrix* G4VPhysicalVolume::GetFrameRotation() const >> 136 { >> 137 return frot; >> 138 } >> 139 >> 140 inline >> 141 G4ThreeVector G4VPhysicalVolume::GetFrameTranslation() const >> 142 { >> 143 return -ftrans; 90 } 144 } 91 145