source: trunk/examples/extended/electromagnetic/TestEm6/src/PhysicsListMessenger.cc@ 1353

Last change on this file since 1353 was 1337, checked in by garnier, 15 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 4.6 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// $Id: PhysicsListMessenger.cc,v 1.9 2009/11/27 14:54:58 hbu Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-01 $
28//
29//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31
32#include "PhysicsListMessenger.hh"
33
34#include "PhysicsList.hh"
35#include "G4UIdirectory.hh"
36#include "G4UIcmdWithADouble.hh"
37
38//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
40PhysicsListMessenger::PhysicsListMessenger(PhysicsList* physL)
41:physList(physL)
42{
43 physDir = new G4UIdirectory("/testem/phys/");
44 physDir->SetGuidance("physics list commands");
45
46 GammaToMuPairFacCmd=new G4UIcmdWithADouble
47 ("/testem/phys/SetGammaToMuPairFac",this);
48 GammaToMuPairFacCmd->SetGuidance(
49 "Set factor to artificially increase the GammaToMuPair cross section");
50 GammaToMuPairFacCmd->SetParameterName("GammaToMuPairFac",false);
51 GammaToMuPairFacCmd->SetRange("GammaToMuPairFac>0.0");
52 GammaToMuPairFacCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
53
54 AnnihiToMuPairFacCmd=new G4UIcmdWithADouble
55 ("/testem/phys/SetAnnihiToMuPairFac",this);
56 AnnihiToMuPairFacCmd->SetGuidance(
57 "Set factor to artificially increase the AnnihiToMuPair cross section");
58 AnnihiToMuPairFacCmd->SetParameterName("AnnihiToMuPairFac",false);
59 AnnihiToMuPairFacCmd->SetRange("AnnihiToMuPairFac>0.0");
60 AnnihiToMuPairFacCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
61
62 AnnihiToHadronFacCmd=new G4UIcmdWithADouble
63 ("/testem/phys/SetAnnihiToHadronFac",this);
64 AnnihiToHadronFacCmd->SetGuidance(
65 "Set factor to artificially increase the AnnihiToHadrons cross section");
66 AnnihiToHadronFacCmd->SetParameterName("AnnihiToHadFac",false);
67 AnnihiToHadronFacCmd->SetRange("AnnihiToHadFac>0.0");
68 AnnihiToHadronFacCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
69}
70
71//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72
73PhysicsListMessenger::~PhysicsListMessenger()
74{
75 delete GammaToMuPairFacCmd;
76 delete AnnihiToMuPairFacCmd;
77 delete AnnihiToHadronFacCmd;
78 delete physDir;
79}
80
81//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
83void PhysicsListMessenger::SetNewValue(G4UIcommand* command,
84 G4String newValue)
85{
86 if(command == GammaToMuPairFacCmd)
87 { physList->SetGammaToMuPairFac(
88 GammaToMuPairFacCmd->GetNewDoubleValue(newValue));}
89
90 if( command == AnnihiToMuPairFacCmd)
91 { physList->SetAnnihiToMuPairFac(
92 AnnihiToMuPairFacCmd->GetNewDoubleValue(newValue));}
93
94 if( command == AnnihiToHadronFacCmd)
95 { physList->SetAnnihiToHadronFac(
96 AnnihiToHadronFacCmd->GetNewDoubleValue(newValue));}
97}
98
99//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Note: See TracBrowser for help on using the repository browser.