Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:04:42

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file electromagnetic/TestEm8/src/DetectorMessenger.cc
0027 /// \brief Implementation of the DetectorMessenger class
0028 //
0029 //
0030 /////////////////////////////////////////////////////////////////////////
0031 //
0032 // TestEm8: Gaseous detector
0033 //
0034 // Created: 31.08.2010 V.Ivanchenko
0035 //
0036 // Modified:
0037 //
0038 ////////////////////////////////////////////////////////////////////////
0039 //
0040 
0041 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0042 
0043 #include "DetectorMessenger.hh"
0044 
0045 #include "DetectorConstruction.hh"
0046 
0047 #include "G4UIcmdWithADoubleAndUnit.hh"
0048 #include "G4UIcmdWithAString.hh"
0049 #include "G4UIcmdWithoutParameter.hh"
0050 #include "G4UIdirectory.hh"
0051 
0052 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0053 
0054 DetectorMessenger::DetectorMessenger(DetectorConstruction* det) : fDetector(det)
0055 {
0056   fDetDir = new G4UIdirectory("/testem/");
0057   fDetDir->SetGuidance("Detector control.");
0058 
0059   fGasMaterCmd = new G4UIcmdWithAString("/testem/setGasMat", this);
0060   fGasMaterCmd->SetGuidance("Select material of the detector.");
0061   fGasMaterCmd->SetParameterName("gmat", true);
0062   fGasMaterCmd->SetDefaultValue("Argon");
0063   fGasMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0064 
0065   fWindowMaterCmd = new G4UIcmdWithAString("/testem/setWindowMat", this);
0066   fWindowMaterCmd->SetGuidance("Select material of the window.");
0067   fWindowMaterCmd->SetParameterName("wmat", true);
0068   fWindowMaterCmd->SetDefaultValue("Mylar");
0069   fWindowMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0070 
0071   fWorldMaterCmd = new G4UIcmdWithAString("/testem/setWorldMat", this);
0072   fWorldMaterCmd->SetGuidance("Select material of the world.");
0073   fWorldMaterCmd->SetParameterName("worldmat", true);
0074   fWorldMaterCmd->SetDefaultValue("empty");
0075   fWorldMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0076 
0077   fGasThickCmd = new G4UIcmdWithADoubleAndUnit("/testem/setGasThick", this);
0078   fGasThickCmd->SetGuidance("Set thickness of the detector");
0079   fGasThickCmd->SetParameterName("SizeZ", false, false);
0080   fGasThickCmd->SetUnitCategory("Length");
0081   fGasThickCmd->SetDefaultUnit("mm");
0082   fGasThickCmd->SetRange("SizeZ>0.");
0083   fGasThickCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0084 
0085   fGasRadCmd = new G4UIcmdWithADoubleAndUnit("/testem/setGasRad", this);
0086   fGasRadCmd->SetGuidance("Set radius of the detector");
0087   fGasRadCmd->SetParameterName("SizeR", false, false);
0088   fGasRadCmd->SetUnitCategory("Length");
0089   fGasRadCmd->SetDefaultUnit("mm");
0090   fGasRadCmd->SetRange("SizeR>0.");
0091   fGasRadCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0092 
0093   fWinThickCmd = new G4UIcmdWithADoubleAndUnit("/testem/setWindowThick", this);
0094   fWinThickCmd->SetGuidance("Set thickness of the window");
0095   fWinThickCmd->SetParameterName("delta", false, false);
0096   fWinThickCmd->SetUnitCategory("Length");
0097   fWinThickCmd->SetDefaultUnit("mm");
0098   fWinThickCmd->SetRange("delta>0.");
0099   fWinThickCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0100 
0101   fIonCmd = new G4UIcmdWithADoubleAndUnit("/testem/setPairEnergy", this);
0102   fIonCmd->SetGuidance("Set energy per electron-ion pair for detector");
0103   fIonCmd->SetParameterName("en", false, false);
0104   fIonCmd->SetUnitCategory("Energy");
0105   fIonCmd->SetDefaultUnit("MeV");
0106   fIonCmd->SetRange("en>0.");
0107   fIonCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0108 
0109   fStepMaxCmd = new G4UIcmdWithADoubleAndUnit("/testem/stepMax", this);
0110   fStepMaxCmd->SetGuidance("Set max allowed step length for charged particles");
0111   fStepMaxCmd->SetParameterName("mxStep", false);
0112   fStepMaxCmd->SetRange("mxStep>0.");
0113   fStepMaxCmd->SetUnitCategory("Length");
0114   fStepMaxCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0115 }
0116 
0117 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0118 
0119 DetectorMessenger::~DetectorMessenger()
0120 {
0121   delete fGasMaterCmd;
0122   delete fGasThickCmd;
0123   delete fGasRadCmd;
0124   delete fWinThickCmd;
0125   delete fWindowMaterCmd;
0126   delete fWorldMaterCmd;
0127   delete fIonCmd;
0128   delete fStepMaxCmd;
0129   delete fDetDir;
0130 }
0131 
0132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0133 
0134 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0135 {
0136   if (command == fGasMaterCmd) {
0137     fDetector->SetGasMaterial(newValue);
0138   }
0139   else if (command == fWindowMaterCmd) {
0140     fDetector->SetContainerMaterial(newValue);
0141   }
0142   else if (command == fWorldMaterCmd) {
0143     fDetector->SetWorldMaterial(newValue);
0144   }
0145   else if (command == fGasThickCmd) {
0146     fDetector->SetGasThickness(fGasThickCmd->GetNewDoubleValue(newValue));
0147   }
0148   else if (command == fGasRadCmd) {
0149     fDetector->SetGasRadius(fGasRadCmd->GetNewDoubleValue(newValue));
0150   }
0151   else if (command == fWinThickCmd) {
0152     fDetector->SetContainerThickness(fWinThickCmd->GetNewDoubleValue(newValue));
0153   }
0154   else if (command == fStepMaxCmd) {
0155     fDetector->SetMaxChargedStep(fStepMaxCmd->GetNewDoubleValue(newValue));
0156   }
0157   else if (command == fIonCmd) {
0158     fDetector->SetPairEnergy(fIonCmd->GetNewDoubleValue(newValue));
0159   }
0160 }
0161 
0162 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......