source: trunk/source/materials/src/G4NistMessenger.cc@ 1229

Last change on this file since 1229 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 5.9 KB
RevLine 
[822]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//
[1228]27// $Id: G4NistMessenger.cc,v 1.9 2009/12/03 11:09:47 vnivanch Exp $
28// GEANT4 tag $Name: geant4-09-03 $
[822]29//
30//
31// File name: G4NistMessenger
32//
33// Author: Vladimir Ivanchenko
34//
35// Creation date: 23.12.2004
36//
37// Modifications:
38//
39//
40// -------------------------------------------------------------------
41//
42
43//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
44//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
45
46#include "G4NistMessenger.hh"
47
48#include "G4NistManager.hh"
49
50#include "G4UIdirectory.hh"
51#include "G4UIcmdWithAnInteger.hh"
52#include "G4UIcmdWithAString.hh"
[1196]53#include "G4IonisParamMat.hh"
54#include "G4DensityEffectData.hh"
[822]55
56//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
57
58G4NistMessenger::G4NistMessenger(G4NistManager* man)
59:manager(man)
60{
61 matDir = new G4UIdirectory("/material/");
62 matDir->SetGuidance("Commands for materials");
63
64 verCmd = new G4UIcmdWithAnInteger("/material/verbose",this);
65 verCmd->SetGuidance("Set verbose level.");
66
67 nistDir = new G4UIdirectory("/material/nist/");
68 nistDir->SetGuidance("Commands for the nist dataBase");
69
70 prtElmCmd = new G4UIcmdWithAString("/material/nist/printElement",this);
71 prtElmCmd->SetGuidance("print element(s) in dataBase.");
72 prtElmCmd->SetGuidance("symbol = element.");
73 prtElmCmd->SetGuidance("all = all elements.");
74 prtElmCmd->SetParameterName("symbol", true);
75 prtElmCmd->SetDefaultValue("all");
76
77 przElmCmd = new G4UIcmdWithAnInteger("/material/nist/printElementZ",this);
78 przElmCmd->SetGuidance("print element Z in dataBase.");
[1196]79 przElmCmd->SetGuidance("0 = all elements.");
80 przElmCmd->SetParameterName("Z", true);
81 przElmCmd->SetDefaultValue(0);
[822]82
83 lisMatCmd = new G4UIcmdWithAString("/material/nist/listMaterials",this);
[1196]84 lisMatCmd->SetGuidance("list materials in Geant4 dataBase.");
85 lisMatCmd->SetGuidance("simple - simple NIST materials.");
86 lisMatCmd->SetGuidance("compound - compound NIST materials.");
87 lisMatCmd->SetGuidance("hep - HEP materials.");
88 lisMatCmd->SetGuidance("all - list of all Geant4 materials.");
[822]89 lisMatCmd->SetParameterName("list", true);
90 lisMatCmd->SetCandidates("simple compound hep all");
91 lisMatCmd->SetDefaultValue("all");
92
93 g4Dir = new G4UIdirectory("/material/g4/");
94 g4Dir->SetGuidance("Commands for G4MaterialTable");
95
96 g4ElmCmd = new G4UIcmdWithAString("/material/g4/printElement",this);
[1196]97 g4ElmCmd->SetGuidance("print Element from G4ElementTable.");
98 g4ElmCmd->SetGuidance("all - all elements.");
99 g4ElmCmd->SetParameterName("elm", true);
100 g4ElmCmd->SetDefaultValue("all");
[822]101
102 g4MatCmd = new G4UIcmdWithAString("/material/g4/printMaterial",this);
[1196]103 g4MatCmd->SetGuidance("print Material from G4MaterialTable.");
104 g4MatCmd->SetGuidance("all - all materials");
105 g4MatCmd->SetParameterName("mat", true);
106 g4MatCmd->SetDefaultValue("all");
[822]107
[1196]108 g4DensCmd = new G4UIcmdWithAString("/material/g4/printDensityEffParam",this);
109 g4DensCmd->SetGuidance("print Material from G4DensityEffectData.");
110 g4DensCmd->SetGuidance("all - all materials");
111 g4DensCmd->SetParameterName("mat", true);
112 g4DensCmd->SetDefaultValue("all");
[822]113}
114
115//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
116
117G4NistMessenger::~G4NistMessenger()
118{
119 delete verCmd;
120 delete prtElmCmd;
121 delete przElmCmd;
122 delete lisMatCmd;
123 delete nistDir;
124
125 delete g4ElmCmd;
126 delete g4MatCmd;
[1228]127 delete g4DensCmd;
[822]128 delete g4Dir;
129 delete matDir;
130}
131
132//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
133
134void G4NistMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
135{
136 if (command == verCmd)
137 { manager->SetVerbose(verCmd->GetNewIntValue(newValue));}
138
139 if (command == prtElmCmd)
140 { manager->PrintElement(newValue);}
141
142 if (command == przElmCmd)
143 { manager->PrintElement(przElmCmd->GetNewIntValue(newValue));}
144
145 if (command == lisMatCmd)
146 { manager->ListMaterials(newValue);}
147
148 if (command == g4ElmCmd)
149 { manager->PrintG4Element(newValue);}
150
151 if (command == g4MatCmd)
152 { manager->PrintG4Material(newValue);}
[1196]153
154 if (command == g4DensCmd)
155 { if (G4Material::GetNumberOfMaterials > 0) {
156 G4IonisParamMat::GetDensityEffectData()->PrintData(newValue);
157 }
158 }
[822]159}
160//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
Note: See TracBrowser for help on using the repository browser.