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

Last change on this file since 1036 was 807, checked in by garnier, 17 years ago

update

File size: 4.5 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.8 2006/06/29 16:57:11 gunter Exp $
27// GEANT4 tag $Name: $
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 GammaToMuPairFac=new G4UIcmdWithADouble
47 ("/testem/phys/SetGammaToMuPairFac",this);
48 GammaToMuPairFac->SetGuidance(
49 "Set factor to artificially increase the GammaToMuPair cross section");
50 GammaToMuPairFac->SetParameterName("GammaToMuPairFac",false);
51 GammaToMuPairFac->SetRange("GammaToMuPairFac>0.0");
52 GammaToMuPairFac->AvailableForStates(G4State_PreInit,G4State_Idle);
53
54 AnnihiToMuPairFac=new G4UIcmdWithADouble
55 ("/testem/phys/SetAnnihiToMuPairFac",this);
56 AnnihiToMuPairFac->SetGuidance(
57 "Set factor to artificially increase the AnnihiToMuPair cross section");
58 AnnihiToMuPairFac->SetParameterName("AnnihiToMuPairFac",false);
59 AnnihiToMuPairFac->SetRange("AnnihiToMuPairFac>0.0");
60 AnnihiToMuPairFac->AvailableForStates(G4State_PreInit,G4State_Idle);
61
62 AnnihiToHadronFac=new G4UIcmdWithADouble
63 ("/testem/phys/SetAnnihiToHadronFac",this);
64 AnnihiToHadronFac->SetGuidance(
65 "Set factor to artificially increase the AnnihiToHadrons cross section");
66 AnnihiToHadronFac->SetParameterName("AnnihiToHadFac",false);
67 AnnihiToHadronFac->SetRange("AnnihiToHadFac>0.0");
68 AnnihiToHadronFac->AvailableForStates(G4State_PreInit,G4State_Idle);
69}
70
71//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72
73PhysicsListMessenger::~PhysicsListMessenger()
74{
75 delete GammaToMuPairFac;
76 delete AnnihiToMuPairFac;
77 delete AnnihiToHadronFac;
78 delete physDir;
79}
80
81//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
83void PhysicsListMessenger::SetNewValue(G4UIcommand* command,
84 G4String newValue)
85{
86 if(command == GammaToMuPairFac)
87 { physList->SetGammaToMuPairFac(
88 GammaToMuPairFac->GetNewDoubleValue(newValue));}
89
90 if( command == AnnihiToMuPairFac)
91 { physList->SetAnnihiToMuPairFac(
92 AnnihiToMuPairFac->GetNewDoubleValue(newValue));}
93
94 if( command == AnnihiToHadronFac)
95 { physList->SetAnnihiToHadronFac(
96 AnnihiToHadronFac->GetNewDoubleValue(newValue));}
97}
98
99//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Note: See TracBrowser for help on using the repository browser.