Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4CookShellCorrections Class Reference

#include <G4CookShellCorrections.hh>

Public Types

enum  {
  ZTableSize = 68 , NTableSize = 118 , ZTableMin = 28 , ZTableMax = 95 ,
  NTableMin = 33 , NTableMax = 150
}
 

Public Member Functions

 G4CookShellCorrections ()
 
 ~G4CookShellCorrections ()=default
 
G4bool GetShellCorrection (G4int N, G4int Z, G4double &result) const
 
 G4CookShellCorrections (const G4CookShellCorrections &right)=delete
 
const G4CookShellCorrectionsoperator= (const G4CookShellCorrections &right)=delete
 

Detailed Description

Definition at line 41 of file G4CookShellCorrections.hh.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
ZTableSize 
NTableSize 
ZTableMin 
ZTableMax 
NTableMin 
NTableMax 

Definition at line 59 of file G4CookShellCorrections.hh.

Constructor & Destructor Documentation

◆ G4CookShellCorrections() [1/2]

G4CookShellCorrections::G4CookShellCorrections ( )

Definition at line 66 of file G4CookShellCorrections.cc.

66{}

Referenced by G4CookShellCorrections(), and operator=().

◆ ~G4CookShellCorrections()

G4CookShellCorrections::~G4CookShellCorrections ( )
default

◆ G4CookShellCorrections() [2/2]

G4CookShellCorrections::G4CookShellCorrections ( const G4CookShellCorrections & right)
delete

Member Function Documentation

◆ GetShellCorrection()

G4bool G4CookShellCorrections::GetShellCorrection ( G4int N,
G4int Z,
G4double & result ) const
inline

Definition at line 49 of file G4CookShellCorrections.hh.

50 {
51 G4bool res = false;
52 if(Z >= ZTableMin && Z <= ZTableMax && N >= NTableMin && N <= NTableMax) {
53 result = ShellZTable[Z-ZTableMin] + ShellNTable[N-NTableMin];
54 res = true;
55 }
56 return res;
57 }
bool G4bool
Definition G4Types.hh:86
#define N
Definition crc32.c:57

◆ operator=()

const G4CookShellCorrections & G4CookShellCorrections::operator= ( const G4CookShellCorrections & right)
delete

The documentation for this class was generated from the following files: