Geant4  10.02.p01
PhysicsListMessenger.cc
Go to the documentation of this file.
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 //
28 //
29 // $Id: PhysicsListMessenger.cc 83428 2014-08-21 15:46:01Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PhysicsListMessenger.hh"
35 
36 #include "PhysicsList.hh"
37 #include "G4UIdirectory.hh"
38 #include "G4UIcmdWithADouble.hh"
39 #include "G4UIcmdWithAString.hh"
40 
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 
45 :G4UImessenger(),fPhysList(physL),
46  fPhysDir(0),
47  fGammaToMuPairFacCmd(0),
48  fAnnihiToMuPairFacCmd(0),
49  fAnnihiToHadronFacCmd(0),
50  fListCmd(0)
51 {
52  fPhysDir = new G4UIdirectory("/testem/phys/");
53  fPhysDir->SetGuidance("physics list commands");
54 
56  ("/testem/phys/SetGammaToMuPairFac",this);
58  "Set factor to artificially increase the GammaToMuPair cross section");
59  fGammaToMuPairFacCmd->SetParameterName("GammaToMuPairFac",false);
60  fGammaToMuPairFacCmd->SetRange("GammaToMuPairFac>0.0");
62 
64  ("/testem/phys/SetAnnihiToMuPairFac",this);
66  "Set factor to artificially increase the AnnihiToMuPair cross section");
67  fAnnihiToMuPairFacCmd->SetParameterName("AnnihiToMuPairFac",false);
68  fAnnihiToMuPairFacCmd->SetRange("AnnihiToMuPairFac>0.0");
70 
72  new G4UIcmdWithADouble("/testem/phys/SetAnnihiToHadronFac",this);
74  "Set factor to artificially increase the AnnihiToHadrons cross section");
75  fAnnihiToHadronFacCmd->SetParameterName("AnnihiToHadFac",false);
76  fAnnihiToHadronFacCmd->SetRange("AnnihiToHadFac>0.0");
78 
79  fListCmd = new G4UIcmdWithAString("/testem/phys/addPhysics",this);
80  fListCmd->SetGuidance("Add modula physics list.");
81  fListCmd->SetParameterName("PList",false);
83 }
84 
85 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
86 
88 {
89  delete fGammaToMuPairFacCmd;
90  delete fAnnihiToMuPairFacCmd;
91  delete fAnnihiToHadronFacCmd;
92  delete fPhysDir;
93  delete fListCmd;
94 }
95 
96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
97 
99  G4String newValue)
100 {
101  if(command == fGammaToMuPairFacCmd)
104 
105  if( command == fAnnihiToMuPairFacCmd)
108 
109  if( command == fAnnihiToHadronFacCmd)
112 
113  if( command == fListCmd )
114  { fPhysList->AddPhysicsList(newValue); }
115 
116 }
117 
118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void AddPhysicsList(const G4String &name)
Definition: PhysicsList.cc:191
void SetGammaToMuPairFac(G4double)
Definition: PhysicsList.cc:141
void SetAnnihiToHadronFac(G4double)
Definition: PhysicsList.cc:167
static G4double GetNewDoubleValue(const char *paramString)
void SetRange(const char *rs)
Definition: G4UIcommand.hh:125
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void SetAnnihiToMuPairFac(G4double)
Definition: PhysicsList.cc:154
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:239
G4UIcmdWithADouble * fAnnihiToHadronFacCmd
void SetNewValue(G4UIcommand *, G4String)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
PhysicsListMessenger(PhysicsList *)
G4UIcmdWithADouble * fAnnihiToMuPairFacCmd
G4UIcmdWithADouble * fGammaToMuPairFacCmd
Physics list class.
Definition: PhysicsList.hh:47
G4UIcmdWithAString * fListCmd