source: trunk/examples/extended/electromagnetic/TestEm17/src/PhysicsListMessenger.cc@ 812

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

update

File size: 4.8 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.2 2006/06/29 16:49:13 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 "G4UIcmdWithADoubleAndUnit.hh"
36#include "G4UIcmdWithAString.hh"
37
38//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
40PhysicsListMessenger::PhysicsListMessenger(PhysicsList* pPhys)
41:pPhysicsList(pPhys)
42{
43 gammaCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setGCut",this);
44 gammaCutCmd->SetGuidance("Set gamma cut.");
45 gammaCutCmd->SetParameterName("Gcut",false);
46 gammaCutCmd->SetUnitCategory("Length");
47 gammaCutCmd->SetRange("Gcut>0.0");
48 gammaCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
49
50 electCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setECut",this);
51 electCutCmd->SetGuidance("Set electron cut.");
52 electCutCmd->SetParameterName("Ecut",false);
53 electCutCmd->SetUnitCategory("Length");
54 electCutCmd->SetRange("Ecut>0.0");
55 electCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
56
57 protoCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setPCut",this);
58 protoCutCmd->SetGuidance("Set positron cut.");
59 protoCutCmd->SetParameterName("Pcut",false);
60 protoCutCmd->SetUnitCategory("Length");
61 protoCutCmd->SetRange("Pcut>0.0");
62 protoCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
63
64 allCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setCuts",this);
65 allCutCmd->SetGuidance("Set cut for all.");
66 allCutCmd->SetParameterName("cut",false);
67 allCutCmd->SetUnitCategory("Length");
68 allCutCmd->SetRange("cut>0.0");
69 allCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
70
71 pListCmd = new G4UIcmdWithAString("/testem/phys/addPhysics",this);
72 pListCmd->SetGuidance("Add modula physics list.");
73 pListCmd->SetParameterName("PList",false);
74 pListCmd->AvailableForStates(G4State_PreInit);
75}
76
77//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78
79PhysicsListMessenger::~PhysicsListMessenger()
80{
81 delete gammaCutCmd;
82 delete electCutCmd;
83 delete protoCutCmd;
84 delete allCutCmd;
85 delete pListCmd;
86}
87
88//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
89
90void PhysicsListMessenger::SetNewValue(G4UIcommand* command,
91 G4String newValue)
92{
93 if( command == gammaCutCmd )
94 { pPhysicsList->SetCutForGamma(gammaCutCmd->GetNewDoubleValue(newValue));}
95
96 if( command == electCutCmd )
97 { pPhysicsList->SetCutForElectron(electCutCmd->GetNewDoubleValue(newValue));}
98
99 if( command == protoCutCmd )
100 { pPhysicsList->SetCutForPositron(protoCutCmd->GetNewDoubleValue(newValue));}
101
102 if( command == allCutCmd )
103 {
104 G4double cut = allCutCmd->GetNewDoubleValue(newValue);
105 pPhysicsList->SetCutForGamma(cut);
106 pPhysicsList->SetCutForElectron(cut);
107 pPhysicsList->SetCutForPositron(cut);
108 }
109
110 if( command == pListCmd )
111 { pPhysicsList->AddPhysicsList(newValue);}
112}
113
114//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Note: See TracBrowser for help on using the repository browser.