Files
geant4/examples/extended/parameterisations/gflash/gflasha/include/ExGflashDetectorConstruction.hh
2025-12-05 08:54:02 +01:00

116 lines
4.3 KiB
C++

// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
/// \file ExGflashDetectorConstruction.hh
/// \brief Definition of the ExGflashDetectorConstruction class
#ifndef ExGflashDetectorConstruction_h
#define ExGflashDetectorConstruction_h 1
#include "ExGflashSensitiveDetector.hh"
#include "G4Cache.hh"
#include "G4ThreeVector.hh"
#include "G4VUserDetectorConstruction.hh"
#include "globals.hh"
class G4LogicalVolume;
class G4VPhysicalVolume;
class G4Material;
class G4Region;
class GFlashHomoShowerParameterisation;
class GFlashShowerModel;
class GFlashHitMaker;
class GFlashParticleBounds;
class ExGflashMessenger;
class ExGflashDetectorConstruction : public G4VUserDetectorConstruction
{
public:
ExGflashDetectorConstruction();
~ExGflashDetectorConstruction() override;
G4VPhysicalVolume* Construct() override;
void ConstructSDandField() override;
void SetLBining(G4ThreeVector);
void SetRBining(G4ThreeVector);
void SetVerbose(G4int val) { fVerbose = val; }
void SetMaterial(G4String mat);
G4int GetVerbose() const { return fVerbose; }
G4int GetnLtot() const { return fNLtot; }
G4int GetnRtot() const { return fNRtot; }
G4double GetdLradl() const { return fDLradl; }
G4double GetdRradl() const { return fDRradl; }
G4double GetSDRadLen() const { return fSDRadLen; }
G4double GetSDRm() const { return fSDRm; }
G4int GetNbOfCrystals() const { return fNbOfCrystals; }
G4double GetCrystalWidth() const { return fCrystalWidth; }
G4double GetCrystalLength() const { return fCrystalLength; }
void SetNbOfCrystals(G4int n) { fNbOfCrystals = n; }
void SetCrystalWidth(G4double cw) { fCrystalWidth = cw; }
void SetCrystalLength(G4double cl) { fCrystalLength = cl; }
private:
void DefineMaterials();
G4int fNbOfCrystals{10}; // cube of nb x nb crystals
G4double fCrystalWidth; // x,y size
G4double fCrystalLength; // z size
G4LogicalVolume* fCrystal_log{nullptr};
G4Material* fDetMat{nullptr};
G4Material* fHallMat{nullptr};
G4Region* fRegion{nullptr};
G4double fSDRadLen{1.0}; // SD material Rad Length
G4double fSDRm{1.0}; // SD material Moliere Radius
G4int fVerbose{1};
G4int fNLtot{112}, fNRtot{80}; // nb of bins: longitudinal and radial
G4double fDLradl{0.25}, fDRradl{0.05}; // bin thickness (in fraction of radl)
ExGflashMessenger* fGflashMessenger{nullptr};
inline static G4ThreadLocal GFlashShowerModel* fFastShowerModel = nullptr;
inline static G4ThreadLocal GFlashHomoShowerParameterisation* fParameterisation = nullptr;
inline static G4ThreadLocal GFlashParticleBounds* fParticleBounds = nullptr;
inline static G4ThreadLocal GFlashHitMaker* fHitMaker = nullptr;
};
#endif