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 // G4tgrLineProcessor << 27 // 26 // 28 // Author: P.Arce, CIEMAT (November 2007) << 27 // 29 // ------------------------------------------- << 28 // class G4tgrLineProcessor 30 29 31 #include "G4tgrLineProcessor.hh" << 30 // History: >> 31 // - Created. P.Arce, CIEMAT (November 2007) >> 32 // ------------------------------------------------------------------------- 32 33 33 #include "G4SystemOfUnits.hh" << 34 #include "G4tgrLineProcessor.hh" 34 #include "G4tgrParameterMgr.hh" 35 #include "G4tgrParameterMgr.hh" 35 #include "G4tgrFileIn.hh" 36 #include "G4tgrFileIn.hh" 36 #include "G4tgrElementSimple.hh" 37 #include "G4tgrElementSimple.hh" 37 #include "G4tgrElementFromIsotopes.hh" 38 #include "G4tgrElementFromIsotopes.hh" 38 #include "G4tgrVolume.hh" 39 #include "G4tgrVolume.hh" 39 #include "G4tgrVolumeDivision.hh" 40 #include "G4tgrVolumeDivision.hh" 40 #include "G4tgrVolumeAssembly.hh" 41 #include "G4tgrVolumeAssembly.hh" 41 #include "G4tgrPlaceDivRep.hh" 42 #include "G4tgrPlaceDivRep.hh" 42 #include "G4tgrPlaceParameterisation.hh" 43 #include "G4tgrPlaceParameterisation.hh" 43 #include "G4tgrVolumeMgr.hh" 44 #include "G4tgrVolumeMgr.hh" 44 #include "G4tgrUtils.hh" 45 #include "G4tgrUtils.hh" 45 #include "G4tgrMaterialFactory.hh" 46 #include "G4tgrMaterialFactory.hh" 46 #include "G4tgrRotationMatrixFactory.hh" 47 #include "G4tgrRotationMatrixFactory.hh" 47 #include "G4tgrMessenger.hh" 48 #include "G4tgrMessenger.hh" 48 49 49 // ------------------------------------------- << 50 >> 51 //--------------------------------------------------------------- 50 G4tgrLineProcessor::G4tgrLineProcessor() 52 G4tgrLineProcessor::G4tgrLineProcessor() 51 { 53 { 52 volmgr = G4tgrVolumeMgr::GetInstance(); 54 volmgr = G4tgrVolumeMgr::GetInstance(); 53 } 55 } 54 56 55 // ------------------------------------------- << 57 >> 58 //--------------------------------------------------------------- 56 G4tgrLineProcessor::~G4tgrLineProcessor() 59 G4tgrLineProcessor::~G4tgrLineProcessor() 57 { 60 { 58 } 61 } 59 62 60 // ------------------------------------------- << 63 61 G4bool G4tgrLineProcessor::ProcessLine(const s << 64 //--------------------------------------------------------------- >> 65 G4bool G4tgrLineProcessor::ProcessLine( const std::vector<G4String>& wl ) 62 { 66 { 63 #ifdef G4VERBOSE 67 #ifdef G4VERBOSE 64 if(G4tgrMessenger::GetVerboseLevel() >= 1) << 68 if( G4tgrMessenger::GetVerboseLevel() >= 1 ) 65 { 69 { 66 G4tgrUtils::DumpVS(wl, "@@@ Processing inp 70 G4tgrUtils::DumpVS(wl, "@@@ Processing input line"); 67 } 71 } 68 #endif << 72 #endif 69 73 70 G4String wl0 = wl[0]; 74 G4String wl0 = wl[0]; 71 for(G4int ii = 0; ii < (G4int)wl0.length(); << 75 for( size_t ii = 0; ii < wl0.length(); ii++ ) 72 { 76 { 73 wl0[ii] = (char)std::toupper(wl0[ii]); << 77 wl0[ii] = toupper( wl0[ii] ); 74 } 78 } 75 79 76 //------------------------------- parameter 80 //------------------------------- parameter number 77 if(wl0 == ":P") << 81 if( wl0 == ":P" ) 78 { 82 { 79 G4tgrParameterMgr::GetInstance()->AddParam << 83 G4tgrParameterMgr::GetInstance()->AddParameterNumber( wl ); 80 << 84 81 //------------------------------- paramete << 85 //------------------------------- parameter string 82 } 86 } 83 else if(wl0 == ":PS") << 87 else if( wl0 == ":PS" ) 84 { 88 { 85 G4tgrParameterMgr::GetInstance()->AddParam << 89 G4tgrParameterMgr::GetInstance()->AddParameterString( wl ); 86 90 87 //------------------------------- isotope << 91 //------------------------------- isotope 88 } 92 } 89 else if(wl0 == ":ISOT") << 93 else if( wl0 == ":ISOT" ) 90 { 94 { 91 G4tgrIsotope* isot = G4tgrMaterialFactory: << 95 G4tgrIsotope* isot = G4tgrMaterialFactory::GetInstance() 92 volmgr->RegisterMe(isot); << 96 ->AddIsotope( wl ); >> 97 volmgr->RegisterMe( isot ); 93 98 94 //------------------------------- element << 99 //------------------------------- element 95 } 100 } 96 else if(wl0 == ":ELEM") << 101 else if( wl0 == ":ELEM" ) 97 { 102 { 98 G4tgrElementSimple* elem = << 103 G4tgrElementSimple* elem = G4tgrMaterialFactory::GetInstance() 99 G4tgrMaterialFactory::GetInstance()->Add << 104 ->AddElementSimple( wl ); 100 volmgr->RegisterMe(elem); << 105 volmgr->RegisterMe( elem ); 101 106 102 //------------------------------- element << 107 //------------------------------- element from isotopes 103 } 108 } 104 else if(wl0 == ":ELEM_FROM_ISOT") << 109 else if( wl0 == ":ELEM_FROM_ISOT" ) 105 { 110 { 106 //:ELEM_FROM_ISOT NAME SYMBOL N_ISOT (ISOT 111 //:ELEM_FROM_ISOT NAME SYMBOL N_ISOT (ISOT_NAME ISOT_ABUNDANCE) 107 G4tgrElementFromIsotopes* elem = << 112 G4tgrElementFromIsotopes* elem = G4tgrMaterialFactory::GetInstance() 108 G4tgrMaterialFactory::GetInstance()->Add << 113 ->AddElementFromIsotopes( wl ); 109 volmgr->RegisterMe(elem); << 114 volmgr->RegisterMe( elem ); 110 << 115 111 //------------------------------- material << 116 //------------------------------- material 112 } << 117 } 113 else if(wl0 == ":MATE") << 118 else if( wl0 == ":MATE" ) 114 { 119 { 115 G4tgrMaterialSimple* mate = << 116 G4tgrMaterialFactory::GetInstance()->Add << 117 volmgr->RegisterMe(mate); << 118 120 >> 121 G4tgrMaterialSimple* mate = G4tgrMaterialFactory::GetInstance() >> 122 ->AddMaterialSimple( wl ); >> 123 volmgr->RegisterMe( mate ); >> 124 119 //------------------------------- material 125 //------------------------------- material mixtures & by weight 120 } 126 } 121 else if((wl0 == ":MIXT") || (wl0 == ":MIXT_B << 127 else if( (wl0 == ":MIXT") || (wl0 == ":MIXT_BY_WEIGHT") ) 122 { 128 { 123 G4tgrMaterialMixture* mate = << 129 G4tgrMaterialMixture* mate = G4tgrMaterialFactory::GetInstance() 124 G4tgrMaterialFactory::GetInstance()->Add << 130 ->AddMaterialMixture( wl, "MaterialMixtureByWeight" ); 125 wl, "MaterialMixtureByWeight"); << 131 volmgr->RegisterMe( mate ); 126 volmgr->RegisterMe(mate); << 127 132 128 //------------------------------- material 133 //------------------------------- material mixture by number of atoms 129 } 134 } 130 else if(wl0 == ":MIXT_BY_NATOMS") << 135 else if( wl0 == ":MIXT_BY_NATOMS" ) 131 { 136 { 132 G4tgrMaterialMixture* mate = << 137 G4tgrMaterialMixture* mate = G4tgrMaterialFactory::GetInstance() 133 G4tgrMaterialFactory::GetInstance()->Add << 138 ->AddMaterialMixture(wl, "MaterialMixtureByNoAtoms"); 134 wl, "MaterialMixtureByNoAtoms"); << 139 volmgr->RegisterMe( mate ); 135 volmgr->RegisterMe(mate); << 136 140 137 //------------------------------- material 141 //------------------------------- material mixture by volume 138 } 142 } 139 else if(wl0 == ":MIXT_BY_VOLUME") << 143 else if( wl0 == ":MIXT_BY_VOLUME" ) 140 { 144 { 141 G4tgrMaterialMixture* mate = << 145 G4tgrMaterialMixture* mate = G4tgrMaterialFactory::GetInstance() 142 G4tgrMaterialFactory::GetInstance()->Add << 146 ->AddMaterialMixture( wl, "MaterialMixtureByVolume" ); 143 wl, "MaterialMixtureByVolume"); << 147 volmgr->RegisterMe( mate ); 144 volmgr->RegisterMe(mate); << 145 148 146 //------------------------------- material 149 //------------------------------- material Mean Excitation Energy of 147 // Ionisati 150 // Ionisation Potential 148 } 151 } 149 else if(wl0 == ":MATE_MEE") << 152 else if( wl0 == ":MATE_MEE" ) 150 { 153 { 151 G4tgrMaterial* mate = G4tgrMaterialFactory << 154 G4tgrMaterial* mate = G4tgrMaterialFactory::GetInstance() 152 G4tgrUtils::GetString(wl[1])); << 155 ->FindMaterial( G4tgrUtils::GetString( wl[1] ) ); 153 if(mate == 0) << 156 if( mate == 0 ) 154 { 157 { 155 G4Exception("G4tgrLineProcessor::Process 158 G4Exception("G4tgrLineProcessor::ProcessLine()", "Material not found", 156 FatalException, G4tgrUtils:: << 159 FatalException, G4tgrUtils::GetString( wl[1] ) ); 157 return false; << 158 } 160 } 159 mate->SetIonisationMeanExcitationEnergy(G4 << 161 mate->SetIonisationMeanExcitationEnergy( G4tgrUtils::GetDouble( wl[2] ) ); 160 << 161 //------------------------------- material << 162 } << 163 else if(wl0 == ":MATE_STATE") << 164 { << 165 G4tgrMaterial* mate = G4tgrMaterialFactory << 166 G4tgrUtils::GetString(wl[1])); << 167 if(mate == 0) << 168 { << 169 G4Exception("G4tgrLineProcessor::Process << 170 FatalException, wl[1]); << 171 } << 172 mate->SetState(wl[2]); << 173 << 174 //------------------------------- material << 175 } << 176 else if(wl0 == ":MATE_TEMPERATURE") << 177 { << 178 G4tgrMaterial* mate = G4tgrMaterialFactory << 179 G4tgrUtils::GetString(wl[1])); << 180 if(mate == 0) << 181 { << 182 G4Exception("G4tgrLineProcessor::Process << 183 FatalException, wl[1]); << 184 } << 185 mate->SetTemperature(G4tgrUtils::GetDouble << 186 << 187 //------------------------------- material << 188 } << 189 else if(wl0 == ":MATE_PRESSURE") << 190 { << 191 G4tgrMaterial* mate = G4tgrMaterialFactory << 192 G4tgrUtils::GetString(wl[1])); << 193 if(mate == 0) << 194 { << 195 G4Exception("G4tgrLineProcessor::Process << 196 FatalException, wl[1]); << 197 } << 198 mate->SetPressure(G4tgrUtils::GetDouble(wl << 199 162 200 //------------------------------- solid 163 //------------------------------- solid 201 } 164 } 202 else if(wl0 == ":SOLID") << 165 else if( wl0 == ":SOLID" ) 203 { // called from here or from G4tgrVolume:: << 166 { // called from here or from G4tgrVolume::G4tgrVolume 204 volmgr->CreateSolid(wl, 0); << 167 volmgr->CreateSolid( wl, 0 ); 205 168 206 //------------------------------- volume 169 //------------------------------- volume 207 } 170 } 208 else if(wl0 == ":VOLU") << 171 else if( wl0 == ":VOLU" ) 209 { 172 { 210 G4tgrVolume* vol = new G4tgrVolume(wl); << 173 G4tgrVolume* vol = new G4tgrVolume( wl ); 211 volmgr->RegisterMe(vol); << 174 volmgr->RegisterMe( vol ); 212 << 175 213 //--------------------------------- single 176 //--------------------------------- single placement 214 } 177 } 215 else if(wl0 == ":PLACE") << 178 else if( wl0 == ":PLACE" ) 216 { 179 { 217 G4tgrVolume* vol = FindVolume(G4tgrUtils:: << 180 G4tgrVolume* vol = FindVolume( G4tgrUtils::GetString( wl[1] ) ); 218 G4tgrPlace* vpl = vol->AddPlace(wl); << 181 G4tgrPlace* vpl = vol->AddPlace( wl ); 219 volmgr->RegisterMe(vpl); << 182 volmgr->RegisterMe( vpl ); 220 << 183 221 //--------------------------------- parame 184 //--------------------------------- parameterisation 222 } 185 } 223 else if(wl0 == ":PLACE_PARAM") << 186 else if( wl0 == ":PLACE_PARAM" ) 224 { 187 { 225 G4tgrVolume* vol = FindVolu << 188 G4tgrVolume* vol = FindVolume( G4tgrUtils::GetString( wl[1] ) ); 226 G4tgrPlaceParameterisation* vpl = vol->Add << 189 G4tgrPlaceParameterisation* vpl = vol->AddPlaceParam( wl ); 227 volmgr->RegisterMe(vpl); << 190 volmgr->RegisterMe( vpl ); 228 191 229 //--------------------------------- divisi 192 //--------------------------------- division 230 } 193 } 231 else if((wl0 == ":DIV_NDIV") || (wl0 == ":DI << 194 else if( (wl0 == ":DIV_NDIV") || (wl0 == ":DIV_WIDTH") 232 (wl0 == ":DIV_NDIV_WIDTH")) << 195 || (wl0 == ":DIV_NDIV_WIDTH") ) 233 { 196 { 234 //---------- Create G4tgrVolumeDivision an 197 //---------- Create G4tgrVolumeDivision and fill the volume params 235 G4tgrVolumeDivision* vol = new G4tgrVolume << 198 G4tgrVolumeDivision* vol = new G4tgrVolumeDivision( wl ); 236 volmgr->RegisterMe(vol); << 199 volmgr->RegisterMe( vol ); 237 200 238 //--------------------------------- replic 201 //--------------------------------- replica 239 } 202 } 240 else if(wl0 == ":REPL") << 203 else if( wl0 == ":REPL" ) 241 { 204 { 242 G4tgrVolume* vol = FindVolume(G4tgrUt << 205 G4tgrVolume* vol = FindVolume( G4tgrUtils::GetString( wl[1] ) ); 243 G4tgrPlaceDivRep* vpl = vol->AddPlaceRepli << 206 G4tgrPlaceDivRep* vpl = vol->AddPlaceReplica( wl ); 244 volmgr->RegisterMe(vpl); << 207 volmgr->RegisterMe( vpl ); 245 << 208 246 //----------------------------- assembly v 209 //----------------------------- assembly volume: definition of components 247 } 210 } 248 else if(wl0 == ":VOLU_ASSEMBLY") << 211 else if( wl0 == ":VOLU_ASSEMBLY" ) 249 { 212 { 250 G4tgrVolumeAssembly* vol = new G4tgrVolume << 213 G4tgrVolumeAssembly* vol = new G4tgrVolumeAssembly( wl ); 251 volmgr->RegisterMe(vol); << 214 volmgr->RegisterMe( vol ); 252 << 215 253 //----------------------------- assembly v 216 //----------------------------- assembly volume: definition of components 254 } 217 } 255 else if(wl0 == ":PLACE_ASSEMBLY") << 218 else if( wl0 == ":PLACE_ASSEMBLY" ) 256 { 219 { 257 G4tgrVolume* vol = FindVolume(G4tgrUtils:: << 220 G4tgrVolume* vol = FindVolume( G4tgrUtils::GetString( wl[1] ) ); 258 G4tgrPlace* vpl = vol->AddPlace(wl); << 221 G4tgrPlace* vpl = vol->AddPlace( wl ); 259 volmgr->RegisterMe(vpl); << 222 volmgr->RegisterMe( vpl ); 260 223 261 //--------------------------------- rotat 224 //--------------------------------- rotation matrix 262 } 225 } 263 else if(wl0 == ":ROTM") << 226 else if( wl0 == ":ROTM" ) 264 { 227 { 265 //---------- When second word is ':NEXT/:M 228 //---------- When second word is ':NEXT/:MNXT' it is used for defining a 266 // rotation matrix that will be 229 // rotation matrix that will be used for the next placement/s 267 G4tgrRotationMatrix* rm = << 230 G4tgrRotationMatrix* rm = G4tgrRotationMatrixFactory::GetInstance() 268 G4tgrRotationMatrixFactory::GetInstance( << 231 ->AddRotMatrix( wl ); 269 volmgr->RegisterMe(rm); << 232 volmgr->RegisterMe( rm ); 270 << 233 271 //------------------------------- visualis 234 //------------------------------- visualisation 272 } 235 } 273 else if(wl0 == ":VIS") << 236 else if( wl0 == ":VIS" ) 274 { 237 { 275 std::vector<G4tgrVolume*> vols = 238 std::vector<G4tgrVolume*> vols = 276 volmgr->FindVolumes(G4tgrUtils::GetStrin << 239 volmgr->FindVolumes( G4tgrUtils::GetString( wl[1] ), 1 ); 277 for(std::size_t ii = 0; ii < vols.size(); << 240 for( size_t ii = 0; ii < vols.size(); ii++ ) 278 { 241 { 279 vols[ii]->AddVisibility(wl); << 242 vols[ii]->AddVisibility( wl ); 280 } 243 } 281 244 282 //--------------------------------- colour 245 //--------------------------------- colour 283 } 246 } 284 else if((wl0 == ":COLOUR") || (wl0 == ":COLO << 247 else if( (wl0 == ":COLOUR") || (wl0 == ":COLOR") ) 285 { 248 { 286 std::vector<G4tgrVolume*> vols = 249 std::vector<G4tgrVolume*> vols = 287 volmgr->FindVolumes(G4tgrUtils::GetStrin << 250 volmgr->FindVolumes( G4tgrUtils::GetString( wl[1] ), 1 ); 288 for(std::size_t ii = 0; ii < vols.size(); << 251 for( size_t ii = 0; ii < vols.size(); ii++ ) 289 { 252 { 290 vols[ii]->AddRGBColour(wl); << 253 vols[ii]->AddRGBColour( wl ); 291 } 254 } 292 255 293 //--------------------------------- check 256 //--------------------------------- check overlaps 294 } 257 } 295 else if(wl0 == ":CHECK_OVERLAPS") << 258 else if( wl0 == ":CHECK_OVERLAPS" ) 296 { 259 { 297 std::vector<G4tgrVolume*> vols = 260 std::vector<G4tgrVolume*> vols = 298 volmgr->FindVolumes(G4tgrUtils::GetStrin << 261 volmgr->FindVolumes( G4tgrUtils::GetString( wl[1] ), 1 ); 299 for(std::size_t ii = 0; ii < vols.size(); << 262 for( size_t ii = 0; ii < vols.size(); ii++ ) 300 { 263 { 301 vols[ii]->AddCheckOverlaps(wl); << 264 vols[ii]->AddCheckOverlaps( wl ); 302 } 265 } 303 //--------------------------------- ERROR 266 //--------------------------------- ERROR 304 } 267 } 305 else 268 else 306 { 269 { 307 return false; << 270 return 0; 308 } << 271 } 309 272 310 return true; << 273 return 1; 311 } 274 } 312 275 313 // ------------------------------------------- << 276 314 G4tgrVolume* G4tgrLineProcessor::FindVolume(co << 277 //--------------------------------------------------------------- >> 278 G4tgrVolume* G4tgrLineProcessor::FindVolume( const G4String& volname ) 315 { 279 { 316 G4tgrVolume* vol = volmgr->FindVolume(volnam << 280 G4tgrVolume* vol=0; >> 281 >> 282 G4tgrVolume* volt = volmgr->FindVolume( volname, 1); 317 283 318 if(vol->GetType() == "VOLDivision") << 284 if( volt->GetType() == "VOLDivision" ) 319 { 285 { 320 G4Exception("G4tgrLineProcessor::FindVolum << 286 G4Exception("G4tgrLineProcessor::FindVolume()", 321 FatalException, << 287 "InvalidSetup", FatalException, 322 "Using 'PLACE' for a volume cr 288 "Using 'PLACE' for a volume created by a division !"); >> 289 } >> 290 else >> 291 { >> 292 vol = (G4tgrVolume*)volt; 323 } 293 } 324 294 325 return vol; 295 return vol; 326 } 296 } 327 297