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 // 26 // ------------------------------------------- 27 // ------------------------------------------------------------------- 27 // 28 // 28 // GEANT4 Class file 29 // GEANT4 Class file 29 // 30 // 30 // 31 // 31 // File name: G4LossTableBuilder 32 // File name: G4LossTableBuilder 32 // 33 // 33 // Author: Vladimir Ivanchenko 34 // Author: Vladimir Ivanchenko 34 // 35 // 35 // Creation date: 03.01.2002 36 // Creation date: 03.01.2002 36 // 37 // 37 // Modifications: 38 // Modifications: 38 // 39 // 39 // 23-01-03 V.Ivanchenko Cut per region 40 // 23-01-03 V.Ivanchenko Cut per region 40 // 21-07-04 V.Ivanchenko Fix problem of range 41 // 21-07-04 V.Ivanchenko Fix problem of range for dedx=0 41 // 08-11-04 Migration to new interface of Stor 42 // 08-11-04 Migration to new interface of Store/Retrieve tables (V.Ivanchenko) 42 // 07-12-04 Fix of BuildDEDX table (V.Ivanchen 43 // 07-12-04 Fix of BuildDEDX table (V.Ivanchenko) 43 // 27-03-06 Add bool options isIonisation (V.I 44 // 27-03-06 Add bool options isIonisation (V.Ivanchenko) 44 // 16-01-07 Fill new (not old) DEDX table (V.I 45 // 16-01-07 Fill new (not old) DEDX table (V.Ivanchenko) 45 // 12-02-07 Use G4LPhysicsFreeVector for the i 46 // 12-02-07 Use G4LPhysicsFreeVector for the inverse range table (V.Ivanchenko) 46 // 24-06-09 Removed hidden bin in G4PhysicsVec 47 // 24-06-09 Removed hidden bin in G4PhysicsVector (V.Ivanchenko) 47 // 48 // 48 // Class Description: 49 // Class Description: 49 // 50 // 50 // ------------------------------------------- 51 // ------------------------------------------------------------------- 51 // 52 // 52 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 53 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 54 55 55 #include "G4LossTableBuilder.hh" 56 #include "G4LossTableBuilder.hh" 56 #include "G4SystemOfUnits.hh" 57 #include "G4SystemOfUnits.hh" 57 #include "G4PhysicsTable.hh" 58 #include "G4PhysicsTable.hh" 58 #include "G4PhysicsLogVector.hh" 59 #include "G4PhysicsLogVector.hh" 59 #include "G4PhysicsTableHelper.hh" 60 #include "G4PhysicsTableHelper.hh" 60 #include "G4PhysicsFreeVector.hh" << 61 #include "G4LPhysicsFreeVector.hh" 61 #include "G4ProductionCutsTable.hh" 62 #include "G4ProductionCutsTable.hh" 62 #include "G4MaterialCutsCouple.hh" 63 #include "G4MaterialCutsCouple.hh" 63 #include "G4Material.hh" 64 #include "G4Material.hh" 64 #include "G4VEmModel.hh" 65 #include "G4VEmModel.hh" 65 #include "G4ParticleDefinition.hh" 66 #include "G4ParticleDefinition.hh" 66 #include "G4LossTableManager.hh" 67 #include "G4LossTableManager.hh" 67 #include "G4EmParameters.hh" 68 #include "G4EmParameters.hh" 68 69 69 G4bool G4LossTableBuilder::baseMatFlag = false << 70 std::vector<G4double>* G4LossTableBuilder::the << 71 std::vector<G4int>* G4LossTableBuilder::the << 72 std::vector<G4bool>* G4LossTableBuilder::the << 73 << 74 //....oooOO0OOooo........oooOO0OOooo........oo 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 75 71 76 G4LossTableBuilder::G4LossTableBuilder(G4bool << 72 G4LossTableBuilder::G4LossTableBuilder() 77 : isInitializer(master) << 78 { 73 { 79 theParameters = G4EmParameters::Instance(); 74 theParameters = G4EmParameters::Instance(); 80 if (nullptr == theFlag) { << 75 splineFlag = true; 81 theDensityFactor = new std::vector<G4doubl << 76 isInitialized = false; 82 theDensityIdx = new std::vector<G4int>; << 83 theFlag = new std::vector<G4bool>; << 84 } << 85 } << 86 << 87 //....oooOO0OOooo........oooOO0OOooo........oo << 88 77 89 G4LossTableBuilder::~G4LossTableBuilder() << 78 theDensityFactor = new std::vector<G4double>; 90 { << 79 theDensityIdx = new std::vector<G4int>; 91 if (isInitializer) { << 80 theFlag = new std::vector<G4bool>; 92 delete theDensityFactor; << 93 delete theDensityIdx; << 94 delete theFlag; << 95 theDensityFactor = nullptr; << 96 theDensityIdx = nullptr; << 97 theFlag = nullptr; << 98 } << 99 } << 100 << 101 //....oooOO0OOooo........oooOO0OOooo........oo << 102 << 103 const std::vector<G4int>* G4LossTableBuilder:: << 104 { << 105 return theDensityIdx; << 106 } << 107 << 108 //....oooOO0OOooo........oooOO0OOooo........oo << 109 << 110 const std::vector<G4double>* G4LossTableBuilde << 111 { << 112 return theDensityFactor; << 113 } 81 } 114 82 115 //....oooOO0OOooo........oooOO0OOooo........oo 83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 116 84 117 G4bool G4LossTableBuilder::GetFlag(std::size_t << 85 G4LossTableBuilder::~G4LossTableBuilder() 118 { << 119 return (idx < theFlag->size()) ? (*theFlag)[ << 120 } << 121 << 122 //....oooOO0OOooo........oooOO0OOooo........oo << 123 << 124 G4bool G4LossTableBuilder::GetBaseMaterialFlag << 125 { 86 { 126 return baseMatFlag; << 87 delete theDensityFactor; >> 88 delete theDensityIdx; >> 89 delete theFlag; 127 } 90 } 128 91 129 //....oooOO0OOooo........oooOO0OOooo........oo 92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 130 93 131 void 94 void 132 G4LossTableBuilder::BuildDEDXTable(G4PhysicsTa 95 G4LossTableBuilder::BuildDEDXTable(G4PhysicsTable* dedxTable, 133 const std:: 96 const std::vector<G4PhysicsTable*>& list) 134 { 97 { 135 InitialiseBaseMaterials(dedxTable); << 98 size_t n_processes = list.size(); 136 std::size_t n_processes = list.size(); << 99 //G4cout << "Nproc= " << n_processes << " Ncoup= " >> 100 //<< dedxTable->size() << G4endl; 137 if(1 >= n_processes) { return; } 101 if(1 >= n_processes) { return; } 138 102 139 std::size_t nCouples = dedxTable->size(); << 103 size_t nCouples = dedxTable->size(); 140 //G4cout << "Nproc= " << n_processes << " nC << 141 // << dedxTable->size() << G4endl; << 142 if(0 >= nCouples) { return; } 104 if(0 >= nCouples) { return; } 143 105 144 for (std::size_t i=0; i<nCouples; ++i) { << 106 for (size_t i=0; i<nCouples; ++i) { 145 auto pv0 = static_cast<G4PhysicsLogVector* << 107 // if ((*theFlag)[i]) { 146 //if (0 == i) G4cout << i << ". pv0=" << p << 108 G4PhysicsLogVector* pv0 = 147 if(pv0 == nullptr) { continue; } << 109 static_cast<G4PhysicsLogVector*>((*(list[0]))[i]); 148 std::size_t npoints = pv0->GetVectorLength << 110 if(pv0) { 149 auto pv = new G4PhysicsLogVector(*pv0); << 111 size_t npoints = pv0->GetVectorLength(); 150 for (std::size_t j=0; j<npoints; ++j) { << 112 G4PhysicsLogVector* pv = new G4PhysicsLogVector(*pv0); 151 G4double dedx = 0.0; << 113 pv->SetSpline(splineFlag); 152 for (std::size_t k=0; k<n_processes; ++k << 114 for (size_t j=0; j<npoints; ++j) { 153 const G4PhysicsVector* pv1 = (*(list[k]))[i] << 115 G4double dedx = 0.0; 154 //if (0 == i) G4cout << " " << k << ". p << 116 for (size_t k=0; k<n_processes; ++k) { 155 dedx += (*pv1)[j]; << 117 G4PhysicsVector* pv1 = (*(list[k]))[i]; >> 118 dedx += (*pv1)[j]; >> 119 } >> 120 pv->PutValue(j, dedx); 156 } 121 } 157 pv->PutValue(j, dedx); << 122 if(splineFlag) { pv->FillSecondDerivatives(); } >> 123 G4PhysicsTableHelper::SetPhysicsVector(dedxTable, i, pv); 158 } 124 } 159 if(splineFlag) { pv->FillSecondDerivatives << 160 G4PhysicsTableHelper::SetPhysicsVector(ded << 161 } 125 } 162 //G4cout << "### G4LossTableBuilder::BuildDE << 163 //G4cout << *dedxTable << G4endl; << 164 } 126 } 165 127 166 //....oooOO0OOooo........oooOO0OOooo........oo 128 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 167 129 168 void G4LossTableBuilder::BuildRangeTable(const 130 void G4LossTableBuilder::BuildRangeTable(const G4PhysicsTable* dedxTable, 169 G4Phy << 131 G4PhysicsTable* rangeTable, >> 132 G4bool isIonisation) 170 // Build range table from the energy loss tabl 133 // Build range table from the energy loss table 171 { 134 { 172 //G4cout << "### G4LossTableBuilder::BuildRa << 135 size_t nCouples = dedxTable->size(); 173 //G4cout << *const_cast<G4PhysicsTable*>(ded << 174 const std::size_t nCouples = dedxTable->size << 175 if(0 >= nCouples) { return; } 136 if(0 >= nCouples) { return; } 176 137 177 const std::size_t n = 100; << 138 size_t n = 100; 178 const G4double del = 1.0/(G4double)n; << 139 G4double del = 1.0/(G4double)n; 179 140 180 for (std::size_t i=0; i<nCouples; ++i) { << 141 for (size_t i=0; i<nCouples; ++i) { 181 auto pv = static_cast<G4PhysicsLogVector*> << 142 if(isIonisation) { 182 if((pv == nullptr) || (isBaseMatActive && << 143 if( !(*theFlag)[i] ) { continue; } 183 std::size_t npoints = pv->GetVectorLength( << 144 } 184 std::size_t bin0 = 0; << 145 G4PhysicsLogVector* pv = static_cast<G4PhysicsLogVector*>((*dedxTable)[i]); >> 146 size_t npoints = pv->GetVectorLength(); >> 147 size_t bin0 = 0; 185 G4double elow = pv->Energy(0); 148 G4double elow = pv->Energy(0); 186 G4double ehigh = pv->Energy(npoints-1); 149 G4double ehigh = pv->Energy(npoints-1); 187 G4double dedx1 = (*pv)[0]; 150 G4double dedx1 = (*pv)[0]; 188 151 >> 152 //G4cout << "i= " << i << "npoints= " << npoints << " dedx1= " >> 153 //<< dedx1 << G4endl; >> 154 189 // protection for specific cases dedx=0 155 // protection for specific cases dedx=0 190 if(dedx1 == 0.0) { 156 if(dedx1 == 0.0) { 191 for (std::size_t k=1; k<npoints; ++k) { << 157 for (size_t k=1; k<npoints; ++k) { 192 ++bin0; << 158 bin0++; 193 elow = pv->Energy(k); << 159 elow = pv->Energy(k); 194 dedx1 = (*pv)[k]; << 160 dedx1 = (*pv)[k]; 195 if(dedx1 > 0.0) { break; } << 161 if(dedx1 > 0.0) { break; } 196 } 162 } 197 npoints -= bin0; 163 npoints -= bin0; 198 } 164 } >> 165 //G4cout<<"New Range vector" << G4endl; >> 166 //G4cout<<"nbins= "<<npoints-1<<" elow= "<<elow<<" ehigh= "<<ehigh >> 167 // <<" bin0= " << bin0 <<G4endl; 199 168 200 // initialisation of a new vector 169 // initialisation of a new vector 201 if(npoints < 3) { npoints = 3; } << 170 if(npoints < 2) { npoints = 2; } 202 171 203 delete (*rangeTable)[i]; 172 delete (*rangeTable)[i]; 204 G4PhysicsLogVector* v; 173 G4PhysicsLogVector* v; 205 if(0 == bin0) { v = new G4PhysicsLogVector 174 if(0 == bin0) { v = new G4PhysicsLogVector(*pv); } 206 else { v = new G4PhysicsLogVector(elow, eh << 175 else { v = new G4PhysicsLogVector(elow, ehigh, npoints-1); } >> 176 >> 177 // dedx is exact zero cannot build range table >> 178 if(2 == npoints) { >> 179 v->PutValue(0,1000.); >> 180 v->PutValue(1,2000.); >> 181 G4PhysicsTableHelper::SetPhysicsVector(rangeTable, i, v); >> 182 return; >> 183 } >> 184 v->SetSpline(splineFlag); 207 185 208 // assumed dedx proportional to beta 186 // assumed dedx proportional to beta 209 G4double energy1 = v->Energy(0); 187 G4double energy1 = v->Energy(0); 210 G4double range = 2.*energy1/dedx1; 188 G4double range = 2.*energy1/dedx1; 211 /* << 189 //G4cout << "range0= " << range << G4endl; 212 G4cout << "New Range vector Npoints=" << v << 213 << " coupleIdx=" << i << " spline=" << v- << 214 << " Elow=" << v->GetMinEnergy() <<" Ehig << 215 << " DEDX(Elow)=" << dedx1 << " R(Elow)=" << 216 */ << 217 v->PutValue(0,range); 190 v->PutValue(0,range); 218 191 219 for (std::size_t j=1; j<npoints; ++j) { << 192 for (size_t j=1; j<npoints; ++j) { 220 193 221 G4double energy2 = v->Energy(j); 194 G4double energy2 = v->Energy(j); 222 G4double de = (energy2 - energy1) * 195 G4double de = (energy2 - energy1) * del; 223 G4double energy = energy2 + de*0.5; 196 G4double energy = energy2 + de*0.5; 224 G4double sum = 0.0; 197 G4double sum = 0.0; 225 std::size_t idx = j - 1; << 198 //G4cout << "j= " << j << " e1= " << energy1 << " e2= " << energy2 226 for (std::size_t k=0; k<n; ++k) { << 199 // << " n= " << n << G4endl; 227 energy -= de; << 200 for (size_t k=0; k<n; ++k) { 228 dedx1 = pv->Value(energy, idx); << 201 energy -= de; 229 if(dedx1 > 0.0) { sum += de/dedx1; } << 202 dedx1 = pv->Value(energy); >> 203 if(dedx1 > 0.0) { sum += de/dedx1; } 230 } 204 } 231 range += sum; 205 range += sum; 232 /* << 233 if(energy < 10.) << 234 G4cout << "j= " << j << " e1= " << energy1 < << 235 << " n= " << n << " range=" << range< << 236 */ << 237 v->PutValue(j,range); 206 v->PutValue(j,range); 238 energy1 = energy2; 207 energy1 = energy2; 239 } 208 } 240 if(splineFlag) { v->FillSecondDerivatives( 209 if(splineFlag) { v->FillSecondDerivatives(); } 241 G4PhysicsTableHelper::SetPhysicsVector(ran 210 G4PhysicsTableHelper::SetPhysicsVector(rangeTable, i, v); 242 } 211 } 243 //G4cout << "### Range table" << G4endl; << 244 //G4cout << *rangeTable << G4endl; << 245 } 212 } 246 213 247 //....oooOO0OOooo........oooOO0OOooo........oo 214 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 248 215 249 void 216 void 250 G4LossTableBuilder::BuildInverseRangeTable(con 217 G4LossTableBuilder::BuildInverseRangeTable(const G4PhysicsTable* rangeTable, 251 G4P << 218 G4PhysicsTable* invRangeTable, >> 219 G4bool isIonisation) 252 // Build inverse range table from the energy l 220 // Build inverse range table from the energy loss table 253 { 221 { 254 std::size_t nCouples = rangeTable->size(); << 222 size_t nCouples = rangeTable->size(); 255 if(0 >= nCouples) { return; } 223 if(0 >= nCouples) { return; } 256 224 257 for (std::size_t i=0; i<nCouples; ++i) { << 225 for (size_t i=0; i<nCouples; ++i) { >> 226 >> 227 if(isIonisation) { >> 228 if( !(*theFlag)[i] ) { continue; } >> 229 } 258 G4PhysicsVector* pv = (*rangeTable)[i]; 230 G4PhysicsVector* pv = (*rangeTable)[i]; 259 if((pv == nullptr) || (isBaseMatActive && << 231 size_t npoints = pv->GetVectorLength(); 260 std::size_t npoints = pv->GetVectorLength( << 232 G4double rlow = (*pv)[0]; >> 233 G4double rhigh = (*pv)[npoints-1]; 261 234 262 delete (*invRangeTable)[i]; 235 delete (*invRangeTable)[i]; 263 auto v = new G4PhysicsFreeVector(npoints, << 236 G4LPhysicsFreeVector* v = new G4LPhysicsFreeVector(npoints,rlow,rhigh); >> 237 v->SetSpline(splineFlag); 264 238 265 for (std::size_t j=0; j<npoints; ++j) { << 239 for (size_t j=0; j<npoints; ++j) { 266 G4double e = pv->Energy(j); 240 G4double e = pv->Energy(j); 267 G4double r = (*pv)[j]; 241 G4double r = (*pv)[j]; 268 v->PutValues(j,r,e); 242 v->PutValues(j,r,e); 269 } 243 } 270 if (splineFlag) { v->FillSecondDerivatives << 244 if(splineFlag) { v->FillSecondDerivatives(); } 271 v->EnableLogBinSearch(theParameters->Numbe << 272 245 273 G4PhysicsTableHelper::SetPhysicsVector(inv 246 G4PhysicsTableHelper::SetPhysicsVector(invRangeTable, i, v); 274 } 247 } 275 //G4cout << "### Inverse range table" << G4e << 276 //G4cout << *invRangeTable << G4endl; << 277 } 248 } 278 249 279 //....oooOO0OOooo........oooOO0OOooo........oo 250 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 280 251 281 void G4LossTableBuilder::InitialiseBaseMateria << 252 void >> 253 G4LossTableBuilder::InitialiseBaseMaterials(G4PhysicsTable* table) 282 { 254 { 283 if(!isInitializer) { return; } << 255 size_t nCouples = table->size(); >> 256 size_t nFlags = theFlag->size(); >> 257 >> 258 if(nCouples == nFlags && isInitialized) { return; } >> 259 >> 260 isInitialized = true; >> 261 >> 262 //G4cout << "%%%%%% G4LossTableBuilder::InitialiseBaseMaterials Ncouples= " >> 263 // << nCouples << " FlagSize= " << nFlags << G4endl; >> 264 >> 265 // variable density check 284 const G4ProductionCutsTable* theCoupleTable= 266 const G4ProductionCutsTable* theCoupleTable= 285 G4ProductionCutsTable::GetProductionCutsTa 267 G4ProductionCutsTable::GetProductionCutsTable(); 286 std::size_t nCouples = theCoupleTable->GetTa << 268 287 std::size_t nFlags = theFlag->size(); << 288 /* 269 /* 289 G4cout << "### InitialiseBaseMaterials: nCou << 270 for(size_t i=0; i<nFlags; ++i) { 290 << " nFlags=" << nFlags << " isInit:" << is << 271 G4cout << "CoupleIdx= " << i << " Flag= " << (*theFlag)[i] 291 << " baseMat:" << baseMatFlag << G4endl; << 272 << " tableFlag= " << table->GetFlag(i) << " " >> 273 << theCoupleTable->GetMaterialCutsCouple(i)->GetMaterial()->GetName() >> 274 << G4endl; >> 275 } 292 */ 276 */ 293 // define base material flag << 277 294 if(isBaseMatActive && !baseMatFlag) { << 278 // expand vectors 295 for(G4int i=0; i<(G4int)nCouples; ++i) { << 279 if(nFlags < nCouples) { 296 if(nullptr != theCoupleTable->GetMateria << 280 for(size_t i=nFlags; i<nCouples; ++i) { 297 baseMatFlag = true; << 281 theDensityFactor->push_back(1.0); 298 isInitialized = false; << 282 } 299 break; << 283 for(size_t i=nFlags; i<nCouples; ++i) { theDensityIdx->push_back(-1); } >> 284 for(size_t i=nFlags; i<nCouples; ++i) { theFlag->push_back(true); } >> 285 } >> 286 for(size_t i=0; i<nCouples; ++i) { >> 287 >> 288 // base material is needed only for a couple which is not >> 289 // initialised and for which tables will be computed >> 290 (*theFlag)[i] = table->GetFlag(i); >> 291 if ((*theDensityIdx)[i] < 0) { >> 292 (*theDensityIdx)[i] = i; >> 293 const G4MaterialCutsCouple* couple = >> 294 theCoupleTable->GetMaterialCutsCouple(i); >> 295 const G4ProductionCuts* pcuts = couple->GetProductionCuts(); >> 296 const G4Material* mat = couple->GetMaterial(); >> 297 const G4Material* bmat = mat->GetBaseMaterial(); >> 298 >> 299 // base material exists - find it and check if it can be reused >> 300 if(bmat) { >> 301 for(size_t j=0; j<nCouples; ++j) { >> 302 >> 303 if(j == i) { continue; } >> 304 const G4MaterialCutsCouple* bcouple = >> 305 theCoupleTable->GetMaterialCutsCouple(j); >> 306 >> 307 if(bcouple->GetMaterial() == bmat && >> 308 bcouple->GetProductionCuts() == pcuts) { >> 309 >> 310 // based couple exist in the same region >> 311 (*theDensityIdx)[i] = j; >> 312 (*theDensityFactor)[i] = mat->GetDensity()/bmat->GetDensity(); >> 313 (*theFlag)[i] = false; >> 314 >> 315 // ensure that there will no double initialisation >> 316 (*theDensityIdx)[j] = j; >> 317 (*theDensityFactor)[j] = 1.0; >> 318 (*theFlag)[j] = true; >> 319 break; >> 320 } >> 321 } 300 } 322 } 301 } 323 } 302 } 324 } >> 325 /* >> 326 for(size_t i=0; i<nCouples; ++i) { >> 327 G4cout << "CoupleIdx= " << i << " Flag= " << (*theFlag)[i] >> 328 << " TableFlag= " << table->GetFlag(i) << " " >> 329 << theCoupleTable->GetMaterialCutsCouple(i)->GetMaterial()->GetName() >> 330 << G4endl; >> 331 } >> 332 G4cout << "%%%%%% G4LossTableBuilder::InitialiseBaseMaterials end" >> 333 << G4endl; >> 334 */ >> 335 } >> 336 >> 337 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 338 >> 339 void G4LossTableBuilder::InitialiseCouples() >> 340 { >> 341 isInitialized = true; 303 342 304 if(nFlags != nCouples) { isInitialized = fal << 343 // variable density initialisation for the cas without tables 305 if(isInitialized) { return; } << 344 const G4ProductionCutsTable* theCoupleTable= >> 345 G4ProductionCutsTable::GetProductionCutsTable(); >> 346 size_t nCouples = theCoupleTable->GetTableSize(); >> 347 //G4cout << "%%%%%% G4LossTableBuilder::InitialiseCouples() nCouples= " >> 348 // << nCouples << G4endl; 306 349 307 // reserve memory << 350 theDensityFactor->resize(nCouples, 1.0); >> 351 theDensityIdx->resize(nCouples, -1); 308 theFlag->resize(nCouples, true); 352 theFlag->resize(nCouples, true); 309 theDensityFactor->resize(nCouples,1.0); << 310 theDensityIdx->resize(nCouples, 0); << 311 353 312 // define default flag and index of used mat << 354 for(size_t i=0; i<nCouples; ++i) { 313 for (G4int i=0; i<(G4int)nCouples; ++i) { << 314 (*theFlag)[i] = (nullptr == table) ? true << 315 (*theDensityIdx)[i] = i; << 316 } << 317 isInitialized = true; << 318 if (!baseMatFlag) { return; } << 319 355 320 // use base materials << 321 for (G4int i=0; i<(G4int)nCouples; ++i) { << 322 // base material is needed only for a coup 356 // base material is needed only for a couple which is not 323 // initialised and for which tables will b 357 // initialised and for which tables will be computed 324 auto couple = theCoupleTable->GetMaterialC << 358 if ((*theDensityIdx)[i] < 0) { 325 auto pcuts = couple->GetProductionCuts(); << 359 (*theDensityIdx)[i] = i; 326 auto mat = couple->GetMaterial(); << 360 const G4MaterialCutsCouple* couple = 327 auto bmat = mat->GetBaseMaterial(); << 361 theCoupleTable->GetMaterialCutsCouple(i); 328 << 362 const G4ProductionCuts* pcuts = couple->GetProductionCuts(); 329 // base material exists - find it and chec << 363 const G4Material* mat = couple->GetMaterial(); 330 if(nullptr != bmat) { << 364 const G4Material* bmat = mat->GetBaseMaterial(); 331 for(G4int j=0; j<(G4int)nCouples; ++j) { << 365 332 if(j == i) { continue; } << 366 // base material exists - find it and check if it can be reused 333 auto bcouple = theCoupleTable->GetMaterialCu << 367 if(bmat) { 334 << 368 for(size_t j=0; j<nCouples; ++j) { 335 if(bcouple->GetMaterial() == bmat && << 369 336 bcouple->GetProductionCuts() == pcuts) { << 370 if(j == i) { continue; } 337 << 371 const G4MaterialCutsCouple* bcouple = 338 // based couple exist in the same region << 372 theCoupleTable->GetMaterialCutsCouple(j); 339 (*theDensityFactor)[i] = mat->GetDensity() << 373 340 (*theDensityIdx)[i] = j; << 374 if(bcouple->GetMaterial() == bmat && 341 (*theFlag)[i] = false; << 375 bcouple->GetProductionCuts() == pcuts) { 342 << 376 343 // ensure that there will no double initia << 377 // based couple exist in the same region 344 (*theDensityFactor)[j] = 1.0; << 378 (*theDensityIdx)[i] = j; 345 (*theDensityIdx)[j] = j; << 379 (*theDensityFactor)[i] = mat->GetDensity()/bmat->GetDensity(); 346 (*theFlag)[j] = true; << 380 (*theFlag)[i] = false; 347 break; << 381 348 } << 382 // ensure that there will no double initialisation >> 383 (*theDensityIdx)[j] = j; >> 384 (*theDensityFactor)[j] = 1.0; >> 385 (*theFlag)[j] = true; >> 386 break; >> 387 } >> 388 } 349 } 389 } 350 } 390 } 351 } 391 } >> 392 /* >> 393 for(size_t i=0; i<nCouples; ++i) { >> 394 G4cout << "CoupleIdx= " << i << " Flag= " << (*theFlag)[i] << " " >> 395 << theCoupleTable->GetMaterialCutsCouple(i)->GetMaterial()->GetName() >> 396 << " DensityFactor= " << (*theDensityFactor)[i] >> 397 << G4endl; >> 398 } >> 399 G4cout << "%%%%%% G4LossTableBuilder::InitialiseCouples() end" << G4endl; >> 400 */ 352 } 401 } 353 402 354 //....oooOO0OOooo........oooOO0OOooo........oo 403 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 355 404 356 G4PhysicsTable* 405 G4PhysicsTable* 357 G4LossTableBuilder::BuildTableForModel(G4Physi 406 G4LossTableBuilder::BuildTableForModel(G4PhysicsTable* aTable, 358 G4VEmMo 407 G4VEmModel* model, 359 const G 408 const G4ParticleDefinition* part, 360 G4doubl 409 G4double emin, G4double emax, 361 G4bool 410 G4bool spline) 362 { 411 { 363 // check input 412 // check input 364 G4PhysicsTable* table = G4PhysicsTableHelper 413 G4PhysicsTable* table = G4PhysicsTableHelper::PreparePhysicsTable(aTable); 365 if (nullptr == table) { return table; } << 414 if(!table) { return table; } 366 if (aTable != nullptr && aTable != table) { << 415 if(emin >= emax) { 367 aTable->clearAndDestroy(); << 416 table->clearAndDestroy(); 368 delete aTable; << 417 delete table; >> 418 table = 0; >> 419 return table; 369 } 420 } 370 << 371 InitialiseBaseMaterials(table); 421 InitialiseBaseMaterials(table); >> 422 372 G4int nbins = theParameters->NumberOfBinsPer 423 G4int nbins = theParameters->NumberOfBinsPerDecade(); 373 424 374 // Access to materials 425 // Access to materials 375 const G4ProductionCutsTable* theCoupleTable= 426 const G4ProductionCutsTable* theCoupleTable= 376 G4ProductionCutsTable::GetProductionCu 427 G4ProductionCutsTable::GetProductionCutsTable(); 377 std::size_t numOfCouples = theCoupleTable->G << 428 size_t numOfCouples = theCoupleTable->GetTableSize(); 378 /* << 429 379 G4cout << " G4LossTableBuilder::BuildTable << 430 G4PhysicsLogVector* aVector = 0; 380 << " isMaster=" << isInitializer << " model << 381 << " " << part->GetParticleName() << G4end << 382 */ << 383 G4PhysicsLogVector* aVector = nullptr; << 384 431 385 for(G4int i=0; i<(G4int)numOfCouples; ++i) { << 432 for(size_t i=0; i<numOfCouples; ++i) { 386 //G4cout << i << ". " << (*theFlag)[i] << << 433 387 if (table->GetFlag(i)) { << 434 //G4cout<< "i= " << i << " Flag= " << GetFlag(i) << G4endl; >> 435 >> 436 if (GetFlag(i)) { 388 437 389 // create physics vector and fill it 438 // create physics vector and fill it 390 auto couple = theCoupleTable->GetMateria << 439 const G4MaterialCutsCouple* couple = >> 440 theCoupleTable->GetMaterialCutsCouple(i); 391 delete (*table)[i]; 441 delete (*table)[i]; 392 442 393 // if start from zero then change the sc 443 // if start from zero then change the scale >> 444 394 const G4Material* mat = couple->GetMater 445 const G4Material* mat = couple->GetMaterial(); 395 446 396 G4double tmin = std::max(emin, model->Mi << 447 G4double tmin = std::max(emin,model->MinPrimaryEnergy(mat,part)); 397 if(0.0 >= tmin) { tmin = CLHEP::eV; } << 448 if(0.0 >= tmin) { tmin = eV; } 398 G4int n = nbins; 449 G4int n = nbins; 399 450 400 if(tmin >= emax) { 451 if(tmin >= emax) { 401 aVector = nullptr; << 452 aVector = 0; 402 } else { 453 } else { 403 n *= G4lrint(std::log10(emax/tmin)); << 454 n *= G4int(std::log10(emax/tmin) + 0.5); 404 n = std::max(n, 3); << 455 if(n < 3) { n = 3; } 405 aVector = new G4PhysicsLogVector(tmin, << 456 aVector = new G4PhysicsLogVector(tmin, emax, n); 406 } 457 } 407 458 408 if(nullptr != aVector) { << 459 if(aVector) { 409 //G4cout << part->GetParticleName() << << 460 aVector->SetSpline(spline); 410 // << " emin= " << tmin << " emax=" << e << 411 for(G4int j=0; j<=n; ++j) { 461 for(G4int j=0; j<=n; ++j) { 412 G4double e = aVector->Energy(j); << 462 aVector->PutValue(j, model->Value(couple, part, 413 G4double y = model->Value(couple, part, e) << 463 aVector->Energy(j))); 414 //G4cout << " " << j << ") E=" << e < << 415 aVector->PutValue(j, y); << 416 } 464 } 417 if(spline) { aVector->FillSecondDeriva 465 if(spline) { aVector->FillSecondDerivatives(); } 418 } 466 } 419 G4PhysicsTableHelper::SetPhysicsVector(t 467 G4PhysicsTableHelper::SetPhysicsVector(table, i, aVector); 420 } 468 } 421 } 469 } 422 /* 470 /* 423 G4cout << "G4LossTableBuilder::BuildTableFor 471 G4cout << "G4LossTableBuilder::BuildTableForModel done for " 424 << part->GetParticleName() << " and " 472 << part->GetParticleName() << " and "<< model->GetName() 425 << " " << table << G4endl; 473 << " " << table << G4endl; 426 */ 474 */ 427 //G4cout << *table << G4endl; << 428 return table; 475 return table; 429 } 476 } 430 477 431 //....oooOO0OOooo........oooOO0OOooo........oo 478 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 479 432 480