Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
Garfield::OpticalData Class Reference

Photoabsorption cross-sections for some gases. More...

#include <OpticalData.hh>

Public Member Functions

 OpticalData ()=default
 Constructor.
 
 ~OpticalData ()=default
 Destructor.
 

Static Public Member Functions

static bool IsAvailable (const std::string &material)
 Check whether optical data have been implemented for a given gas.
 
static bool PhotoabsorptionCrossSection (const std::string &material, const double energy, double &cs, double &eta)
 Photo-absorption cross-section and ionisation yield at a given energy.
 
static double PhotoabsorptionCrossSection (const std::string &material, const double energy)
 Photo-absorption cross-section at a given energy.
 
static double PhotoionisationYield (const std::string &material, const double energy)
 Photo-ionisation yield at a given energy.
 

Detailed Description

Photoabsorption cross-sections for some gases.

Definition at line 11 of file OpticalData.hh.

Constructor & Destructor Documentation

◆ OpticalData()

Garfield::OpticalData::OpticalData ( )
default

Constructor.

◆ ~OpticalData()

Garfield::OpticalData::~OpticalData ( )
default

Destructor.

Member Function Documentation

◆ IsAvailable()

bool Garfield::OpticalData::IsAvailable ( const std::string & material)
static

Check whether optical data have been implemented for a given gas.

Definition at line 38 of file OpticalData.cc.

38 {
39 std::array<std::string, 9> materials = {
40 {"Ne", "Ar", "CO2", "CH4", "C2H6", "nC4H10", "C2H2", "CF4", "N2"}};
41 auto result = std::find(materials.begin(), materials.end(), material);
42 return result != materials.end();
43}

Referenced by Garfield::MediumGas::GetPhotoAbsorptionCrossSection().

◆ PhotoabsorptionCrossSection() [1/2]

double Garfield::OpticalData::PhotoabsorptionCrossSection ( const std::string & material,
const double energy )
static

Photo-absorption cross-section at a given energy.

Definition at line 61 of file OpticalData.cc.

62 {
63 double cs = 0., eta = 0.;
64 if (!PhotoabsorptionCrossSection(material, e, cs, eta)) return 0.;
65 return cs;
66}
static bool PhotoabsorptionCrossSection(const std::string &material, const double energy, double &cs, double &eta)
Photo-absorption cross-section and ionisation yield at a given energy.

◆ PhotoabsorptionCrossSection() [2/2]

bool Garfield::OpticalData::PhotoabsorptionCrossSection ( const std::string & material,
const double energy,
double & cs,
double & eta )
static

Photo-absorption cross-section and ionisation yield at a given energy.

Definition at line 45 of file OpticalData.cc.

47 {
48 cs = eta = 0.;
49 if (material == "Ne") return PhotoAbsorptionCsNeon(e, cs, eta);
50 if (material == "Ar") return PhotoAbsorptionCsArgon(e, cs, eta);
51 if (material == "CO2") return PhotoAbsorptionCsCO2(e, cs, eta);
52 if (material == "CH4") return PhotoAbsorptionCsMethane(e, cs, eta);
53 if (material == "C2H6") return PhotoAbsorptionCsEthane(e, cs, eta);
54 if (material == "nC4H10") return PhotoAbsorptionCsButane(e, cs, eta);
55 if (material == "C2H2") return PhotoAbsorptionCsAcetylene(e, cs, eta);
56 if (material == "CF4") return PhotoAbsorptionCsCF4(e, cs, eta);
57 if (material == "N2") return PhotoAbsorptionCsNitrogen(e, cs, eta);
58 return false;
59}

Referenced by Garfield::MediumGas::GetPhotoAbsorptionCrossSection(), PhotoabsorptionCrossSection(), and PhotoionisationYield().

◆ PhotoionisationYield()

double Garfield::OpticalData::PhotoionisationYield ( const std::string & material,
const double energy )
static

Photo-ionisation yield at a given energy.

Definition at line 68 of file OpticalData.cc.

69 {
70 double cs = 0., eta = 0.;
71 if (!PhotoabsorptionCrossSection(material, e, cs, eta)) return 0.;
72 return eta;
73}

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