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

#include <GarfieldDetectorConstruction.hh>

+ Inheritance diagram for GarfieldDetectorConstruction:

Public Member Functions

 GarfieldDetectorConstruction ()
 
virtual ~GarfieldDetectorConstruction ()
 
virtual G4VPhysicalVolume * Construct () override
 
const G4VPhysicalVolume * GetAbsorberPV () const
 
const G4VPhysicalVolume * GetDriftTubePV () const
 
const G4VPhysicalVolume * GetGasPV () const
 
const G4VPhysicalVolume * GetWirePV () const
 
void SetAbsorberMaterial (G4String materialChoice)
 
G4Material * AbsorberMaterialWithSingleIsotope (G4String name, G4String symbol, G4double density, G4int Z, G4int A)
 

Detailed Description

Detector construction class to define materials and geometry. The drift tube is a cylinder made of Al filled with Ar/CO2. It has a thin window on the base that is adjacent to the absorber plate. In the center of the cylinder is the anode wire made from Tungsten.

The primary particles interact in the absorber and produce secondary particles, which enter the drift tube via the thin window.

Definition at line 52 of file GarfieldDetectorConstruction.hh.

Constructor & Destructor Documentation

◆ GarfieldDetectorConstruction()

GarfieldDetectorConstruction::GarfieldDetectorConstruction ( )

Definition at line 54 of file GarfieldDetectorConstruction.cc.

55 : G4VUserDetectorConstruction() {
56 fGarfieldMessenger = new GarfieldMessenger(this);
57}

◆ ~GarfieldDetectorConstruction()

GarfieldDetectorConstruction::~GarfieldDetectorConstruction ( )
virtual

Definition at line 61 of file GarfieldDetectorConstruction.cc.

61 {
62 delete fGarfieldMessenger;
63}

Member Function Documentation

◆ AbsorberMaterialWithSingleIsotope()

G4Material * GarfieldDetectorConstruction::AbsorberMaterialWithSingleIsotope ( G4String name,
G4String symbol,
G4double density,
G4int Z,
G4int A )

Definition at line 294 of file GarfieldDetectorConstruction.cc.

295 {
296 // define a material from an isotope
297 //
298 G4int ncomponents;
299 G4double abundance, massfraction;
300
301 G4Isotope* isotope = new G4Isotope(symbol, Z, A);
302
303 G4Element* element = new G4Element(name, symbol, ncomponents = 1);
304 element->AddIsotope(isotope, abundance = 100. * perCent);
305
306 G4Material* material = new G4Material(name, density, ncomponents = 1);
307 material->AddElement(element, massfraction = 100. * perCent);
308
309 return material;
310}

◆ Construct()

G4VPhysicalVolume * GarfieldDetectorConstruction::Construct ( )
overridevirtual

Definition at line 67 of file GarfieldDetectorConstruction.cc.

67 {
68 // Define materials
69 DefineMaterials();
70
71 // Define volumes
72 return DefineVolumes();
73}

◆ GetAbsorberPV()

const G4VPhysicalVolume * GarfieldDetectorConstruction::GetAbsorberPV ( ) const
inline

Definition at line 61 of file GarfieldDetectorConstruction.hh.

61{ return fAbsorberPV; }

◆ GetDriftTubePV()

const G4VPhysicalVolume * GarfieldDetectorConstruction::GetDriftTubePV ( ) const
inline

Definition at line 62 of file GarfieldDetectorConstruction.hh.

62{ return fTubePV; }

◆ GetGasPV()

const G4VPhysicalVolume * GarfieldDetectorConstruction::GetGasPV ( ) const
inline

Definition at line 63 of file GarfieldDetectorConstruction.hh.

63{ return fGasPV; }

◆ GetWirePV()

const G4VPhysicalVolume * GarfieldDetectorConstruction::GetWirePV ( ) const
inline

Definition at line 64 of file GarfieldDetectorConstruction.hh.

64{ return fWirePV; }

◆ SetAbsorberMaterial()

void GarfieldDetectorConstruction::SetAbsorberMaterial ( G4String materialChoice)

Definition at line 314 of file GarfieldDetectorConstruction.cc.

315 {
316 // search the material by its name
317 G4Material* newMaterial =
318 G4NistManager::Instance()->FindOrBuildMaterial(materialChoice);
319
320 if (newMaterial) {
321 if (fAbsorberMaterial != newMaterial) {
322 fAbsorberMaterial = newMaterial;
323 if (fAbsorberLV) {
324 fAbsorberLV->SetMaterial(fAbsorberMaterial);
325 }
326 G4RunManager::GetRunManager()->PhysicsHasBeenModified();
327 }
328 } else {
329 G4cout << "\n--> warning from GarfieldDetectorConstruction::SetMaterial : "
330 << materialChoice << " not found" << G4endl;
331 }
332}

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