Back to home page

EIC code displayed by LXR

 
 

    


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

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 hadronic/Hadr00/src/DetectorMessenger.cc
0027 /// \brief Implementation of the DetectorMessenger class
0028 //
0029 //
0030 //
0031 //
0032 /////////////////////////////////////////////////////////////////////////
0033 //
0034 // DetectorMessenger
0035 //
0036 // Created: 20.06.08 V.Ivanchenko
0037 //
0038 // Modified:
0039 //
0040 ////////////////////////////////////////////////////////////////////////
0041 //
0042 
0043 #include "DetectorMessenger.hh"
0044 
0045 #include "DetectorConstruction.hh"
0046 #include "HistoManager.hh"
0047 
0048 #include "G4RadioactiveDecayPhysics.hh"
0049 #include "G4UIcmdWith3Vector.hh"
0050 #include "G4UIcmdWithABool.hh"
0051 #include "G4UIcmdWithADoubleAndUnit.hh"
0052 #include "G4UIcmdWithAString.hh"
0053 #include "G4UIcmdWithAnInteger.hh"
0054 #include "G4UIcmdWithoutParameter.hh"
0055 #include "G4UIdirectory.hh"
0056 #include "G4VModularPhysicsList.hh"
0057 
0058 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0059 
0060 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det) : G4UImessenger(), fDetector(Det)
0061 {
0062   ftestDir = new G4UIdirectory("/testhadr/");
0063   ftestDir->SetGuidance(" Hadronic Extended Example.");
0064 
0065   fmatCmd = new G4UIcmdWithAString("/testhadr/TargetMat", this);
0066   fmatCmd->SetGuidance("Select Material for the target");
0067   fmatCmd->SetParameterName("tMaterial", false);
0068   fmatCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0069   fmatCmd->SetToBeBroadcasted(false);
0070 
0071   fmat1Cmd = new G4UIcmdWithAString("/testhadr/WorldMat", this);
0072   fmat1Cmd->SetGuidance("Select Material for world");
0073   fmat1Cmd->SetParameterName("wMaterial", false);
0074   fmat1Cmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0075   fmat1Cmd->SetToBeBroadcasted(false);
0076 
0077   fRDCmd = new G4UIcmdWithABool("/testhadr/RadDecay", this);
0078   fRDCmd->SetGuidance("Enable radioactive decay");
0079   fRDCmd->SetParameterName("RD", false);
0080   fRDCmd->AvailableForStates(G4State_PreInit);
0081   fRDCmd->SetToBeBroadcasted(false);
0082 
0083   frCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetRadius", this);
0084   frCmd->SetGuidance("Set radius of the target");
0085   frCmd->SetParameterName("radius", false);
0086   frCmd->SetUnitCategory("Length");
0087   frCmd->SetRange("radius>0");
0088   frCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0089   frCmd->SetToBeBroadcasted(false);
0090 
0091   flCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetLength", this);
0092   flCmd->SetGuidance("Set length of the target");
0093   flCmd->SetParameterName("length", false);
0094   flCmd->SetUnitCategory("Length");
0095   flCmd->SetRange("length>0");
0096   flCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0097   flCmd->SetToBeBroadcasted(false);
0098 }
0099 
0100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0101 
0102 DetectorMessenger::~DetectorMessenger()
0103 {
0104   delete fmatCmd;
0105   delete fmat1Cmd;
0106   delete fRDCmd;
0107   delete frCmd;
0108   delete flCmd;
0109   delete ftestDir;
0110 }
0111 
0112 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0113 
0114 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0115 {
0116   if (command == fmatCmd) {
0117     fDetector->SetTargetMaterial(newValue);
0118   }
0119   else if (command == fmat1Cmd) {
0120     fDetector->SetWorldMaterial(newValue);
0121   }
0122   else if (command == frCmd) {
0123     fDetector->SetTargetRadius(frCmd->GetNewDoubleValue(newValue));
0124   }
0125   else if (command == flCmd) {
0126     fDetector->SetTargetLength(flCmd->GetNewDoubleValue(newValue));
0127   }
0128   else if (command == fRDCmd) {
0129     if (fRDCmd->GetNewBoolValue(newValue)) {
0130       fDetector->GetPhysicsList()->RegisterPhysics(new G4RadioactiveDecayPhysics(1));
0131     }
0132   }
0133 }
0134 
0135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......