source: trunk/source/materials/include/G4NistMessenger.hh @ 1342

Last change on this file since 1342 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 3.7 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//
27// $Id: G4NistMessenger.hh,v 1.5 2009/10/30 18:01:22 bagoulia Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30// File name:     G4NistMessenger
31//
32// Author:        Vladimir Ivanchenko
33//
34// Creation date: 23.12.2004
35//
36// Modifications:
37// 29.04.07 V.Ivanchenko add recCmd
38//
39//
40// Class Description:
41//  This is a messenger class to interface to exchange information
42//  between G4NistManager and UI.
43//
44//  /material/  directory
45//
46//   Commands :
47//    verbose  val        verbose level for material/element builders
48//
49//
50//  /material/nist/  directory
51//
52//   Commands :
53//    printElement   symbol    output element parameters by symbol
54//    printZElement    Z       output element parameters by number
55//    listMaterials   key      list of materials (key = simple compound hep)
56//
57//  /material/g4/  directory
58//
59//   Commands :
60//    printElement   name        output element  parameters
61//    printMaterial  name        output material parameters
62
63// -------------------------------------------------------------------
64//
65
66//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69#ifndef G4NistMessenger_h
70#define G4NistMessenger_h 1
71
72#include "globals.hh"
73#include "G4UImessenger.hh"
74
75class G4NistManager;
76class G4UIdirectory;
77class G4UIcmdWithAnInteger;
78class G4UIcmdWithAString;
79
80//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81
82class G4NistMessenger: public G4UImessenger
83{
84public:
85
86  G4NistMessenger(G4NistManager* );
87  virtual ~G4NistMessenger();
88
89  void SetNewValue(G4UIcommand*, G4String);
90
91private:
92
93  G4NistManager*             manager;
94 
95  G4UIdirectory*             matDir;
96  G4UIcmdWithAnInteger*      verCmd;
97   
98  G4UIdirectory*             nistDir;
99  G4UIcmdWithAString*        prtElmCmd; 
100  G4UIcmdWithAnInteger*      przElmCmd;
101  G4UIcmdWithAString*        lisMatCmd;
102   
103  G4UIdirectory*             g4Dir;
104  G4UIcmdWithAString*        g4ElmCmd;   
105  G4UIcmdWithAString*        g4MatCmd;
106  G4UIcmdWithAString*        g4DensCmd;   
107};
108
109#endif
110
Note: See TracBrowser for help on using the repository browser.