Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4NistMessenger.hh
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 //
26 //
27 // $Id: G4NistMessenger.hh 66811 2013-01-12 16:04:23Z gcosmo $
28 //
29 // File name: G4NistMessenger
30 //
31 // Author: Vladimir Ivanchenko
32 //
33 // Creation date: 23.12.2004
34 //
35 // Modifications:
36 // 29.04.07 V.Ivanchenko add recCmd
37 //
38 //
39 // Class Description:
40 // This is a messenger class to interface to exchange information
41 // between G4NistManager and UI.
42 //
43 // /material/ directory
44 //
45 // Commands :
46 // verbose val verbose level for material/element builders
47 //
48 //
49 // /material/nist/ directory
50 //
51 // Commands :
52 // printElement symbol output element parameters by symbol
53 // printZElement Z output element parameters by number
54 // listMaterials key list of materials (key = simple compound hep)
55 //
56 // /material/g4/ directory
57 //
58 // Commands :
59 // printElement name output element parameters
60 // printMaterial name output material parameters
61 
62 // -------------------------------------------------------------------
63 //
64 
65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67 
68 #ifndef G4NistMessenger_h
69 #define G4NistMessenger_h 1
70 
71 #include "globals.hh"
72 #include "G4UImessenger.hh"
73 
74 class G4NistManager;
75 class G4UIdirectory;
77 class G4UIcmdWithAString;
78 
79 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
80 
82 {
83 public:
84 
86  virtual ~G4NistMessenger();
87 
89 
90 private:
91 
92  G4NistManager* manager;
93 
94  G4UIdirectory* matDir;
95  G4UIcmdWithAnInteger* verCmd;
96 
97  G4UIdirectory* nistDir;
98  G4UIcmdWithAString* prtElmCmd;
99  G4UIcmdWithAnInteger* przElmCmd;
100  G4UIcmdWithAString* lisMatCmd;
101 
102  G4UIdirectory* g4Dir;
103  G4UIcmdWithAString* g4ElmCmd;
104  G4UIcmdWithAString* g4MatCmd;
105  G4UIcmdWithAString* g4DensCmd;
106 };
107 
108 #endif
109 
G4NistMessenger(G4NistManager *)
void SetNewValue(G4UIcommand *, G4String)
virtual ~G4NistMessenger()