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 // >> 27 // $Id: G4VPhysicalVolume.cc 103096 2017-03-15 15:21:33Z gcosmo $ >> 28 // >> 29 // 26 // class G4VPhysicalVolume Implementation 30 // class G4VPhysicalVolume Implementation 27 // 31 // 28 // 15.01.13, G.Cosmo, A.Dotti: Modified for th << 29 // 28.08.96, P.Kent: Replaced transform by rot << 30 // 25.07.96, P.Kent: Modified interface for ne << 31 // 24.07.95, P.Kent: First non-stub version << 32 // ------------------------------------------- 32 // -------------------------------------------------------------------- 33 33 34 #include "G4VPhysicalVolume.hh" 34 #include "G4VPhysicalVolume.hh" 35 35 36 #include "G4PhysicalVolumeStore.hh" 36 #include "G4PhysicalVolumeStore.hh" 37 #include "G4LogicalVolume.hh" 37 #include "G4LogicalVolume.hh" 38 38 39 // This new field helps to use the class G4PVM 39 // This new field helps to use the class G4PVManager 40 // 40 // 41 G4PVManager G4VPhysicalVolume::subInstanceMana 41 G4PVManager G4VPhysicalVolume::subInstanceManager; 42 42 43 // These macros change the references to field 43 // These macros change the references to fields that are now encapsulated 44 // in the class G4PVData. 44 // in the class G4PVData. 45 // 45 // 46 #define G4MT_rot ((subInstanceManager.offset[i 46 #define G4MT_rot ((subInstanceManager.offset[instanceID]).frot) 47 #define G4MT_tx ((subInstanceManager.offset[in << 47 #define G4MT_trans ((subInstanceManager.offset[instanceID]).ftrans) 48 #define G4MT_ty ((subInstanceManager.offset[in << 49 #define G4MT_tz ((subInstanceManager.offset[in << 50 #define G4MT_pvdata (subInstanceManager.offset 48 #define G4MT_pvdata (subInstanceManager.offset[instanceID]) 51 49 52 // Constructor: init parameters and register i 50 // Constructor: init parameters and register in Store 53 // 51 // 54 G4VPhysicalVolume::G4VPhysicalVolume( G4Rotati << 52 G4VPhysicalVolume::G4VPhysicalVolume( G4RotationMatrix *pRot, 55 const G4ThreeV << 53 const G4ThreeVector &tlate, 56 const G4String 54 const G4String& pName, 57 G4Logica 55 G4LogicalVolume* pLogical, 58 G4VPhysi 56 G4VPhysicalVolume* ) 59 : flogical(pLogical), fname(pName) << 57 : flogical(pLogical), >> 58 fname(pName), flmother(0) 60 { 59 { 61 instanceID = subInstanceManager.CreateSubIns 60 instanceID = subInstanceManager.CreateSubInstance(); 62 61 63 this->SetRotation( pRot ); // G4MT_rot 62 this->SetRotation( pRot ); // G4MT_rot = pRot; 64 this->SetTranslation( tlate ); // G4MT_tra 63 this->SetTranslation( tlate ); // G4MT_trans = tlate; 65 64 66 // Initialize 'Shadow' data structure - for 65 // Initialize 'Shadow' data structure - for use by object persistency 67 pvdata = new G4PVData(); 66 pvdata = new G4PVData(); 68 pvdata->frot = pRot; 67 pvdata->frot = pRot; 69 pvdata->tx = tlate.x(); << 68 pvdata->ftrans = G4ThreeVector(tlate); 70 pvdata->ty = tlate.y(); << 71 pvdata->tz = tlate.z(); << 72 69 73 G4PhysicalVolumeStore::Register(this); 70 G4PhysicalVolumeStore::Register(this); 74 } 71 } 75 72 76 // Fake default constructor - sets only member 73 // Fake default constructor - sets only member data and allocates memory 77 // for usage restri 74 // for usage restricted to object persistency. 78 // 75 // 79 G4VPhysicalVolume::G4VPhysicalVolume( __void__ 76 G4VPhysicalVolume::G4VPhysicalVolume( __void__& ) 80 : fname("") << 77 : flogical(0), fname(""), flmother(0), pvdata(0) 81 { 78 { 82 // Register to store 79 // Register to store 83 // 80 // 84 instanceID = subInstanceManager.CreateSubIns 81 instanceID = subInstanceManager.CreateSubInstance(); 85 82 86 G4PhysicalVolumeStore::Register(this); 83 G4PhysicalVolumeStore::Register(this); 87 } 84 } 88 85 89 // Destructor - remove from Store 86 // Destructor - remove from Store 90 // 87 // 91 G4VPhysicalVolume::~G4VPhysicalVolume() 88 G4VPhysicalVolume::~G4VPhysicalVolume() 92 { 89 { 93 delete pvdata; 90 delete pvdata; 94 G4PhysicalVolumeStore::DeRegister(this); 91 G4PhysicalVolumeStore::DeRegister(this); 95 } 92 } 96 93 97 // Set volume name and notify store of the cha << 98 // << 99 void G4VPhysicalVolume::SetName(const G4String << 100 { << 101 fname = pName; << 102 G4PhysicalVolumeStore::GetInstance()->SetMap << 103 } << 104 << 105 // This method is similar to the constructor. 94 // This method is similar to the constructor. It is used by each worker 106 // thread to achieve the same effect as that o 95 // thread to achieve the same effect as that of the master thread exept 107 // to register the new created instance. This 96 // to register the new created instance. This method is invoked explicitly. 108 // It does not create a new G4VPhysicalVolume 97 // It does not create a new G4VPhysicalVolume instance. 109 // It only assign the value for the fields enc 98 // It only assign the value for the fields encapsulated by the class G4PVData. 110 // 99 // 111 void G4VPhysicalVolume:: 100 void G4VPhysicalVolume:: 112 InitialiseWorker( G4VPhysicalVolume* /*pMaster 101 InitialiseWorker( G4VPhysicalVolume* /*pMasterObject*/, 113 G4RotationMatrix *pRot, 102 G4RotationMatrix *pRot, 114 const G4ThreeVector &tlate) 103 const G4ThreeVector &tlate) 115 { 104 { 116 subInstanceManager.SlaveCopySubInstanceArray 105 subInstanceManager.SlaveCopySubInstanceArray(); 117 106 118 this->SetRotation( pRot ); // G4MT_rot 107 this->SetRotation( pRot ); // G4MT_rot = pRot; 119 this->SetTranslation( tlate ); // G4MT_tran 108 this->SetTranslation( tlate ); // G4MT_trans = tlate; 120 // G4PhysicalVolumeStore::Register(this); 109 // G4PhysicalVolumeStore::Register(this); 121 } 110 } 122 111 123 // Release memory allocated for offset 112 // Release memory allocated for offset 124 // 113 // 125 void G4VPhysicalVolume::Clean() 114 void G4VPhysicalVolume::Clean() 126 { 115 { 127 subInstanceManager.FreeSlave(); 116 subInstanceManager.FreeSlave(); 128 } 117 } 129 118 130 // This method is similar to the destructor. I 119 // This method is similar to the destructor. It is used by each worker 131 // thread to achieve the partial effect as tha 120 // thread to achieve the partial effect as that of the master thread. 132 // For G4VPhysicalVolume instances, nothing mo 121 // For G4VPhysicalVolume instances, nothing more to do here. 133 // 122 // 134 void G4VPhysicalVolume::TerminateWorker( G4VPh 123 void G4VPhysicalVolume::TerminateWorker( G4VPhysicalVolume* /*pMasterObject*/) 135 { 124 { 136 } 125 } 137 126 138 // Returns the private data instance manager. 127 // Returns the private data instance manager. 139 // 128 // 140 const G4PVManager& G4VPhysicalVolume::GetSubIn 129 const G4PVManager& G4VPhysicalVolume::GetSubInstanceManager() 141 { 130 { 142 return subInstanceManager; 131 return subInstanceManager; 143 } 132 } 144 133 145 G4int G4VPhysicalVolume::GetMultiplicity() con 134 G4int G4VPhysicalVolume::GetMultiplicity() const 146 { 135 { 147 return 1; 136 return 1; 148 } 137 } 149 138 150 const G4ThreeVector G4VPhysicalVolume::GetTran << 139 const G4ThreeVector& G4VPhysicalVolume::GetTranslation() const 151 { 140 { 152 return G4ThreeVector(G4MT_tx, G4MT_ty, G4MT_ << 141 return G4MT_trans; 153 } 142 } 154 143 155 void G4VPhysicalVolume::SetTranslation(const G 144 void G4VPhysicalVolume::SetTranslation(const G4ThreeVector &vec) 156 { 145 { 157 G4MT_tx=vec.x(); G4MT_ty=vec.y(); G4MT_tz=ve << 146 G4MT_trans=vec; 158 } 147 } 159 148 160 const G4RotationMatrix* G4VPhysicalVolume::Get 149 const G4RotationMatrix* G4VPhysicalVolume::GetRotation() const 161 { 150 { 162 return G4MT_rot; 151 return G4MT_rot; 163 } 152 } 164 153 165 G4RotationMatrix* G4VPhysicalVolume::GetRotati 154 G4RotationMatrix* G4VPhysicalVolume::GetRotation() 166 { 155 { 167 return G4MT_rot; 156 return G4MT_rot; 168 } 157 } 169 158 170 void G4VPhysicalVolume::SetRotation(G4Rotation 159 void G4VPhysicalVolume::SetRotation(G4RotationMatrix *pRot) 171 { 160 { 172 G4MT_rot = pRot; << 161 G4MT_rot=pRot; 173 } 162 } 174 163 175 G4RotationMatrix* G4VPhysicalVolume::GetObject 164 G4RotationMatrix* G4VPhysicalVolume::GetObjectRotation() const 176 { 165 { 177 static G4RotationMatrix aRotM; 166 static G4RotationMatrix aRotM; 178 static G4RotationMatrix IdentityRM; 167 static G4RotationMatrix IdentityRM; 179 168 180 G4RotationMatrix* retval = &IdentityRM; 169 G4RotationMatrix* retval = &IdentityRM; 181 170 182 // Insure against frot being a null pointer 171 // Insure against frot being a null pointer 183 if(this->GetRotation() != nullptr) << 172 if(this->GetRotation()) 184 { 173 { 185 aRotM = GetRotation()->inverse(); 174 aRotM = GetRotation()->inverse(); 186 retval= &aRotM; 175 retval= &aRotM; 187 } 176 } 188 return retval; 177 return retval; 189 } 178 } 190 179 191 G4RotationMatrix G4VPhysicalVolume::GetObjectR 180 G4RotationMatrix G4VPhysicalVolume::GetObjectRotationValue() const 192 { 181 { 193 G4RotationMatrix aRotM; // Initialised to << 182 G4RotationMatrix aRotM; // Initialised to identity 194 183 195 // Insure against G4MT_rot being a null poin 184 // Insure against G4MT_rot being a null pointer 196 if(G4MT_rot) 185 if(G4MT_rot) 197 { 186 { 198 aRotM = G4MT_rot->inverse(); << 187 aRotM= G4MT_rot->inverse(); 199 } 188 } 200 return aRotM; 189 return aRotM; 201 } 190 } 202 191 203 G4ThreeVector G4VPhysicalVolume::GetObjectTra 192 G4ThreeVector G4VPhysicalVolume::GetObjectTranslation() const 204 { 193 { 205 return {G4MT_tx, G4MT_ty, G4MT_tz}; << 194 return G4MT_trans; 206 } 195 } 207 196 208 const G4RotationMatrix* G4VPhysicalVolume::Get 197 const G4RotationMatrix* G4VPhysicalVolume::GetFrameRotation() const 209 { 198 { 210 return G4MT_rot; 199 return G4MT_rot; 211 } 200 } 212 201 213 G4ThreeVector G4VPhysicalVolume::GetFrameTran 202 G4ThreeVector G4VPhysicalVolume::GetFrameTranslation() const 214 { 203 { 215 return -G4ThreeVector(G4MT_tx, G4MT_ty, G4MT << 204 return -G4MT_trans; 216 } 205 } 217 206 218 // Only implemented for placed and parameteris 207 // Only implemented for placed and parameterised volumes. 219 // Not required for replicas. 208 // Not required for replicas. 220 // 209 // 221 G4bool G4VPhysicalVolume::CheckOverlaps(G4int, 210 G4bool G4VPhysicalVolume::CheckOverlaps(G4int, G4double, G4bool, G4int) 222 { 211 { 223 return false; 212 return false; 224 } 213 } 225 214