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 // >> 23 // $Id: G4VMultipleScattering.hh,v 1.19 2004/05/25 11:30:08 vnivanch Exp $ >> 24 // GEANT4 tag $Name: geant4-06-02 $ 26 // 25 // 27 // ------------------------------------------- 26 // ------------------------------------------------------------------- 28 // 27 // 29 // GEANT4 Class header file 28 // GEANT4 Class header file 30 // 29 // 31 // 30 // 32 // File name: G4VMultipleScattering 31 // File name: G4VMultipleScattering 33 // 32 // 34 // Author: Vladimir Ivanchenko on base 33 // Author: Vladimir Ivanchenko on base of Laszlo Urban code 35 // 34 // 36 // Creation date: 12.03.2002 35 // Creation date: 12.03.2002 37 // 36 // 38 // Modifications: 37 // Modifications: 39 // 38 // 40 // 16-07-03 Update GetRange interface (V.Ivanc 39 // 16-07-03 Update GetRange interface (V.Ivanchenko) 41 // 26-11-03 bugfix in AlongStepDoIt (L.Urban) << 40 // 42 // 25-05-04 add protection against case when r << 43 // 27-08-04 Add InitialiseForRun method (V.Iva << 44 // 08-11-04 Migration to new interface of Stor << 45 // 15-04-05 remove boundary flag (V.Ivanchenko << 46 // 07-10-05 error in a protection in GetContin << 47 // 27-10-05 introduce virtual function MscStep << 48 // 26-01-06 Rename GetRange -> GetRangeFromRes << 49 // 17-02-06 Save table of transport cross sect << 50 // 07-03-06 Move step limit calculation to mod << 51 // 13-05-06 Add method to access model by inde << 52 // 12-02-07 Add get/set skin (V.Ivanchenko) << 53 // 27-10-07 Virtual functions moved to source << 54 // 15-07-08 Reorder class members for further << 55 // 07-04-09 Moved msc methods from G4VEmModel << 56 // 41 // 57 // Class Description: 42 // Class Description: 58 // 43 // 59 // It is the generic process of multiple scatt 44 // It is the generic process of multiple scattering it includes common 60 // part of calculations for all charged partic 45 // part of calculations for all charged particles >> 46 // >> 47 // 26-11-03 bugfix in AlongStepDoIt (L.Urban) >> 48 // 25-05-04 add protection against case when range is less than steplimit (V.Ivanchenko) 61 49 62 // ------------------------------------------- 50 // ------------------------------------------------------------------- 63 // 51 // 64 52 65 #ifndef G4VMultipleScattering_h 53 #ifndef G4VMultipleScattering_h 66 #define G4VMultipleScattering_h 1 54 #define G4VMultipleScattering_h 1 67 55 68 #include "G4VContinuousDiscreteProcess.hh" 56 #include "G4VContinuousDiscreteProcess.hh" >> 57 #include "G4LossTableManager.hh" 69 #include "globals.hh" 58 #include "globals.hh" 70 #include "G4Material.hh" 59 #include "G4Material.hh" >> 60 #include "G4MaterialCutsCouple.hh" 71 #include "G4ParticleChangeForMSC.hh" 61 #include "G4ParticleChangeForMSC.hh" 72 #include "G4Track.hh" 62 #include "G4Track.hh" 73 #include "G4Step.hh" << 74 #include "G4EmModelManager.hh" 63 #include "G4EmModelManager.hh" 75 #include "G4VMscModel.hh" << 64 #include "G4VEmModel.hh" 76 #include "G4EmParameters.hh" << 77 #include "G4MscStepLimitType.hh" << 78 65 >> 66 class G4Step; 79 class G4ParticleDefinition; 67 class G4ParticleDefinition; 80 class G4VEnergyLossProcess; << 68 class G4DataVector; 81 class G4LossTableManager; << 69 class G4Navigator; 82 class G4SafetyHelper; << 70 class G4PhysicsTable; >> 71 class G4PhysicsVector; 83 72 84 //....oooOO0OOooo........oooOO0OOooo........oo 73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 85 74 86 class G4VMultipleScattering : public G4VContin 75 class G4VMultipleScattering : public G4VContinuousDiscreteProcess 87 { 76 { 88 public: 77 public: 89 78 90 explicit G4VMultipleScattering(const G4Strin << 79 G4VMultipleScattering(const G4String& name = "msc", 91 G4ProcessType << 80 G4ProcessType type = fElectromagnetic); 92 << 93 ~G4VMultipleScattering() override; << 94 << 95 //------------------------------------------ << 96 // Virtual methods to be implemented for the << 97 //------------------------------------------ << 98 81 99 void ProcessDescription(std::ostream& outFil << 82 ~G4VMultipleScattering(); 100 83 101 virtual void InitialiseProcess(const G4Parti << 84 virtual G4bool IsApplicable(const G4ParticleDefinition& p) = 0; >> 85 // True for all charged particles 102 86 103 // Print out of generic class parameters << 87 virtual void BuildPhysicsTable(const G4ParticleDefinition&); 104 void StreamInfo(std::ostream& outFile, const << 88 // Build physics table during initialisation 105 G4bool rst = false) const; << 106 89 107 protected: << 90 G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&); 108 << 109 virtual void StreamProcessInfo(std::ostream& << 110 91 111 public: << 92 G4VParticleChange* PostStepDoIt(const G4Track&, const G4Step&); 112 93 113 //------------------------------------------ << 114 // Generic methods common to all ContinuousD << 115 //------------------------------------------ << 116 << 117 // Initialise for build of tables << 118 void PreparePhysicsTable(const G4ParticleDef << 119 << 120 // Build physics table during initialisation << 121 void BuildPhysicsTable(const G4ParticleDefin << 122 << 123 // Store PhysicsTable in a file. << 124 // Return false in case of failure at I/O << 125 G4bool StorePhysicsTable(const G4ParticleDef << 126 const G4String& dir << 127 G4bool ascii = fals << 128 << 129 // Retrieve Physics from a file. << 130 // (return true if the Physics Table can be << 131 // (return false if the process has no funct << 132 // File name should is constructed as proces << 133 // should be placed under the directory spec << 134 G4bool RetrievePhysicsTable(const G4Particle << 135 const G4String& << 136 G4bool ascii) ov << 137 << 138 // This is called in the beginning of tracki << 139 void StartTracking(G4Track*) override; << 140 << 141 // The function overloads the corresponding << 142 // class.It limits the step near to boundari << 143 // and invokes the method GetMscContinuousSt << 144 G4double AlongStepGetPhysicalInteractionLeng 94 G4double AlongStepGetPhysicalInteractionLength( 145 const << 95 const G4Track&, 146 G4doub << 96 G4double previousStepSize, 147 G4doub << 97 G4double currentMinimalStep, 148 G4doub << 98 G4double& currentSafety, 149 G4GPIL << 99 G4GPILSelection* selection); 150 << 100 // The function overloads the corresponding function of the base 151 // The function overloads the corresponding << 101 // class.It limits the step near to boundaries only 152 // class. << 102 // and invokes the method GetContinuousStepLimit at every step. 153 G4double PostStepGetPhysicalInteractionLengt << 103 154 const G4 << 104 virtual void PrintInfoDefinition(); 155 G4double << 105 // Print out of the class parameters 156 G4ForceC << 106 >> 107 void SetBinning(G4int nbins); >> 108 G4int Binning() const; >> 109 // Print out of the class parameters >> 110 >> 111 void SetMinKinEnergy(G4double e); >> 112 G4double MinKinEnergy() const; >> 113 // Print out of the class parameters >> 114 >> 115 void SetMaxKinEnergy(G4double e); >> 116 G4double MaxKinEnergy() const; >> 117 // Print out of the class parameters >> 118 >> 119 G4bool StorePhysicsTable(G4ParticleDefinition*, >> 120 const G4String& directory, >> 121 G4bool ascii = false); >> 122 // Store PhysicsTable in a file. >> 123 // Return false in case of failure at I/O >> 124 >> 125 G4bool RetrievePhysicsTable(G4ParticleDefinition*, >> 126 const G4String& directory, >> 127 G4bool ascii); >> 128 // Retrieve Physics from a file. >> 129 // (return true if the Physics Table can be build by using file) >> 130 // (return false if the process has no functionality or in case of failure) >> 131 // File name should is constructed as processName+particleName and the >> 132 // should be placed under the directory specifed by the argument. 157 133 158 // Along step actions << 134 void AddEmModel(G4int, G4VEmModel*, const G4Region* region = 0); 159 G4VParticleChange* AlongStepDoIt(const G4Tra << 160 135 161 // This method does not used for tracking, i << 162 G4double ContinuousStepLimit(const G4Track& 136 G4double ContinuousStepLimit(const G4Track& track, 163 G4double previo << 137 G4double previousStepSize, 164 G4double curren << 138 G4double currentMinimalStep, 165 G4double& curre << 139 G4double& currentSafety); 166 << 140 // This method does not used for tracking, it is intended only for tests 167 // hide assignment operator << 168 G4VMultipleScattering(G4VMultipleScattering << 169 G4VMultipleScattering & operator=(const G4VM << 170 << 171 //------------------------------------------ << 172 // Specific methods to set, access, modify m << 173 //------------------------------------------ << 174 141 175 // Select model in run time << 142 G4bool LateralDisplasmentFlag() const; 176 inline G4VEmModel* SelectModel(G4double kinE << 143 void SetLateralDisplasmentFlag(G4bool val); >> 144 // lateral displacement to be/not to be computed >> 145 >> 146 G4bool BoundaryAlgorithmFlag() const; >> 147 void SetBoundary(G4bool val); >> 148 // boundary algorith is/isnt active >> 149 >> 150 void SetBuildLambdaTable(G4bool val); >> 151 >> 152 virtual G4double TruePathLengthLimit(const G4Track& track, >> 153 G4double& lambda, >> 154 G4double currentMinimalStep) = 0; 177 155 178 public: << 179 << 180 // Add model for region, smaller value of or << 181 // model will be selected for a given energy << 182 void AddEmModel(G4int order, G4VMscModel*, c << 183 << 184 // Assign a model to a process local list, t << 185 // the derived process should execute AddEmM << 186 void SetEmModel(G4VMscModel*, G4int idx = 0) << 187 << 188 // return a model from the local list << 189 inline G4VMscModel* EmModel(size_t index = 0 << 190 << 191 // Access to run time models << 192 inline G4int NumberOfModels() const; << 193 << 194 inline G4VMscModel* GetModelByIndex(G4int id << 195 << 196 //------------------------------------------ << 197 // Get/Set parameters for simulation of mult << 198 //------------------------------------------ << 199 << 200 inline G4bool LateralDisplasmentFlag() const << 201 << 202 inline G4double Skin() const; << 203 << 204 inline G4double RangeFactor() const; << 205 << 206 inline G4double GeomFactor() const; << 207 << 208 inline G4double PolarAngleLimit() const; << 209 << 210 inline G4bool UseBaseMaterial() const; << 211 << 212 inline G4MscStepLimitType StepLimitType() co << 213 inline void SetStepLimitType(G4MscStepLimitT << 214 << 215 inline G4double LowestKinEnergy() const; << 216 inline void SetLowestKinEnergy(G4double val) << 217 << 218 inline const G4ParticleDefinition* FirstPart << 219 << 220 //------------------------------------------ << 221 // Run time methods << 222 //------------------------------------------ << 223 156 224 protected: 157 protected: 225 158 226 // This method is not used for tracking, it << 159 virtual void InitialiseProcess(const G4ParticleDefinition&) = 0; >> 160 227 G4double GetMeanFreePath(const G4Track& trac 161 G4double GetMeanFreePath(const G4Track& track, 228 G4double, << 162 G4double, 229 G4ForceCondition* c << 163 G4ForceCondition* condition); >> 164 // This method is used for tracking, it returns mean free path value >> 165 >> 166 G4double GetLambda(const G4ParticleDefinition* p, G4double& kineticEnergy); 230 167 231 // This method is not used for tracking, it << 232 G4double GetContinuousStepLimit(const G4Trac 168 G4double GetContinuousStepLimit(const G4Track& track, 233 G4double pre << 169 G4double previousStepSize, 234 G4double cur << 170 G4double currentMinimalStep, 235 G4double& cu << 171 G4double& currentSafety); >> 172 // This method is used for tracking, it returns step limit 236 173 237 private: << 174 virtual G4PhysicsVector* PhysicsVector(const G4MaterialCutsCouple*); >> 175 // Build empty Physics Vector 238 176 239 // ======== Parameters of the class fixed at << 177 void SelectModel(G4double& kinEnergy); >> 178 // Select concrete model 240 179 241 G4EmModelManager* modelManager; << 180 size_t CurrentMaterialCutsCoupleIndex() const {return currentMaterialIndex;}; 242 G4LossTableManager* emManager; << 181 // Return current index 243 G4EmParameters* theParameters; << 244 182 245 // ======== Parameters of the class fixed at << 183 G4double CurrentRange() const {return currentRange;}; 246 184 247 G4SafetyHelper* safetyHelper = n << 185 private: 248 const G4ParticleDefinition* firstParticle = << 249 const G4ParticleDefinition* currParticle = n << 250 << 251 std::vector<G4VMscModel*> mscModels; << 252 186 253 G4double facrange = 0.04; << 187 void DefineMaterial(const G4MaterialCutsCouple* couple); 254 G4double lowestKinEnergy; << 188 // define current material 255 189 256 // ======== Cached values - may be state dep << 190 // hide assignment operator 257 191 258 protected: << 192 G4VMultipleScattering(G4VMultipleScattering &); >> 193 G4VMultipleScattering & operator=(const G4VMultipleScattering &right); 259 194 260 G4ParticleChangeForMSC fParticleChange; << 195 // ===================================================================== 261 196 262 private: 197 private: 263 198 264 G4ThreeVector fNewPosition; << 199 G4ParticleChangeForMSC fParticleChange; 265 G4ThreeVector fNewDirection; << 200 G4EmModelManager* modelManager; >> 201 G4Navigator* navigator; >> 202 G4VEmModel* currentModel; 266 203 267 G4VMscModel* currentModel = n << 204 // tables and vectors 268 G4VEnergyLossProcess* fIonisation = nu << 205 G4PhysicsTable* theLambdaTable; 269 206 270 G4double geomMin; << 207 // cash 271 G4double minDisplacement2 << 208 const G4ParticleDefinition* currentParticle; 272 G4double physStepLimit = << 209 const G4MaterialCutsCouple* currentCouple; 273 G4double tPathLength = 0. << 210 size_t currentMaterialIndex; 274 G4double gPathLength = 0. << 211 275 << 212 G4int nBins; 276 G4MscStepLimitType stepLimit = fUse << 213 277 G4int numberOfModels = << 214 G4double minKinEnergy; 278 << 215 G4double maxKinEnergy; 279 G4bool latDisplacement << 216 280 G4bool isIon = false; << 217 G4double trueStepLength; 281 G4bool fPositionChanged << 218 G4double truePathLength; 282 G4bool isActive = false << 219 G4double geomPathLength; 283 G4bool baseMat = false; << 220 G4double lambda0; >> 221 G4double currentRange; >> 222 >> 223 G4GPILSelection valueGPILSelectionMSC; >> 224 G4bool boundary; >> 225 G4bool latDisplasment; >> 226 G4bool buildLambdaTable; 284 }; 227 }; 285 228 286 // ======== Run time inline methods ========== << 229 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 230 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 231 >> 232 inline void G4VMultipleScattering::DefineMaterial(const G4MaterialCutsCouple* couple) >> 233 { >> 234 if(couple != currentCouple) { >> 235 currentCouple = couple; >> 236 currentMaterialIndex = couple->GetIndex(); >> 237 } >> 238 } 287 239 288 //....oooOO0OOooo........oooOO0OOooo........oo 240 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 289 241 290 inline G4VEmModel* << 242 inline G4double G4VMultipleScattering::GetMeanFreePath(const G4Track&, 291 G4VMultipleScattering::SelectModel(G4double ki << 243 G4double, >> 244 G4ForceCondition* cond) 292 { 245 { 293 return modelManager->SelectModel(kinEnergy, << 246 *cond = Forced; >> 247 return DBL_MAX; >> 248 } >> 249 >> 250 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 251 >> 252 inline G4double G4VMultipleScattering::AlongStepGetPhysicalInteractionLength( >> 253 const G4Track& track, >> 254 G4double previousStepSize, >> 255 G4double currentMinimalStep, >> 256 G4double& currentSafety, >> 257 G4GPILSelection* selection) >> 258 { >> 259 // get Step limit proposed by the process >> 260 valueGPILSelectionMSC = NotCandidateForSelection; >> 261 G4double steplength = GetContinuousStepLimit(track,previousStepSize, >> 262 currentMinimalStep,currentSafety); >> 263 // set return value for G4GPILSelection >> 264 *selection = valueGPILSelectionMSC; >> 265 return steplength; 294 } 266 } 295 267 296 //....oooOO0OOooo........oooOO0OOooo........oo 268 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 297 269 298 inline G4bool G4VMultipleScattering::LateralD << 270 inline G4double G4VMultipleScattering::GetContinuousStepLimit( >> 271 const G4Track& track, >> 272 G4double, >> 273 G4double currentMinimalStep, >> 274 G4double&) >> 275 { >> 276 DefineMaterial(track.GetMaterialCutsCouple()); >> 277 G4double e = track.GetKineticEnergy(); >> 278 SelectModel(e); >> 279 if(!theLambdaTable) currentModel->SetDynamicParticle(track.GetDynamicParticle()); >> 280 const G4ParticleDefinition* p = track.GetDefinition(); >> 281 lambda0 = GetLambda(p, e); >> 282 currentRange = G4LossTableManager::Instance()->GetTrancatedRange(p,e,currentCouple); >> 283 if(currentRange < currentMinimalStep) currentRange = currentMinimalStep; >> 284 truePathLength = TruePathLengthLimit(track,lambda0,currentMinimalStep); >> 285 //G4cout << "StepLimit: tpl= " << truePathLength << " lambda0= " >> 286 // << lambda0 << " range= " << currentRange >> 287 // << " currentMinStep= " << currentMinimalStep << G4endl; >> 288 if (truePathLength < currentMinimalStep) valueGPILSelectionMSC = CandidateForSelection; >> 289 geomPathLength = currentModel->GeomPathLength(theLambdaTable,currentCouple, >> 290 p,e,lambda0,currentRange,truePathLength); >> 291 if(geomPathLength > lambda0) geomPathLength = lambda0; >> 292 return geomPathLength; >> 293 } >> 294 >> 295 >> 296 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 297 >> 298 inline G4double G4VMultipleScattering::ContinuousStepLimit( >> 299 const G4Track& track, >> 300 G4double previousStepSize, >> 301 G4double currentMinimalStep, >> 302 G4double& currentSafety) 299 { 303 { 300 return latDisplacement; << 304 return GetContinuousStepLimit(track,previousStepSize,currentMinimalStep, >> 305 currentSafety); 301 } 306 } 302 307 303 //....oooOO0OOooo........oooOO0OOooo........oo 308 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 304 309 305 inline G4double G4VMultipleScattering::Skin() << 310 inline G4double G4VMultipleScattering::GetLambda(const G4ParticleDefinition* p, G4double& e) 306 { 311 { 307 return theParameters->MscSkin(); << 312 G4double x; >> 313 if(theLambdaTable) { >> 314 G4bool b; >> 315 x = ((*theLambdaTable)[currentMaterialIndex])->GetValue(e, b); >> 316 >> 317 } else { >> 318 x = currentModel->CrossSection(currentCouple,p,e,0.0,1.0); >> 319 } >> 320 return x; 308 } 321 } 309 322 310 //....oooOO0OOooo........oooOO0OOooo........oo 323 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 311 324 312 inline G4double G4VMultipleScattering::RangeF << 325 inline G4VParticleChange* G4VMultipleScattering::AlongStepDoIt( >> 326 const G4Track&, >> 327 const G4Step& step) 313 { 328 { 314 return facrange; << 329 G4double geomStepLength = step.GetStepLength(); >> 330 if((geomStepLength == geomPathLength) && (truePathLength <= currentRange)) >> 331 trueStepLength = truePathLength; >> 332 else >> 333 trueStepLength = currentModel->TrueStepLength(geomStepLength); >> 334 fParticleChange.SetTrueStepLength(trueStepLength); >> 335 return &fParticleChange; 315 } 336 } 316 337 317 //....oooOO0OOooo........oooOO0OOooo........oo 338 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 318 339 319 inline G4double G4VMultipleScattering::GeomFa << 340 inline void G4VMultipleScattering::SelectModel(G4double& kinEnergy) 320 { 341 { 321 return theParameters->MscGeomFactor(); << 342 currentModel = modelManager->SelectModel(kinEnergy, currentMaterialIndex); 322 } 343 } 323 344 324 //....oooOO0OOooo........oooOO0OOooo........oo 345 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 325 346 326 inline G4double G4VMultipleScattering::PolarA << 347 inline void G4VMultipleScattering::SetBinning(G4int nbins) 327 { 348 { 328 return theParameters->MscThetaLimit(); << 349 nBins = nbins; 329 } 350 } 330 351 331 //....oooOO0OOooo........oooOO0OOooo........oo 352 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 332 353 333 inline G4MscStepLimitType G4VMultipleScatterin << 354 inline G4int G4VMultipleScattering::Binning() const 334 { 355 { 335 return stepLimit; << 356 return nBins; 336 } 357 } 337 358 338 //....oooOO0OOooo........oooOO0OOooo........oo 359 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 339 360 340 inline void G4VMultipleScattering::SetStepLimi << 361 inline void G4VMultipleScattering::SetMinKinEnergy(G4double e) 341 { 362 { 342 theParameters->SetMscStepLimitType(val); << 363 minKinEnergy = e; 343 } 364 } 344 365 345 //....oooOO0OOooo........oooOO0OOooo........oo 366 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 346 367 347 inline G4double G4VMultipleScattering::LowestK << 368 inline G4double G4VMultipleScattering::MinKinEnergy() const 348 { 369 { 349 return lowestKinEnergy; << 370 return minKinEnergy; 350 } 371 } 351 372 352 //....oooOO0OOooo........oooOO0OOooo........oo 373 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 353 374 354 inline void G4VMultipleScattering::SetLowestKi << 375 inline void G4VMultipleScattering::SetMaxKinEnergy(G4double e) 355 { 376 { 356 lowestKinEnergy = val; << 377 maxKinEnergy = e; 357 } 378 } 358 379 359 //....oooOO0OOooo........oooOO0OOooo........oo 380 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 360 381 361 inline const G4ParticleDefinition* G4VMultiple << 382 inline G4double G4VMultipleScattering::MaxKinEnergy() const >> 383 { >> 384 return maxKinEnergy; >> 385 } >> 386 >> 387 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 388 >> 389 inline G4bool G4VMultipleScattering::LateralDisplasmentFlag() const 362 { 390 { 363 return firstParticle; << 391 return latDisplasment; 364 } 392 } 365 393 366 //....oooOO0OOooo........oooOO0OOooo........oo 394 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 367 395 368 inline G4VMscModel* G4VMultipleScattering::EmM << 396 inline void G4VMultipleScattering::SetLateralDisplasmentFlag(G4bool val) 369 { 397 { 370 return (index < mscModels.size()) ? mscModel << 398 latDisplasment = val; 371 } 399 } 372 400 373 //....oooOO0OOooo........oooOO0OOooo........oo 401 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 374 402 375 inline G4int G4VMultipleScattering::NumberOfMo << 403 inline G4bool G4VMultipleScattering::BoundaryAlgorithmFlag() const 376 { 404 { 377 return numberOfModels; << 405 return boundary; 378 } 406 } 379 407 380 //....oooOO0OOooo........oooOO0OOooo........oo 408 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 381 409 382 inline G4VMscModel* << 410 inline void G4VMultipleScattering::SetBoundary(G4bool val) 383 G4VMultipleScattering::GetModelByIndex(G4int i << 384 { 411 { 385 // static cast is possible inside this class << 412 boundary = val; 386 return static_cast<G4VMscModel*>(modelManage << 387 } 413 } 388 414 389 //....oooOO0OOooo........oooOO0OOooo........oo 415 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 390 416 391 inline G4bool G4VMultipleScattering::UseBaseMa << 417 inline void G4VMultipleScattering::SetBuildLambdaTable(G4bool val) 392 { 418 { 393 return baseMat; << 419 buildLambdaTable = val; 394 } 420 } 395 421 396 //....oooOO0OOooo........oooOO0OOooo........oo 422 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 397 423 398 #endif 424 #endif 399 425