Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // class G4VPhysicalVolume inline implementati << 26 // >> 27 // $Id: G4VPhysicalVolume.icc 74466 2013-10-07 15:36:32Z gcosmo $ >> 28 // >> 29 // >> 30 // class G4VPhysicalVolume Inline Implementation 27 // 31 // 28 // ------------------------------------------- 32 // -------------------------------------------------------------------- 29 33 >> 34 // These macros change the references to fields that are now encapsulated >> 35 // in the class G4PVData. >> 36 // >> 37 #define G4MT_rot ((subInstanceManager.offset[instanceID]).frot) >> 38 #define G4MT_trans ((subInstanceManager.offset[instanceID]).ftrans) >> 39 >> 40 #define G4MT_pvdata (subInstanceManager.offset[instanceID]) >> 41 30 inline 42 inline 31 G4bool G4VPhysicalVolume::operator == (const G 43 G4bool G4VPhysicalVolume::operator == (const G4VPhysicalVolume& right) const 32 { 44 { 33 return this==&right; << 45 return (this==&right) ? true : false; 34 } 46 } 35 47 36 inline 48 inline 37 G4int G4VPhysicalVolume::GetInstanceID() const 49 G4int G4VPhysicalVolume::GetInstanceID() const 38 { 50 { 39 return instanceID; 51 return instanceID; 40 } 52 } 41 53 >> 54 >> 55 inline >> 56 const G4ThreeVector& G4VPhysicalVolume::GetTranslation() const >> 57 { >> 58 return G4MT_trans; >> 59 } >> 60 >> 61 inline >> 62 void G4VPhysicalVolume::SetTranslation(const G4ThreeVector &vec) >> 63 { >> 64 G4MT_trans=vec; >> 65 } >> 66 >> 67 inline >> 68 const G4RotationMatrix* G4VPhysicalVolume::GetRotation() const >> 69 { >> 70 return G4MT_rot; >> 71 } >> 72 >> 73 inline >> 74 G4RotationMatrix* G4VPhysicalVolume::GetRotation() >> 75 { >> 76 return G4MT_rot; >> 77 } >> 78 >> 79 inline >> 80 void G4VPhysicalVolume::SetRotation(G4RotationMatrix *pRot) >> 81 { >> 82 G4MT_rot=pRot; >> 83 } >> 84 42 inline 85 inline 43 G4LogicalVolume* G4VPhysicalVolume::GetLogical 86 G4LogicalVolume* G4VPhysicalVolume::GetLogicalVolume() const 44 { 87 { 45 return flogical; 88 return flogical; 46 } 89 } 47 90 48 inline 91 inline 49 void G4VPhysicalVolume::SetLogicalVolume(G4Log << 92 void G4VPhysicalVolume::SetLogicalVolume(G4LogicalVolume *pLogical) 50 { 93 { 51 flogical = pLogical; << 94 flogical=pLogical; 52 } 95 } 53 96 54 inline 97 inline 55 G4LogicalVolume* G4VPhysicalVolume::GetMotherL 98 G4LogicalVolume* G4VPhysicalVolume::GetMotherLogical() const 56 { 99 { 57 return flmother; 100 return flmother; 58 } 101 } 59 102 60 inline 103 inline 61 void G4VPhysicalVolume::SetMotherLogical(G4Log << 104 void G4VPhysicalVolume::SetMotherLogical(G4LogicalVolume *pMother) 62 { 105 { 63 flmother = pMother; << 106 flmother=pMother; 64 } 107 } 65 108 66 inline 109 inline 67 const G4String& G4VPhysicalVolume::GetName() c 110 const G4String& G4VPhysicalVolume::GetName() const 68 { 111 { 69 return fname; 112 return fname; 70 } 113 } 71 114 72 inline 115 inline 73 EVolume G4VPhysicalVolume::DeduceVolumeType() << 116 void G4VPhysicalVolume::SetName(const G4String& pName) >> 117 { >> 118 fname=pName; >> 119 } >> 120 >> 121 inline >> 122 EVolume G4VPhysicalVolume::VolumeType() const 74 { 123 { 75 EVolume type; 124 EVolume type; 76 EAxis axis; 125 EAxis axis; 77 G4int nReplicas; 126 G4int nReplicas; 78 G4double width,offset; 127 G4double width,offset; 79 G4bool consuming; 128 G4bool consuming; 80 if ( IsReplicated() ) 129 if ( IsReplicated() ) 81 { 130 { 82 GetReplicationData(axis,nReplicas,width,of 131 GetReplicationData(axis,nReplicas,width,offset,consuming); 83 type = (consuming) ? kReplica : kParameter 132 type = (consuming) ? kReplica : kParameterised; 84 } 133 } 85 else 134 else 86 { 135 { 87 type = kNormal; 136 type = kNormal; 88 } 137 } 89 return type; 138 return type; 90 } 139 } >> 140 >> 141 inline >> 142 G4RotationMatrix G4VPhysicalVolume::GetObjectRotationValue() const >> 143 { >> 144 G4RotationMatrix aRotM; // Initialised to identity >> 145 >> 146 // Insure against G4MT_rot being a null pointer >> 147 if(G4MT_rot) >> 148 { >> 149 aRotM= G4MT_rot->inverse(); >> 150 } >> 151 return aRotM; >> 152 } >> 153 >> 154 inline >> 155 G4ThreeVector G4VPhysicalVolume::GetObjectTranslation() const >> 156 { >> 157 return G4MT_trans; >> 158 } >> 159 >> 160 inline >> 161 const G4RotationMatrix* G4VPhysicalVolume::GetFrameRotation() const >> 162 { >> 163 return G4MT_rot; >> 164 } >> 165 >> 166 inline >> 167 G4ThreeVector G4VPhysicalVolume::GetFrameTranslation() const >> 168 { >> 169 return -G4MT_trans; >> 170 } >> 171 >> 172 #undef G4MT_rot >> 173 #undef G4MT_trans 91 174