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 // 23 // 27 // ------------------------------------------- 24 // ------------------------------------------------------------------- 28 // 25 // 29 // GEANT4 Class file 26 // GEANT4 Class file 30 // 27 // 31 // 28 // 32 // File name: G4EmModelManager 29 // File name: G4EmModelManager 33 // 30 // 34 // Author: Vladimir Ivanchenko 31 // Author: Vladimir Ivanchenko 35 // 32 // 36 // Creation date: 07.05.2002 33 // Creation date: 07.05.2002 37 // 34 // 38 // Modifications: V.Ivanchenko << 35 // Modifications: >> 36 // >> 37 // 23-12-02 V.Ivanchenko change interface in order to move >> 38 // to cut per region >> 39 // 20-01-03 Migrade to cut per region (V.Ivanchenko) >> 40 // 24-01-03 Make models region aware (V.Ivanchenko) >> 41 // 13-02-03 The set of models is defined for region (V.Ivanchenko) >> 42 // 06-03-03 Fix in energy intervals for models (V.Ivanchenko) >> 43 // 13-04-03 Add startFromNull (V.Ivanchenko) 39 // 44 // 40 // Class Description: 45 // Class Description: 41 // 46 // 42 // It is the unified energy loss process it ca 47 // It is the unified energy loss process it calculates the continuous 43 // energy loss for charged particles using a s 48 // energy loss for charged particles using a set of Energy Loss 44 // models valid for different energy regions. 49 // models valid for different energy regions. There are a possibility 45 // to create and access to dE/dx and range tab 50 // to create and access to dE/dx and range tables, or to calculate 46 // that information on fly. 51 // that information on fly. 47 // ------------------------------------------- 52 // ------------------------------------------------------------------- 48 // 53 // 49 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 50 //....oooOO0OOooo........oooOO0OOooo........oo 55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 51 56 52 #include "G4EmModelManager.hh" 57 #include "G4EmModelManager.hh" 53 #include "G4SystemOfUnits.hh" << 58 #include "G4LossTableManager.hh" 54 #include "G4PhysicsTable.hh" << 55 #include "G4PhysicsVector.hh" << 56 #include "G4VMscModel.hh" << 57 << 58 #include "G4Step.hh" 59 #include "G4Step.hh" 59 #include "G4ParticleDefinition.hh" 60 #include "G4ParticleDefinition.hh" >> 61 #include "G4DataVector.hh" 60 #include "G4PhysicsVector.hh" 62 #include "G4PhysicsVector.hh" >> 63 #include "G4Gamma.hh" >> 64 #include "G4Positron.hh" 61 #include "G4MaterialCutsCouple.hh" 65 #include "G4MaterialCutsCouple.hh" 62 #include "G4ProductionCutsTable.hh" 66 #include "G4ProductionCutsTable.hh" >> 67 #include "G4Region.hh" 63 #include "G4RegionStore.hh" 68 #include "G4RegionStore.hh" 64 #include "G4Gamma.hh" << 69 65 #include "G4Electron.hh" << 66 #include "G4Positron.hh" << 67 #include "G4UnitsTable.hh" << 68 #include "G4DataVector.hh" << 69 70 70 //....oooOO0OOooo........oooOO0OOooo........oo 71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 71 72 72 G4RegionModels::G4RegionModels(G4int nMod, std << 73 G4RegionModels::G4RegionModels(G4int nMod, G4std::vector<G4int>& list, G4DataVector& lowE) 73 G4DataVector& l << 74 { 74 { 75 nModelsForRegion = nMod; 75 nModelsForRegion = nMod; 76 theListOfModelIndexes = new G4int [nModelsFo 76 theListOfModelIndexes = new G4int [nModelsForRegion]; 77 lowKineticEnergy = new G4double [nModel << 77 lowKineticEnergy = new G4double [nModelsForRegion]; 78 for (G4int i=0; i<nModelsForRegion; ++i) { << 78 for (G4int i=0; i<nModelsForRegion; i++) { 79 theListOfModelIndexes[i] = indx[i]; << 79 theListOfModelIndexes[i] = list[i]; 80 lowKineticEnergy[i] = lowE[i]; 80 lowKineticEnergy[i] = lowE[i]; 81 } 81 } 82 lowKineticEnergy[nModelsForRegion] = lowE[nM << 83 theRegion = reg; << 84 } 82 } 85 83 86 //....oooOO0OOooo........oooOO0OOooo........oo 84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 87 85 88 G4RegionModels::~G4RegionModels() 86 G4RegionModels::~G4RegionModels() 89 { 87 { 90 delete [] theListOfModelIndexes; 88 delete [] theListOfModelIndexes; 91 delete [] lowKineticEnergy; 89 delete [] lowKineticEnergy; 92 } 90 } 93 91 94 //....oooOO0OOooo........oooOO0OOooo........oo 92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 95 //....oooOO0OOooo........oooOO0OOooo........oo << 96 93 97 G4EmModelManager::G4EmModelManager() << 94 G4EmModelManager::G4EmModelManager(): 98 { << 95 nEmModels(0), 99 models.reserve(4); << 96 nRegions(0), 100 flucModels.reserve(4); << 97 nCouples(0), 101 regions.reserve(4); << 98 minSubRange(0.1), 102 orderOfModels.reserve(4); << 99 particle(0), 103 isUsed.reserve(4); << 100 verboseLevel(0) >> 101 { >> 102 models.clear(); >> 103 flucModels.clear(); >> 104 regions.clear(); >> 105 orderOfModels.clear(); >> 106 upperEkin.clear(); 104 } 107 } 105 108 106 //....oooOO0OOooo........oooOO0OOooo........oo 109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 107 110 108 G4EmModelManager::~G4EmModelManager() 111 G4EmModelManager::~G4EmModelManager() 109 { 112 { 110 verboseLevel = 0; // no verbosity at destruc << 113 G4int i,j; 111 Clear(); 114 Clear(); 112 delete theCutsNew; << 115 for(i = 0; i<nEmModels; i++) { >> 116 orderOfModels[i] = 1; >> 117 } >> 118 for(i = 0; i<nEmModels; i++) { >> 119 if (orderOfModels[i]) { >> 120 orderOfModels[i] = 0; >> 121 for(j = i+1; j<nEmModels; j++) { >> 122 if(models[i] == models[j]) orderOfModels[j] = 0; >> 123 } >> 124 delete models[i]; >> 125 } >> 126 } >> 127 for(i = 0; i<nEmModels; i++) { >> 128 orderOfModels[i] = 1; >> 129 } >> 130 for(i = 0; i<nEmModels; i++) { >> 131 if (orderOfModels[i]) { >> 132 orderOfModels[i] = 0; >> 133 for(j = i+1; j<nEmModels; j++) { >> 134 if(flucModels[i] == flucModels[j]) orderOfModels[j] = 0; >> 135 } >> 136 delete flucModels[i]; >> 137 } >> 138 } 113 } 139 } 114 140 115 //....oooOO0OOooo........oooOO0OOooo........oo 141 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 116 142 117 void G4EmModelManager::Clear() 143 void G4EmModelManager::Clear() 118 { 144 { 119 if(1 < verboseLevel) { << 145 if(0 < verboseLevel) { 120 G4cout << "G4EmModelManager::Clear()" << G 146 G4cout << "G4EmModelManager::Clear()" << G4endl; 121 } 147 } 122 std::size_t n = setOfRegionModels.size(); << 148 123 for(std::size_t i=0; i<n; ++i) { << 149 theCuts.clear(); 124 delete setOfRegionModels[i]; << 150 theSubCuts.clear(); 125 setOfRegionModels[i] = nullptr; << 151 upperEkin.clear(); 126 } << 152 idxOfRegionModels.clear(); >> 153 setOfRegionModels.clear(); 127 } 154 } 128 155 129 //....oooOO0OOooo........oooOO0OOooo........oo 156 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 130 157 131 void G4EmModelManager::AddEmModel(G4int num, G 158 void G4EmModelManager::AddEmModel(G4int num, G4VEmModel* p, 132 G4VEmFluctua 159 G4VEmFluctuationModel* fm, const G4Region* r) 133 { 160 { 134 if(nullptr == p) { << 161 if(!p) { 135 G4cout << "G4EmModelManager::AddEmModel WA << 162 G4cout << "G4EmModelManager::AddEmModel WARNING: no model defined." << G4endl; 136 << G4endl; << 137 return; 163 return; 138 } 164 } 139 models.push_back(p); 165 models.push_back(p); 140 flucModels.push_back(fm); 166 flucModels.push_back(fm); 141 regions.push_back(r); 167 regions.push_back(r); 142 orderOfModels.push_back(num); 168 orderOfModels.push_back(num); 143 isUsed.push_back(0); << 169 if (nEmModels) { 144 p->DefineForRegion(r); << 170 G4int idx = nEmModels; 145 ++nEmModels; << 171 do {idx--;} while (idx && num < orderOfModels[idx]); 146 } << 172 if (num >= orderOfModels[idx] && num <= orderOfModels[idx+1]) idx++; 147 << 173 if (idx < nEmModels) { 148 //....oooOO0OOooo........oooOO0OOooo........oo << 174 models[nEmModels] = models[idx]; 149 << 175 flucModels[nEmModels] = flucModels[idx]; 150 G4VEmModel* G4EmModelManager::GetModel(G4int i << 176 regions[nEmModels] = regions[idx]; 151 { << 177 orderOfModels[nEmModels] = orderOfModels[idx]; 152 G4VEmModel* model = nullptr; << 178 models[idx] = p; 153 if(idx >= 0 && idx < nEmModels) { model = mo << 179 flucModels[idx] = fm; 154 else if(verboseLevel > 0 && ver) { << 180 regions[idx] = r; 155 G4cout << "G4EmModelManager::GetModel WARN << 181 orderOfModels[idx] = num; 156 << "index " << idx << " is wrong Nm << 182 } 157 << nEmModels; << 183 } 158 if(nullptr != particle) { << 184 nEmModels++; 159 G4cout << " for " << particle->GetPartic << 160 } << 161 G4cout<< G4endl; << 162 } << 163 return model; << 164 } << 165 << 166 //....oooOO0OOooo........oooOO0OOooo........oo << 167 << 168 G4VEmModel* G4EmModelManager::GetRegionModel(G << 169 { << 170 G4RegionModels* rm = setOfRegionModels[idxOf << 171 return (k < rm->NumberOfModels()) ? models[r << 172 } 185 } 173 186 174 //....oooOO0OOooo........oooOO0OOooo........oo 187 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 175 188 176 G4int G4EmModelManager::NumberOfRegionModels(s << 189 const G4DataVector* G4EmModelManager::Initialise(const G4ParticleDefinition* p, >> 190 const G4ParticleDefinition* sp, >> 191 G4double theMinSubRange, >> 192 G4int val) 177 { 193 { 178 G4RegionModels* rm = setOfRegionModels[idxOf << 179 return rm->NumberOfModels(); << 180 } << 181 << 182 //....oooOO0OOooo........oooOO0OOooo........oo << 183 << 184 const G4DataVector* << 185 G4EmModelManager::Initialise(const G4ParticleD << 186 const G4ParticleD << 187 G4int verb) << 188 { << 189 verboseLevel = verb; << 190 if(1 < verboseLevel) { << 191 G4cout << "G4EmModelManager::Initialise() << 192 << p->GetParticleName() << " Nmode << 193 } << 194 // Are models defined? 194 // Are models defined? 195 if(nEmModels < 1) { << 195 if(!nEmModels) { 196 G4ExceptionDescription ed; << 196 G4Exception("G4EmModelManager::Initialise without any model defined"); 197 ed << "No models found out for " << p->Get << 198 << " !"; << 199 G4Exception("G4EmModelManager::Initialise" << 200 FatalException, ed); << 201 } 197 } 202 << 203 particle = p; 198 particle = p; 204 Clear(); // needed if run is not first << 199 secondaryParticle = sp; >> 200 minSubRange = theMinSubRange; >> 201 verboseLevel = val; >> 202 >> 203 if(0 < verboseLevel) { >> 204 G4cout << "### G4EmModelManager::Initialise() for " >> 205 << p->GetParticleName() >> 206 << G4endl; >> 207 } >> 208 Clear(); 205 209 206 G4RegionStore* regionStore = G4RegionStore:: 210 G4RegionStore* regionStore = G4RegionStore::GetInstance(); 207 const G4Region* world = << 211 const G4Region* world = regionStore->GetRegion("DefaultRegionForTheWorld", false); 208 regionStore->GetRegion("DefaultRegionForTh << 209 212 210 // Identify the list of regions with differe 213 // Identify the list of regions with different set of models 211 nRegions = 1; 214 nRegions = 1; 212 std::vector<const G4Region*> setr; << 215 G4std::vector<const G4Region*> set; 213 setr.push_back(world); << 216 set.push_back(world); 214 G4bool isWorld = false; << 215 217 216 for (G4int ii=0; ii<nEmModels; ++ii) { << 218 for (G4int ii=0; ii<nEmModels; ii++) { 217 const G4Region* r = regions[ii]; 219 const G4Region* r = regions[ii]; 218 if ( r == nullptr || r == world) { << 220 if ( r && r != world) { 219 isWorld = true; << 220 regions[ii] = world; << 221 } else { << 222 G4bool newRegion = true; 221 G4bool newRegion = true; 223 if (nRegions>1) { 222 if (nRegions>1) { 224 for (G4int j=1; j<nRegions; ++j) { << 223 for (G4int j=1; j<nRegions; j++) { 225 if ( r == setr[j] ) { newRegion = fa << 224 if ( r == set[j] ) newRegion = false; 226 } 225 } 227 } 226 } 228 if (newRegion) { 227 if (newRegion) { 229 setr.push_back(r); << 228 set.push_back(r); 230 ++nRegions; << 229 nRegions++; 231 } 230 } 232 } 231 } 233 } 232 } 234 // Are models defined? << 235 if(!isWorld) { << 236 G4ExceptionDescription ed; << 237 ed << "No models defined for the World vol << 238 << p->GetParticleName() << " !"; << 239 G4Exception("G4EmModelManager::Initialise" << 240 FatalException, ed); << 241 } << 242 << 243 G4ProductionCutsTable* theCoupleTable= << 244 G4ProductionCutsTable::GetProductionCutsTa << 245 std::size_t numOfCouples = theCoupleTable->G << 246 << 247 // prepare vectors, shortcut for the case of << 248 // or only one region << 249 if(nRegions > 1 && nEmModels > 1) { << 250 idxOfRegionModels.resize(numOfCouples,0); << 251 setOfRegionModels.resize((std::size_t)nReg << 252 } else { << 253 idxOfRegionModels.resize(1,0); << 254 setOfRegionModels.resize(1,nullptr); << 255 } << 256 << 257 std::vector<G4int> modelAtRegion(nEmModel << 258 std::vector<G4int> modelOrd(nEmModels); << 259 G4DataVector eLow(nEmModels+1); << 260 G4DataVector eHigh(nEmModels); << 261 233 262 if(1 < verboseLevel) { << 234 setOfRegionModels.clear(); 263 G4cout << " Nregions= " << nRegions << 235 const G4ProductionCutsTable* theCoupleTable= 264 << " Nmodels= " << nEmModels << G4 << 236 G4ProductionCutsTable::GetProductionCutsTable(); 265 } << 237 size_t numOfCouples = theCoupleTable->GetTableSize(); >> 238 idxOfRegionModels.resize(numOfCouples); >> 239 upperEkin.resize(nEmModels); 266 240 267 // Order models for regions 241 // Order models for regions 268 for (G4int reg=0; reg<nRegions; ++reg) { << 242 for (G4int reg=0; reg<nRegions; reg++) { 269 const G4Region* region = setr[reg]; << 243 >> 244 const G4Region* region = set[reg]; >> 245 270 G4int n = 0; 246 G4int n = 0; 271 247 272 for (G4int ii=0; ii<nEmModels; ++ii) { << 248 G4std::vector<G4int> modelAtRegion; >> 249 G4DataVector eLow; >> 250 G4DataVector eHigh; >> 251 modelAtRegion.clear(); >> 252 eLow.clear(); >> 253 eHigh.clear(); 273 254 274 G4VEmModel* model = models[ii]; << 255 for (G4int ii=0; ii<nEmModels; ii++) { 275 if ( region == regions[ii] ) { << 276 256 277 G4double tmin = model->LowEnergyLimit( << 257 G4VEmModel* model = models[ii]; 278 G4double tmax = model->HighEnergyLimit << 258 if ( (model->IsInCharge(particle)) && 279 G4int ord = orderOfModels[ii]; << 259 (0 == regions[ii] || region == regions[ii]) ) 280 G4bool push = true; << 260 { 281 G4bool insert = false; << 261 282 G4int idx = n; << 262 G4double tmin = model->LowEnergyLimit(particle); >> 263 G4double tmax = model->HighEnergyLimit(particle); >> 264 if (n) tmin = G4std::max(tmin, eHigh[n-1]); 283 265 284 if(1 < verboseLevel) { 266 if(1 < verboseLevel) { 285 G4cout << "Model #" << ii << 267 G4cout << "Model # " << ii << " for region <" 286 << " <" << model->GetName() < << 268 << region->GetName() << "> " 287 if (region) G4cout << region->GetNam << 269 << " tmin(MeV)= " << tmin/MeV 288 G4cout << "> " << 289 << " tmin(MeV)= " << tmin/MeV << 290 << "; tmax(MeV)= " << tmax/Me 270 << "; tmax(MeV)= " << tmax/MeV 291 << "; order= " << ord << 292 << "; tminAct= " << model->LowEnergyActiv << 293 << "; tmaxAct= " << model->HighEnergyActi << 294 << G4endl; 271 << G4endl; 295 } 272 } 296 << 273 297 static const G4double limitdelta = 0.01*eV; << 274 if (tmin < tmax) { 298 if(n > 0) { << 275 modelAtRegion.push_back(ii); 299 << 276 eLow.push_back(tmin); 300 // extend energy range to previous m << 277 eHigh.push_back(tmax); 301 tmin = std::min(tmin, eHigh[n-1]); << 278 upperEkin[ii] = tmax; 302 tmax = std::max(tmax, eLow[0]); << 279 n++; 303 //G4cout << "tmin= " << tmin << " t << 304 // << tmax << " ord= " << << 305 // empty energy range << 306 if( tmax - tmin <= limitdelta) { pus << 307 // low-energy model << 308 else if (tmax == eLow[0]) { << 309 push = false; << 310 insert = true; << 311 idx = 0; << 312 // resolve intersections << 313 } else if(tmin < eHigh[n-1]) { << 314 // compare order << 315 for(G4int k=0; k<n; ++k) { << 316 // new model has higher order pa << 317 // so, its application area may be red << 318 // to avoid intersections << 319 if(ord >= modelOrd[k]) { << 320 if(tmin < eHigh[k] && tmin >= << 321 if(tmax <= eHigh[k] && tmax > << 322 if(tmax > eHigh[k] && tmin < e << 323 if(tmax - eHigh[k] > eLow[k] << 324 else { tmax = eLow[k]; } << 325 } << 326 if( tmax - tmin <= limitdelta) << 327 push = false; << 328 break; << 329 } << 330 } << 331 } << 332 // this model has lower order parameter << 333 // other models, with which there may be << 334 // so, appliction area of such models ma << 335 << 336 // insert below the first model << 337 if (tmax <= eLow[0]) { << 338 push = false; << 339 insert = true; << 340 idx = 0; << 341 // resolve intersections << 342 } else if(tmin < eHigh[n-1]) { << 343 // last energy interval << 344 if(tmin > eLow[n-1] && tmax >= eHigh[n << 345 eHigh[n-1] = tmin; << 346 // first energy interval << 347 } else if(tmin <= eLow[0] && tmax < eH << 348 eLow[0] = tmax; << 349 push = false; << 350 insert = true; << 351 idx = 0; << 352 // loop over all models << 353 } else { << 354 for(G4int k=n-1; k>=0; --k) { << 355 if(tmin <= eLow[k] && tmax >= eHigh[k]) << 356 // full overlap exclude previous model << 357 isUsed[modelAtRegion[k]] = 0; << 358 idx = k; << 359 if(k < n-1) { << 360 // shift upper models and change ind << 361 for(G4int kk=k; kk<n-1; ++kk) { << 362 modelAtRegion[kk] = modelAtRegion[kk+1]; << 363 modelOrd[kk] = modelOrd[kk+1]; << 364 eLow[kk] = eLow[kk+1]; << 365 eHigh[kk] = eHigh[kk+1]; << 366 } << 367 ++k; << 368 } << 369 --n; << 370 } else { << 371 // partially reduce previous model are << 372 if(tmin <= eLow[k] && tmax > eLow[k]) << 373 eLow[k] = tmax; << 374 idx = k; << 375 insert = true; << 376 push = false; << 377 } else if(tmin < eHigh[k] && tmax >= e << 378 eHigh[k] = tmin; << 379 idx = k + 1; << 380 if(idx < n) { << 381 insert = true; << 382 push = false; << 383 } << 384 } else if(tmin > eLow[k] && tmax < eHi << 385 if(eHigh[k] - tmax > tmin - eLow[k]) << 386 eLow[k] = tmax; << 387 idx = k; << 388 insert = true; << 389 push = false; << 390 } else { << 391 eHigh[k] = tmin; << 392 idx = k + 1; << 393 if(idx < n) { << 394 insert = true; << 395 push = false; << 396 } << 397 } << 398 } << 399 } << 400 } << 401 } << 402 } << 403 } << 404 } << 405 // provide space for the new model << 406 if(insert) { << 407 for(G4int k=n-1; k>=idx; --k) { << 408 modelAtRegion[k+1] = modelAtRegion << 409 modelOrd[k+1] = modelOrd[k]; << 410 eLow[k+1] = eLow[k]; << 411 eHigh[k+1] = eHigh[k]; << 412 } << 413 } << 414 //G4cout << "push= " << push << " inse << 415 // << " idx= " << idx <<G4endl; << 416 // the model is added << 417 if (push || insert) { << 418 ++n; << 419 modelAtRegion[idx] = ii; << 420 modelOrd[idx] = ord; << 421 eLow[idx] = tmin; << 422 eHigh[idx] = tmax; << 423 isUsed[ii] = 1; << 424 } << 425 // exclude models with zero energy range << 426 for(G4int k=n-1; k>=0; --k) { << 427 if(eHigh[k] - eLow[k] <= limitdelta) { << 428 isUsed[modelAtRegion[k]] = 0; << 429 if(k < n-1) { << 430 for(G4int kk=k; kk<n-1; ++kk) { << 431 modelAtRegion[kk] = modelAtRegion[kk+1]; << 432 modelOrd[kk] = modelOrd[kk+1]; << 433 eLow[kk] = eLow[kk+1]; << 434 eHigh[kk] = eHigh[kk+1]; << 435 } << 436 } << 437 --n; << 438 } << 439 } 280 } 440 } 281 } 441 } 282 } 442 eLow[0] = 0.0; 283 eLow[0] = 0.0; 443 eLow[n] = eHigh[n-1]; << 444 284 445 if(1 < verboseLevel) { 285 if(1 < verboseLevel) { 446 G4cout << "### New G4RegionModels set wi << 286 G4cout << "New G4RegionModels set with " << n << " models for region <" 447 << " models for region <"; << 287 << region->GetName() << "> " << G4endl; 448 if (region) { G4cout << region->GetName( << 288 } 449 G4cout << "> Elow(MeV)= "; << 289 G4RegionModels* rm = new G4RegionModels(n, modelAtRegion, eLow); 450 for(G4int iii=0; iii<=n; ++iii) {G4cout << 290 setOfRegionModels.push_back(rm); 451 G4cout << G4endl; << 452 } << 453 auto rm = new G4RegionModels(n, modelAtReg << 454 setOfRegionModels[reg] = rm; << 455 // shortcut << 456 if(1 == nEmModels) { break; } << 457 } 291 } 458 292 459 currRegionModel = setOfRegionModels[0]; << 460 currModel = models[0]; << 461 << 462 // Access to materials and build cuts 293 // Access to materials and build cuts 463 std::size_t idx = 1; << 464 if(nullptr != secondaryParticle) { << 465 if( secondaryParticle == G4Gamma::Gamma() << 466 else if( secondaryParticle == G4Electron:: << 467 else if( secondaryParticle == G4Positron:: << 468 else { idx = 3; } << 469 } << 470 << 471 theCuts = << 472 static_cast<const G4DataVector*>(theCouple << 473 << 474 // for the second run the check on cuts shou << 475 if(nullptr != theCutsNew) { *theCutsNew = *t << 476 << 477 // G4cout << "========Start define cuts" << << 478 // define cut values << 479 for(std::size_t i=0; i<numOfCouples; ++i) { << 480 294 481 const G4MaterialCutsCouple* couple = << 295 for(size_t i=0; i<numOfCouples; i++) { 482 theCoupleTable->GetMaterialCutsCouple((G << 296 >> 297 const G4MaterialCutsCouple* couple = theCoupleTable->GetMaterialCutsCouple(i); 483 const G4Material* material = couple->GetMa 298 const G4Material* material = couple->GetMaterial(); 484 const G4ProductionCuts* pcuts = couple->Ge 299 const G4ProductionCuts* pcuts = couple->GetProductionCuts(); 485 << 300 G4int reg = nRegions; 486 G4int reg = 0; << 301 do {reg--;} while (reg>0 && pcuts != (set[reg]->GetProductionCuts())); 487 if(nRegions > 1 && nEmModels > 1) { << 302 idxOfRegionModels[i] = reg; 488 reg = nRegions; << 303 489 // Loop checking, 03-Aug-2015, Vladimir << 490 do {--reg;} while (reg>0 && pcuts != (se << 491 idxOfRegionModels[i] = reg; << 492 } << 493 if(1 < verboseLevel) { 304 if(1 < verboseLevel) { 494 G4cout << "G4EmModelManager::Initialise( 305 G4cout << "G4EmModelManager::Initialise() for " 495 << material->GetName() << 306 << material->GetName() << G4endl; 496 << " indexOfCouple= " << i << 497 << " indexOfRegion= " << reg << 498 << G4endl; << 499 } 307 } 500 308 501 G4double cut = (*theCuts)[i]; << 309 G4double cut = 0.0; 502 if(nullptr != secondaryParticle) { << 310 G4double subcut = 0.0; >> 311 if(secondaryParticle) { >> 312 size_t idx = 1; >> 313 if( secondaryParticle == G4Gamma::Gamma() ) idx = 0; >> 314 cut = (*theCoupleTable->GetEnergyCutsVector(idx))[i]; >> 315 subcut = minSubRange*cut; >> 316 } 503 317 504 // note that idxOfRegionModels[] not alw << 318 G4int nm = setOfRegionModels[reg]->NumberOfModels(); 505 G4int inn = 0; << 319 for(G4int j=0; j<nm; j++) { 506 G4int nnm = 1; << 320 507 if(nRegions > 1 && nEmModels > 1) { << 321 G4VEmModel* model = models[setOfRegionModels[reg]->ModelIndex(j)]; 508 inn = idxOfRegionModels[i]; << 322 >> 323 G4double tcutmin = model->MinEnergyCut(particle, couple); >> 324 >> 325 cut = G4std::max(cut, tcutmin); >> 326 G4double x = G4std::max(cut*minSubRange, tcutmin); >> 327 subcut = G4std::max(subcut, x); >> 328 if(1 < verboseLevel) { >> 329 G4cout << "The model # " << j >> 330 << "; tcutmin(MeV)= " << tcutmin/MeV >> 331 << "; tcut(MeV)= " << cut/MeV >> 332 << G4endl; 509 } 333 } 510 // check cuts and introduce upper limits << 511 //G4cout << "idx= " << i << " cut(keV)= << 512 currRegionModel = setOfRegionModels[inn] << 513 nnm = currRegionModel->NumberOfModels(); << 514 << 515 //G4cout << "idx= " << i << " Nmod= " << << 516 << 517 for(G4int jj=0; jj<nnm; ++jj) { << 518 //G4cout << "jj= " << jj << " modidx= << 519 // << currRegionModel->ModelInde << 520 currModel = models[currRegionModel->Mo << 521 G4double cutlim = currModel->MinEnergy << 522 if(cutlim > cut) { << 523 if(nullptr == theCutsNew) { theCutsN << 524 (*theCutsNew)[i] = cutlim; << 525 /* << 526 G4cout << "### " << partname << " en << 527 << material->GetName() << 528 << " Cut was changed from " << 529 << cutlim/keV << " keV " << " << 530 << currModel->GetName() << G4 << 531 */ << 532 } << 533 } << 534 } 334 } >> 335 theCuts.push_back(cut); >> 336 theSubCuts.push_back(subcut); 535 } 337 } 536 if(nullptr != theCutsNew) { theCuts = theCut << 537 338 538 // initialize models << 339 for(G4int jj=0; jj<nEmModels; jj++) { 539 G4int nn = 0; << 340 models[jj]->Initialise(particle, theCuts); 540 severalModels = true; << 341 if(flucModels[jj]) flucModels[jj]->Initialise(particle); 541 for(G4int jj=0; jj<nEmModels; ++jj) { << 542 if(1 == isUsed[jj]) { << 543 ++nn; << 544 currModel = models[jj]; << 545 currModel->Initialise(particle, *theCuts << 546 if(nullptr != flucModels[jj]) { flucMode << 547 } << 548 } 342 } 549 if(1 == nn) { severalModels = false; } << 550 343 551 if(1 < verboseLevel) { << 344 552 G4cout << "G4EmModelManager for " << parti << 345 if(0 < verboseLevel) { 553 << " is initialised; nRegions= " < << 346 G4cout << "G4EmModelManager is initialised " 554 << " severalModels: " << severalMod << 555 << G4endl; 347 << G4endl; 556 } 348 } 557 return theCuts; << 349 >> 350 return &theCuts; 558 } 351 } 559 352 560 //....oooOO0OOooo........oooOO0OOooo........oo 353 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 561 354 562 void G4EmModelManager::FillDEDXVector(G4Physic 355 void G4EmModelManager::FillDEDXVector(G4PhysicsVector* aVector, 563 const G4 << 356 const G4MaterialCutsCouple* couple) 564 G4EmTabl << 565 { 357 { 566 std::size_t i = couple->GetIndex(); << 567 G4double cut = (fTotal == tType) ? DBL_MAX << 568 358 569 if(1 < verboseLevel) { << 359 // vectors to provide continues dE/dx >> 360 G4DataVector factor; >> 361 G4DataVector dedxLow; >> 362 G4DataVector dedxHigh; >> 363 >> 364 G4double e; >> 365 >> 366 const G4Material* material = couple->GetMaterial(); >> 367 size_t i = couple->GetIndex(); >> 368 G4double cut = theCuts[i]; >> 369 >> 370 if(0 < verboseLevel) { 570 G4cout << "G4EmModelManager::FillDEDXVecto 371 G4cout << "G4EmModelManager::FillDEDXVector() for " 571 << couple->GetMaterial()->GetName() << 372 << material->GetName() 572 << " cut(MeV)= " << cut << 373 << " Ecut(MeV)= " << cut/MeV 573 << " Type " << tType << 574 << " for " << particle->GetParticl << 575 << G4endl; 374 << G4endl; 576 } 375 } 577 376 578 G4int reg = 0; << 377 G4int reg = idxOfRegionModels[i]; 579 if(nRegions > 1 && nEmModels > 1) { reg = id << 580 const G4RegionModels* regModels = setOfRegio 378 const G4RegionModels* regModels = setOfRegionModels[reg]; 581 G4int nmod = regModels->NumberOfModels(); 379 G4int nmod = regModels->NumberOfModels(); >> 380 factor.resize(nmod); >> 381 dedxLow.resize(nmod); >> 382 dedxHigh.resize(nmod); >> 383 >> 384 >> 385 if(0 < verboseLevel) { >> 386 G4cout << "There are " << nmod << " models for " >> 387 << material->GetName() >> 388 << " at the region #" << reg >> 389 << G4endl; >> 390 } >> 391 >> 392 >> 393 // calculate factors to provide continuity of energy loss >> 394 factor[0] = 1.0; >> 395 G4int j; >> 396 >> 397 G4int totBinsLoss = aVector->GetVectorLength(); >> 398 >> 399 dedxLow[0] = 0.0; >> 400 >> 401 e = upperEkin[regModels->ModelIndex(0)]; >> 402 dedxHigh[0] = models[regModels->ModelIndex(0)]->ComputeDEDX(material,particle,e,cut); >> 403 >> 404 if(nmod > 1) { >> 405 for(j=1; j<nmod; j++) { >> 406 >> 407 e = upperEkin[regModels->ModelIndex(j-1)]; >> 408 dedxLow[j] = models[regModels->ModelIndex(j)]->ComputeDEDX(material,particle,e,cut); >> 409 e = upperEkin[regModels->ModelIndex(j)]; >> 410 dedxHigh[j] = models[regModels->ModelIndex(j)]->ComputeDEDX(material,particle,e,cut); >> 411 } >> 412 >> 413 for(j=1; j<nmod; j++) { >> 414 if(dedxLow[j] > 0.0) factor[j] = (dedxHigh[j-1]/dedxLow[j] - 1.0); >> 415 else factor[j] = 0.0; >> 416 } >> 417 >> 418 if(1 < verboseLevel) { >> 419 G4cout << "Loop over " << totBinsLoss << " bins start " << G4endl; >> 420 } >> 421 } 582 422 583 // Calculate energy losses vector 423 // Calculate energy losses vector 584 std::size_t totBinsLoss = aVector->GetVector << 424 for(j=0; j<totBinsLoss; j++) { 585 G4double del = 0.0; << 586 G4int k0 = 0; << 587 425 588 for(std::size_t j=0; j<totBinsLoss; ++j) { << 426 G4double e = aVector->GetLowEdgeEnergy(j); 589 G4double e = aVector->Energy(j); << 427 G4double fac = 1.0; 590 428 591 // Choose a model of energy losses << 429 // Choose a model of energy losses 592 G4int k = 0; 430 G4int k = 0; 593 if (nmod > 1) { << 431 if (nmod > 1 && e > upperEkin[regModels->ModelIndex(0)]) { 594 k = nmod; << 432 do { 595 // Loop checking, 03-Aug-2015, Vladimir << 433 k++; 596 do {--k;} while (k>0 && e <= regModels-> << 434 fac *= (1.0 + factor[k]*upperEkin[regModels->ModelIndex(k-1)]/e); 597 //G4cout << "k= " << k << G4endl; << 435 } while (k<nmod-1 && e < upperEkin[regModels->ModelIndex(k)] ); 598 if(k > 0 && k != k0) { << 599 k0 = k; << 600 G4double elow = regModels->LowEdgeEner << 601 G4double dedx1 = << 602 models[regModels->ModelIndex(k-1)]->Comput << 603 G4double dedx2 = << 604 models[regModels->ModelIndex(k)]->ComputeD << 605 del = (dedx2 > 0.0) ? (dedx1/dedx2 - 1 << 606 //G4cout << "elow= " << elow << 607 // << " dedx1= " << dedx1 << " d << 608 } << 609 } 436 } 610 G4double dedx = (1.0 + del/e)* << 611 models[regModels->ModelIndex(k)]->ComputeD << 612 437 613 if(2 < verboseLevel) { << 438 G4double dedx = models[regModels->ModelIndex(k)]->ComputeDEDX(material,particle,e,cut)*fac; 614 G4cout << "Material= " << couple->GetMat << 439 615 << " E(MeV)= " << e/MeV << 440 if(dedx < 0.0) dedx = 0.0; 616 << " dEdx(MeV/mm)= " << dedx*mm/ << 441 if(1 < verboseLevel) { 617 << " del= " << del*mm/MeV<< " k= << 442 G4cout << "Material= " << material->GetName() 618 << " modelIdx= " << regModels->Mo << 443 << " E(MeV)= " << e/MeV 619 << G4endl; << 444 << " dEdx(MeV/mm)= " << dedx*mm/MeV >> 445 << " fac= " << fac >> 446 << G4endl; 620 } 447 } 621 dedx = std::max(dedx, 0.0); << 622 aVector->PutValue(j, dedx); 448 aVector->PutValue(j, dedx); 623 } 449 } 624 } 450 } 625 451 >> 452 626 //....oooOO0OOooo........oooOO0OOooo........oo 453 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 627 454 628 void G4EmModelManager::FillLambdaVector(G4Phys 455 void G4EmModelManager::FillLambdaVector(G4PhysicsVector* aVector, 629 const << 456 const G4MaterialCutsCouple* couple, 630 G4bool << 457 G4bool startFromNull) 631 G4EmTa << 632 { 458 { 633 std::size_t i = couple->GetIndex(); << 634 G4double cut = (*theCuts)[i]; << 635 G4double tmax = DBL_MAX; << 636 459 637 G4int reg = 0; << 460 // vectors to provide continues dE/dx 638 if(nRegions > 1 && nEmModels > 1) { reg = i << 461 G4DataVector factor; >> 462 G4DataVector sigmaLow; >> 463 G4DataVector sigmaHigh; >> 464 >> 465 G4double e; >> 466 >> 467 const G4Material* material = couple->GetMaterial(); >> 468 >> 469 if(0 < verboseLevel) { >> 470 G4cout << "G4EmModelManager::FillLambdaVector() for particle " >> 471 << particle->GetParticleName() >> 472 << " in " << material->GetName() >> 473 << G4endl; >> 474 } >> 475 >> 476 >> 477 size_t i = couple->GetIndex(); >> 478 G4double cut = theCuts[i]; >> 479 >> 480 G4int reg = idxOfRegionModels[i]; 639 const G4RegionModels* regModels = setOfRegio 481 const G4RegionModels* regModels = setOfRegionModels[reg]; 640 G4int nmod = regModels->NumberOfModels(); 482 G4int nmod = regModels->NumberOfModels(); >> 483 factor.resize(nmod); >> 484 sigmaLow.resize(nmod); >> 485 sigmaHigh.resize(nmod); >> 486 641 if(1 < verboseLevel) { 487 if(1 < verboseLevel) { 642 G4cout << "G4EmModelManager::FillLambdaVec << 488 G4cout << "There are " << nmod << " models for " 643 << particle->GetParticleName() << 489 << material->GetName() << G4endl; 644 << " in " << couple->GetMaterial()- << 490 } 645 << " Emin(MeV)= " << aVector->Energ << 491 646 << " Emax(MeV)= " << aVector->GetMa << 492 // calculate factors to provide continuity of energy loss 647 << " cut= " << cut << 493 factor[0] = 1.0; 648 << " Type " << tType << 494 G4int j; 649 << " nmod= " << nmod << 495 G4int totBinsLambda = aVector->GetVectorLength(); 650 << G4endl; << 496 >> 497 sigmaLow[0] = 0.0; >> 498 >> 499 e = upperEkin[regModels->ModelIndex(0)]; >> 500 >> 501 if(1 < verboseLevel) { >> 502 G4cout << "### For material " << material->GetName() >> 503 << " " << nmod >> 504 << " models" >> 505 << " Ecut(MeV)= " << cut/MeV >> 506 << " Emax(MeV)= " << e/MeV >> 507 << " nbins= " << totBinsLambda >> 508 << G4endl; >> 509 } >> 510 >> 511 sigmaHigh[0] = models[regModels->ModelIndex(0)]->CrossSection(material,particle,e,cut,e); >> 512 >> 513 if(nmod > 1) { >> 514 >> 515 for(j=1; j<nmod; j++) { >> 516 >> 517 e = upperEkin[regModels->ModelIndex(j-1)]; >> 518 sigmaLow[j] = models[regModels->ModelIndex(j)]->CrossSection(material,particle,e,cut,e); >> 519 e = upperEkin[regModels->ModelIndex(j)]; >> 520 sigmaHigh[j] = models[regModels->ModelIndex(j)]->CrossSection(material,particle,e,cut,e); >> 521 } >> 522 for(j=1; j<nmod; j++) { >> 523 if(sigmaLow[j] > 0.0) factor[j] = (sigmaHigh[j-1]/sigmaLow[j] - 1.0); >> 524 else factor[j] = 0.0; >> 525 } 651 } 526 } 652 527 653 // Calculate lambda vector 528 // Calculate lambda vector 654 std::size_t totBinsLambda = aVector->GetVect << 529 for(j=0; j<totBinsLambda; j++) { 655 G4double del = 0.0; << 530 656 G4int k0 = 0; << 531 e = aVector->GetLowEdgeEnergy(j); 657 G4int k = 0; << 532 658 G4VEmModel* mod = models[regModels->ModelInd << 533 // Choose a model of energy losses 659 for(std::size_t j=0; j<totBinsLambda; ++j) { << 534 G4int k = 0; 660 << 535 G4double fac = 1.0; 661 G4double e = aVector->Energy(j); << 536 if (nmod > 1 && e > upperEkin[regModels->ModelIndex(0)]) { 662 << 537 do { 663 // Choose a model << 538 k++; 664 if (nmod > 1) { << 539 fac *= (1.0 + factor[k]*upperEkin[regModels->ModelIndex(k-1)]/e); 665 k = nmod; << 540 } while (k<nmod-1 && e < upperEkin[regModels->ModelIndex(k)] ); 666 // Loop checking, 03-Aug-2015, Vladimir << 667 do {--k;} while (k>0 && e <= regModels-> << 668 if(k > 0 && k != k0) { << 669 k0 = k; << 670 G4double elow = regModels->LowEdgeEner << 671 G4VEmModel* mod1 = models[regModels->M << 672 G4double xs1 = mod1->CrossSection(cou << 673 mod = models[regModels->ModelIndex(k)] << 674 G4double xs2 = mod->CrossSection(coupl << 675 del = (xs2 > 0.0) ? (xs1/xs2 - 1.0)*el << 676 //G4cout << "New model k=" << k << " E << 677 // << " Elow(MeV)= " << elow/MeV << 678 } << 679 } 541 } 680 G4double cross = (1.0 + del/e)*mod->CrossS << 681 if(fIsCrossSectionPrim == tType) { cross * << 682 << 683 if(j==0 && startFromNull) { cross = 0.0; } << 684 542 685 if(2 < verboseLevel) { << 543 G4double cross = models[regModels->ModelIndex(k)]->CrossSection(material,particle,e,cut,e)*fac; >> 544 if(j==0 && startFromNull) cross = 0.0; >> 545 >> 546 if(1 < verboseLevel) { 686 G4cout << "FillLambdaVector: " << j << " 547 G4cout << "FillLambdaVector: " << j << ". e(MeV)= " << e/MeV 687 << " cross(1/mm)= " << cross*mm << 548 << " cross(1/mm)= " << cross*mm 688 << " del= " << del*mm << " k= " < << 549 << " fac= " << fac 689 << " modelIdx= " << regModels->Mo << 550 << G4endl; 690 << G4endl; << 691 } 551 } 692 cross = std::max(cross, 0.0); << 552 if(cross < 0.0) cross = 0.0; >> 553 693 aVector->PutValue(j, cross); 554 aVector->PutValue(j, cross); 694 } 555 } 695 } 556 } 696 557 697 //....oooOO0OOooo........oooOO0OOooo........oo 558 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 698 559 699 void G4EmModelManager::DumpModelList(std::ostr << 560 void G4EmModelManager::FillSubLambdaVector(G4PhysicsVector* aVector, >> 561 const G4MaterialCutsCouple* couple, >> 562 G4bool startFromNull) 700 { 563 { 701 if(verb == 0) { return; } << 564 if(0 < verboseLevel) { 702 for(G4int i=0; i<nRegions; ++i) { << 565 G4cout << "G4EmModelManager::BuildLambdaSubTable() for particle " 703 G4RegionModels* r = setOfRegionModels[i]; << 566 << particle->GetParticleName() << G4endl; 704 const G4Region* reg = r->Region(); << 567 } 705 G4int n = r->NumberOfModels(); << 568 706 if(n > 0) { << 569 707 out << " ===== EM models for the G4 << 570 // vectors to provide continues dE/dx 708 << " ======" << G4endl; << 571 G4DataVector factor; 709 for(G4int j=0; j<n; ++j) { << 572 G4DataVector sigmaLow; 710 G4VEmModel* model = models[r->ModelInd << 573 G4DataVector sigmaHigh; 711 G4double emin = << 574 712 std::max(r->LowEdgeEnergy(j),model-> << 575 G4double e; 713 G4double emax = << 576 714 std::min(r->LowEdgeEnergy(j+1),model << 577 const G4Material* material = couple->GetMaterial(); 715 if(emax > emin) { << 578 size_t i = couple->GetIndex(); 716 out << std::setw(20); << 579 G4double cut = theCuts[i]; 717 out << model->GetName() << " : Emin=" << 580 G4double subcut = theSubCuts[i]; 718 << std::setw(5) << G4BestUnit(emin,"En << 581 719 << " Emax=" << 582 G4int reg = idxOfRegionModels[i]; 720 << std::setw(5) << G4BestUnit(emax,"En << 583 const G4RegionModels* regModels = setOfRegionModels[reg]; 721 G4PhysicsTable* table = model->GetCrossSec << 584 G4int nmod = regModels->NumberOfModels(); 722 if(table) { << 585 factor.resize(nmod); 723 std::size_t kk = table->size(); << 586 sigmaLow.resize(nmod); 724 for(std::size_t k=0; k<kk; ++k) { << 587 sigmaHigh.resize(nmod); 725 const G4PhysicsVector* v = (*table)[k] << 588 726 if(v) { << 589 if(0 < verboseLevel) { 727 G4int nn = G4int(v->GetVectorLength() - 1) << 590 G4cout << "There are " << nmod << " models for " 728 out << " Nbins=" << nn << " " << 591 << material->GetName() << G4endl; 729 << std::setw(3) << G4BestUnit(v->Energ << 592 } 730 << " - " << 593 731 << std::setw(3) << G4BestUnit(v->Energ << 594 // calculate factors to provide continuity of energy loss 732 break; << 595 factor[0] = 1.0; 733 } << 596 G4int j; 734 } << 597 G4int totBinsLambda = aVector->GetVectorLength(); 735 } << 598 736 G4VEmAngularDistribution* an = model->GetA << 599 sigmaLow[0] = 0.0; 737 if(an) { out << " " << an->GetName(); } << 600 738 if(fluoFlag && model->DeexcitationFlag()) << 601 e = upperEkin[regModels->ModelIndex(0)]; 739 out << " Fluo"; << 602 740 } << 603 741 out << G4endl; << 604 if(1 < verboseLevel) { 742 auto msc = dynamic_cast<G4VMscModel* << 605 G4cout << "### For material " << material->GetName() 743 if(msc != nullptr) msc->DumpParamete << 606 << " are available " << nmod 744 } << 607 << " models" 745 } << 608 << " Ecut(MeV)= " << cut/MeV >> 609 << " nbins= " << totBinsLambda >> 610 << G4endl; >> 611 } >> 612 >> 613 sigmaHigh[0] = models[regModels->ModelIndex(0)]->CrossSection(material,particle,e,subcut,cut); >> 614 >> 615 if(nmod > 1) { >> 616 >> 617 for(j=1; j<nmod; j++) { >> 618 >> 619 e = upperEkin[regModels->ModelIndex(j-1)]; >> 620 sigmaLow[j] = models[regModels->ModelIndex(j)]->CrossSection(material,particle,e,subcut,cut); >> 621 e = upperEkin[regModels->ModelIndex(j)]; >> 622 sigmaHigh[j] = models[regModels->ModelIndex(j)]->CrossSection(material,particle,e,subcut,cut); >> 623 } >> 624 for(j=1; j<nmod; j++) { >> 625 if(sigmaLow[j] > 0.0) factor[j] = (sigmaHigh[j-1]/sigmaLow[j] - 1.0); >> 626 else factor[j] = 0.0; 746 } 627 } 747 if(1 == nEmModels) { break; } << 748 } 628 } 749 if(theCutsNew) { << 629 750 out << " ===== Limit on energy thresh << 630 // Calculate energy losses vector >> 631 for(j=0; j<totBinsLambda; j++) { >> 632 >> 633 e = aVector->GetLowEdgeEnergy(j); >> 634 >> 635 // Choose a model of energy losses >> 636 G4int k = 0; >> 637 G4double fac = 1.0; >> 638 if (nmod > 1 && e > upperEkin[regModels->ModelIndex(0)]) { >> 639 do { >> 640 k++; >> 641 fac *= (1.0 + factor[k]*upperEkin[regModels->ModelIndex(k-1)]/e); >> 642 } while (k<nmod-1 && e < upperEkin[regModels->ModelIndex(k)] ); >> 643 } >> 644 >> 645 G4double cross=models[regModels->ModelIndex(k)]->CrossSection(material,particle,e,subcut,cut)*fac; >> 646 if(j==0 && startFromNull) cross = 0.0; >> 647 >> 648 if(1 < verboseLevel) { >> 649 G4cout << "BuildLambdaTable: e(MeV)= " << e/MeV >> 650 << " cross(1/mm)= " << cross*mm >> 651 << " fac= " << fac >> 652 << G4endl; >> 653 } >> 654 if(cross < 0.0) cross = 0.0; >> 655 >> 656 aVector->PutValue(j, cross); 751 } 657 } 752 } 658 } 753 659 754 //....oooOO0OOooo........oooOO0OOooo........oo 660 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 755 661