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 // G4VDivisionParameterisation implementation << 27 // 23 // 28 // 26.05.03 - P.Arce, Initial version << 24 // $Id: G4VDivisionParameterisation.cc,v 1.8 2003/11/19 11:51:23 gcosmo Exp $ 29 // 08.04.04 - I.Hrivnacova, Implemented reflec << 25 // GEANT4 tag $Name: geant4-06-00-patch-01 $ 30 // 21.04.10 - M.Asai, Added gaps << 26 // 31 // ------------------------------------------- << 27 // class G4VDivisionParameterisation Implementation file >> 28 // >> 29 // 26.05.03 - P.Arce Initial version >> 30 // ******************************************************************** 32 31 33 #include "G4VDivisionParameterisation.hh" 32 #include "G4VDivisionParameterisation.hh" 34 #include "G4VSolid.hh" 33 #include "G4VSolid.hh" 35 #include "G4VPhysicalVolume.hh" 34 #include "G4VPhysicalVolume.hh" 36 #include "G4RotationMatrix.hh" 35 #include "G4RotationMatrix.hh" 37 #include "G4ReflectedSolid.hh" << 38 #include "G4GeometryTolerance.hh" << 39 #include "G4AutoDelete.hh" << 40 36 41 const G4int G4VDivisionParameterisation::verbo << 37 G4int G4VDivisionParameterisation::verbose = 5; 42 G4ThreadLocal G4RotationMatrix* G4VDivisionPar << 43 38 44 //-------------------------------------------- 39 //-------------------------------------------------------------------------- 45 G4VDivisionParameterisation:: 40 G4VDivisionParameterisation:: 46 G4VDivisionParameterisation( EAxis axis, G4int 41 G4VDivisionParameterisation( EAxis axis, G4int nDiv, 47 G4double step, G4 42 G4double step, G4double offset, 48 DivisionType divT 43 DivisionType divType, G4VSolid* motherSolid ) 49 : faxis(axis), fnDiv( nDiv), fwidth(step), f << 44 : faxis(axis), fnDiv( nDiv), fwidth(step), 50 fDivisionType(divType), fmotherSolid( moth << 45 foffset(offset), fDivisionType(divType), fmotherSolid( motherSolid ) 51 { 46 { 52 #ifdef G4DIVDEBUG 47 #ifdef G4DIVDEBUG 53 if (verbose >= 1) 48 if (verbose >= 1) 54 { 49 { 55 G4cout << " G4VDivisionParameterisation n 50 G4cout << " G4VDivisionParameterisation no divisions " << fnDiv 56 << " = " << nDiv << G4endl 51 << " = " << nDiv << G4endl 57 << " offset " << foffset << " = " < 52 << " offset " << foffset << " = " << offset << G4endl 58 << " step " << fwidth << " = " << s 53 << " step " << fwidth << " = " << step << G4endl; 59 } 54 } 60 #endif 55 #endif 61 kCarTolerance = G4GeometryTolerance::GetInst << 56 >> 57 theVoluFirstCopyNo = 1; 62 } 58 } 63 59 64 //-------------------------------------------- 60 //-------------------------------------------------------------------------- 65 G4VDivisionParameterisation::~G4VDivisionParam 61 G4VDivisionParameterisation::~G4VDivisionParameterisation() 66 { 62 { 67 if (fDeleteSolid) { delete fmotherSolid; } << 68 } 63 } 69 64 70 //-------------------------------------------- 65 //-------------------------------------------------------------------------- 71 G4VSolid* << 72 G4VDivisionParameterisation:: << 73 ComputeSolid( const G4int i, G4VPhysicalVolume << 74 { << 75 G4VSolid* solid = G4VPVParameterisation::Com << 76 if (solid->GetEntityType() == "G4ReflectedSo << 77 { << 78 solid = ((G4ReflectedSolid*)solid)->GetCon << 79 } << 80 return solid; << 81 } << 82 << 83 //-------------------------------------------- << 84 void 66 void 85 G4VDivisionParameterisation:: 67 G4VDivisionParameterisation:: 86 ChangeRotMatrix( G4VPhysicalVolume* physVol, G << 68 ChangeRotMatrix( G4VPhysicalVolume *physVol, G4double rotZ ) const 87 { 69 { 88 if (fRot == nullptr) << 70 G4RotationMatrix* rm = new G4RotationMatrix(); 89 { << 71 rm->rotateZ( rotZ ); 90 fRot = new G4RotationMatrix(); << 72 //----- set rotation 91 G4AutoDelete::Register(fRot); << 73 //----- delete first old rotation matrix 92 } << 74 G4RotationMatrix* rmold = physVol->GetRotation(); 93 fRot->rotateZ( rotZ ); << 75 delete rmold; 94 physVol->SetRotation(fRot); << 76 physVol->SetRotation(rm); 95 } 77 } 96 78 97 //-------------------------------------------- 79 //-------------------------------------------------------------------------- 98 G4int 80 G4int 99 G4VDivisionParameterisation:: 81 G4VDivisionParameterisation:: 100 CalculateNDiv( G4double motherDim, G4double wi 82 CalculateNDiv( G4double motherDim, G4double width, G4double offset ) const 101 { 83 { 102 #ifdef G4DIVDEBUG 84 #ifdef G4DIVDEBUG 103 G4cout << " G4VDivisionParameterisation::Cal 85 G4cout << " G4VDivisionParameterisation::CalculateNDiv: " 104 << ( motherDim - offset ) / width 86 << ( motherDim - offset ) / width 105 << " Motherdim: " << motherDim << ", 87 << " Motherdim: " << motherDim << ", Offset: " << offset 106 << ", Width: " << width << G4endl; 88 << ", Width: " << width << G4endl; 107 #endif 89 #endif 108 90 109 return G4int( ( motherDim - offset ) / width 91 return G4int( ( motherDim - offset ) / width ); 110 } 92 } 111 93 112 //-------------------------------------------- 94 //-------------------------------------------------------------------------- 113 G4double 95 G4double 114 G4VDivisionParameterisation:: 96 G4VDivisionParameterisation:: 115 CalculateWidth( G4double motherDim, G4int nDiv 97 CalculateWidth( G4double motherDim, G4int nDiv, G4double offset ) const 116 { 98 { 117 #ifdef G4DIVDEBUG 99 #ifdef G4DIVDEBUG 118 G4cout << " G4VDivisionParameterisation::Cal 100 G4cout << " G4VDivisionParameterisation::CalculateWidth: " 119 << ( motherDim - offset ) / nDiv 101 << ( motherDim - offset ) / nDiv 120 << ", Motherdim: " << motherDim << ", 102 << ", Motherdim: " << motherDim << ", Offset: " << offset 121 << ", Number of divisions: " << nDiv 103 << ", Number of divisions: " << nDiv << G4endl; 122 #endif 104 #endif 123 105 124 return ( motherDim - offset ) / nDiv; 106 return ( motherDim - offset ) / nDiv; 125 } 107 } 126 108 127 //-------------------------------------------- 109 //-------------------------------------------------------------------------- 128 void G4VDivisionParameterisation::CheckParamet 110 void G4VDivisionParameterisation::CheckParametersValidity() 129 { 111 { 130 G4double maxPar = GetMaxParameter(); 112 G4double maxPar = GetMaxParameter(); 131 CheckOffset( maxPar ); 113 CheckOffset( maxPar ); 132 CheckNDivAndWidth( maxPar ); 114 CheckNDivAndWidth( maxPar ); 133 } 115 } 134 116 135 //-------------------------------------------- 117 //-------------------------------------------------------------------------- 136 void G4VDivisionParameterisation::CheckOffset( 118 void G4VDivisionParameterisation::CheckOffset( G4double maxPar ) 137 { 119 { 138 if( foffset >= maxPar ) 120 if( foffset >= maxPar ) 139 { 121 { 140 std::ostringstream message; << 122 G4cerr << "ERROR - G4VDivisionParameterisation::CheckOffset()" << G4endl 141 message << "Configuration not supported." << 123 << " Division of solid " << fmotherSolid->GetName() 142 << "Division of solid " << fmother << 124 << " has too big offset = " << G4endl 143 << " has too big offset = " << G4e << 125 << " " << foffset << " > " << maxPar << " !" << G4endl; 144 << " " << foffset << " > " << 145 G4Exception("G4VDivisionParameterisation:: 126 G4Exception("G4VDivisionParameterisation::CheckOffset()", 146 "GeomDiv0001", FatalException, << 127 "IllegalConstruct", FatalException, >> 128 "Not supported configuration."); 147 } 129 } 148 } 130 } 149 131 150 //-------------------------------------------- 132 //-------------------------------------------------------------------------- 151 void G4VDivisionParameterisation::CheckNDivAnd 133 void G4VDivisionParameterisation::CheckNDivAndWidth( G4double maxPar ) 152 { 134 { 153 if( (fDivisionType == DivNDIVandWIDTH) 135 if( (fDivisionType == DivNDIVandWIDTH) 154 && (foffset + fwidth*fnDiv - maxPar > kC 136 && (foffset + fwidth*fnDiv - maxPar > kCarTolerance ) ) 155 { 137 { 156 std::ostringstream message; << 138 G4cerr << "ERROR - G4VDivisionParameterisation::CheckNDivAndWidth()" 157 message << "Configuration not supported." << 139 << G4endl 158 << "Division of solid " << fmother << 140 << " Division of solid " << fmotherSolid->GetName() 159 << " has too big offset + width*nDi 141 << " has too big offset + width*nDiv = " << G4endl 160 << " " << foffset + fwidth*f 142 << " " << foffset + fwidth*fnDiv << " > " 161 << foffset << ". Width = " 143 << foffset << ". Width = " 162 << G4endl 144 << G4endl 163 << " " << fwidth << ". nDiv << 145 << " " << fwidth << ". nDiv = " << fnDiv << " !" >> 146 << G4endl; 164 G4Exception("G4VDivisionParameterisation:: 147 G4Exception("G4VDivisionParameterisation::CheckNDivAndWidth()", 165 "GeomDiv0001", FatalException, << 148 "IllegalConstruct", FatalException, >> 149 "Not supported configuration."); 166 } 150 } 167 } 151 } 168 << 169 //-------------------------------------------- << 170 G4double G4VDivisionParameterisation::OffsetZ( << 171 { << 172 // take into account reflection in the offse << 173 << 174 G4double offset = foffset; << 175 if (fReflectedSolid) << 176 { << 177 offset = GetMaxParameter() - fwidth*fnDiv << 178 } << 179 << 180 return offset; << 181 } << 182 << 183 << 184 152