Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:05:16

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 DetectorMessenger.cc
0027 /// \brief Implementation of the DetectorMessenger class
0028 //
0029 //
0030 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0031 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0032 
0033 #include "DetectorMessenger.hh"
0034 
0035 #include "DetectorConstruction.hh"
0036 
0037 #include "G4UIcmdWithADoubleAndUnit.hh"
0038 #include "G4UIcmdWithAString.hh"
0039 #include "G4UIcmdWithoutParameter.hh"
0040 #include "G4UIcommand.hh"
0041 #include "G4UIdirectory.hh"
0042 #include "G4UIparameter.hh"
0043 
0044 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0045 
0046 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det) : fDetector(Det)
0047 {
0048   fTestemDir = new G4UIdirectory("/testhadr/");
0049   fTestemDir->SetGuidance("commands specific to this example");
0050 
0051   G4bool broadcast = false;
0052   fDetDir = new G4UIdirectory("/testhadr/det/", broadcast);
0053   fDetDir->SetGuidance("detector construction commands");
0054 
0055   fMaterCmd = new G4UIcmdWithAString("/testhadr/det/setMat", this);
0056   fMaterCmd->SetGuidance("Select material of the box.");
0057   fMaterCmd->SetParameterName("choice", false);
0058   fMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0059 
0060   fSizeCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/det/setRadius", this);
0061   fSizeCmd->SetGuidance("Set size of the sphere");
0062   fSizeCmd->SetParameterName("Size", false);
0063   fSizeCmd->SetRange("Size>0.");
0064   fSizeCmd->SetUnitCategory("Length");
0065   fSizeCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0066 
0067   fIsotopeCmd = new G4UIcommand("/testhadr/det/setIsotopeMat", this);
0068   fIsotopeCmd->SetGuidance("Build and select a material with single isotope");
0069   fIsotopeCmd->SetGuidance("  symbol of isotope, Z, A, density of material");
0070   //
0071   G4UIparameter* symbPrm = new G4UIparameter("isotope", 's', false);
0072   symbPrm->SetGuidance("isotope symbol");
0073   fIsotopeCmd->SetParameter(symbPrm);
0074   //
0075   G4UIparameter* ZPrm = new G4UIparameter("Z", 'i', false);
0076   ZPrm->SetGuidance("Z");
0077   ZPrm->SetParameterRange("Z>0");
0078   fIsotopeCmd->SetParameter(ZPrm);
0079   //
0080   G4UIparameter* APrm = new G4UIparameter("A", 'i', false);
0081   APrm->SetGuidance("A");
0082   APrm->SetParameterRange("A>0");
0083   fIsotopeCmd->SetParameter(APrm);
0084   //
0085   G4UIparameter* densityPrm = new G4UIparameter("density", 'd', false);
0086   densityPrm->SetGuidance("density of material");
0087   densityPrm->SetParameterRange("density>0.");
0088   fIsotopeCmd->SetParameter(densityPrm);
0089   //
0090   G4UIparameter* unitPrm = new G4UIparameter("unit", 's', false);
0091   unitPrm->SetGuidance("unit of density");
0092   G4String unitList = G4UIcommand::UnitsList(G4UIcommand::CategoryOf("g/cm3"));
0093   unitPrm->SetParameterCandidates(unitList);
0094   fIsotopeCmd->SetParameter(unitPrm);
0095   //
0096   fIsotopeCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0097 }
0098 
0099 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0100 
0101 DetectorMessenger::~DetectorMessenger()
0102 {
0103   delete fMaterCmd;
0104   delete fSizeCmd;
0105   delete fIsotopeCmd;
0106   delete fDetDir;
0107   delete fTestemDir;
0108 }
0109 
0110 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0111 
0112 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0113 {
0114   if (command == fMaterCmd) {
0115     fDetector->SetMaterial(newValue);
0116   }
0117 
0118   if (command == fSizeCmd) {
0119     fDetector->SetRadius(fSizeCmd->GetNewDoubleValue(newValue));
0120   }
0121 
0122   if (command == fIsotopeCmd) {
0123     G4int Z;
0124     G4int A;
0125     G4double dens;
0126     G4String name, unt;
0127     std::istringstream is(newValue);
0128     is >> name >> Z >> A >> dens >> unt;
0129     dens *= G4UIcommand::ValueOf(unt);
0130     fDetector->MaterialWithSingleIsotope(name, name, dens, Z, A);
0131     fDetector->SetMaterial(name);
0132   }
0133 }
0134 
0135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......