Files
geant4/examples/advanced/stim_pixe_tomography/src/DetectorMessenger.cc
T
2023-06-30 09:09:57 +02:00

174 lines
6.8 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. *
// ********************************************************************
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#include "DetectorMessenger.hh"
#include "G4UIcmdWithADoubleAndUnit.hh"
#include "G4UIcmdWithAString.hh"
#include "G4UIcmdWithAnInteger.hh"
#include "G4UIdirectory.hh"
#include "DetectorConstruction.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DetectorMessenger::DetectorMessenger(DetectorConstruction* Det)
: G4UImessenger(),
fDetector(Det),
fTomoDir(nullptr),
fDetDir(nullptr),
fAbsMaterCmd(nullptr),
fAbsThickCmd(nullptr),
fAbsSizYZCmd(nullptr),
fAbsXposCmd(nullptr),
fWorldMaterCmd(nullptr),
fWorldXCmd(nullptr),
fWorldYZCmd(nullptr),
fPhantomType(nullptr)
{
fTomoDir = new G4UIdirectory("/tomography/");
fTomoDir->SetGuidance("UI commands specific to this example.");
fDetDir = new G4UIdirectory("/tomography/det/");
fDetDir->SetGuidance("detector construction commands");
fAbsMaterCmd = new G4UIcmdWithAString("/tomography/det/setAbsMat", this);
fAbsMaterCmd->SetGuidance("Select Material of the Absorber.");
fAbsMaterCmd->SetParameterName("choice", false);
fAbsMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
fAbsMaterCmd->SetToBeBroadcasted(false);
fWorldMaterCmd = new G4UIcmdWithAString("/tomography/det/setWorldMat", this);
fWorldMaterCmd->SetGuidance("Select Material of the World.");
fWorldMaterCmd->SetParameterName("wchoice", false);
fWorldMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
fWorldMaterCmd->SetToBeBroadcasted(false);
fAbsThickCmd = new G4UIcmdWithADoubleAndUnit("/tomography/det/setAbsThick", this);
fAbsThickCmd->SetGuidance("Set Thickness of the Absorber");
fAbsThickCmd->SetParameterName("SizeZ", false);
fAbsThickCmd->SetRange("SizeZ>0.");
fAbsThickCmd->SetUnitCategory("Length");
fAbsThickCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
fAbsThickCmd->SetToBeBroadcasted(false);
fAbsSizYZCmd = new G4UIcmdWithADoubleAndUnit("/tomography/det/setAbsYZ", this);
fAbsSizYZCmd->SetGuidance("Set sizeYZ of the Absorber");
fAbsSizYZCmd->SetParameterName("SizeYZ", false);
fAbsSizYZCmd->SetRange("SizeYZ>0.");
fAbsSizYZCmd->SetUnitCategory("Length");
fAbsSizYZCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
fAbsSizYZCmd->SetToBeBroadcasted(false);
fAbsXposCmd = new G4UIcmdWithADoubleAndUnit("/tomography/det/setAbsXpos", this);
fAbsXposCmd->SetGuidance("Set X pos. of the Absorber");
fAbsXposCmd->SetParameterName("Xpos", false);
fAbsXposCmd->SetUnitCategory("Length");
fAbsXposCmd->AvailableForStates(G4State_PreInit);
fAbsXposCmd->SetToBeBroadcasted(false);
fWorldXCmd = new G4UIcmdWithADoubleAndUnit("/tomography/det/setWorldX", this);
fWorldXCmd->SetGuidance("Set X size of the World");
fWorldXCmd->SetParameterName("WSizeX", false);
fWorldXCmd->SetRange("WSizeX>0.");
fWorldXCmd->SetUnitCategory("Length");
fWorldXCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
fWorldXCmd->SetToBeBroadcasted(false);
fWorldYZCmd = new G4UIcmdWithADoubleAndUnit("/tomography/det/setWorldYZ", this);
fWorldYZCmd->SetGuidance("Set sizeYZ of the World");
fWorldYZCmd->SetParameterName("WSizeYZ", false);
fWorldYZCmd->SetRange("WSizeYZ>0.");
fWorldYZCmd->SetUnitCategory("Length");
fWorldYZCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
fWorldYZCmd->SetToBeBroadcasted(false);
fPhantomType = new G4UIcmdWithAnInteger("/tomography/det/setPhantomType", this);
fPhantomType->SetGuidance("Select the type of target object.");
fPhantomType->SetParameterName("choice", false);
fPhantomType->AvailableForStates(G4State_PreInit, G4State_Idle);
fPhantomType->SetToBeBroadcasted(false);
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DetectorMessenger::~DetectorMessenger()
{
delete fAbsMaterCmd;
delete fAbsThickCmd;
delete fAbsSizYZCmd;
delete fAbsXposCmd;
delete fWorldMaterCmd;
delete fWorldXCmd;
delete fWorldYZCmd;
delete fDetDir;
delete fTomoDir;
delete fPhantomType;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
{
if (command == fAbsMaterCmd) {
fDetector->SetAbsorberMaterial(newValue);
}
if (command == fWorldMaterCmd) {
fDetector->SetWorldMaterial(newValue);
}
if (command == fAbsThickCmd) {
fDetector->SetAbsorberThickness(fAbsThickCmd->GetNewDoubleValue(newValue));
}
if (command == fAbsSizYZCmd) {
fDetector->SetAbsorberSizeYZ(fAbsSizYZCmd->GetNewDoubleValue(newValue));
}
if (command == fAbsXposCmd) {
fDetector->SetAbsorberXpos(fAbsXposCmd->GetNewDoubleValue(newValue));
}
if (command == fWorldXCmd) {
fDetector->SetWorldSizeX(fWorldXCmd->GetNewDoubleValue(newValue));
}
if (command == fWorldYZCmd) {
fDetector->SetWorldSizeYZ(fWorldYZCmd->GetNewDoubleValue(newValue));
}
if (command == fPhantomType) {
fDetector->SetPhantomType(fPhantomType->GetNewIntValue(newValue));
}
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......