Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4ParticleMessenger.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: G4ParticleMessenger.hh 69557 2013-05-08 12:01:40Z gcosmo $
28 //
29 //
30 //---------------------------------------------------------------
31 //
32 // G4ParticleMessenger.hh
33 //
34 // Class Description:
35 // This is a messenger class to interface to exchange information
36 // between Particle related classes and UI.
37 //
38 // ------------------------------------------------------
39 // the List of Directory and Commands
40 // ------------------------------------------------------
41 // G4ParticleMessenger
42 // /particle/ Paricle control commands.
43 // Commands :
44 // select * Select particle
45 // list * List name of particles.
46 // find * find particle by PDG encoding.
47 // verbose * Set Verbose level of Particle Table
48 //
49 // G4ParticlePropertyMessenger
50 // /particle/property/ Paricle Table control commands.
51 // Commands :
52 // dump * dump particle properties.
53 // stable * Set stable flag.
54 // lifetime * Set life time.
55 // verbose * Set Verbose level
56 //
57 // G4DecayTableMessenger
58 // /particle/property/decay/ Decay Table control commands.
59 // Commands :
60 // select * Enter index of decay mode.
61 // dump * Dump decay mode information.
62 // br * Set branching ratio. [0< BR <1.0]
63 //
64 //
65 // History:
66 // 13 June 1997, H. Kurashige : The 1st version created.
67 // 10 Nov 1997, H.Kurashige : add /particle/property/Verbose
68 // 08 Jan. 1998, H. Kurashige : new UIcommand
69 // 08 June 1998, H. Kurashige : remove fProcessManagerMessenger
70 // 25 Nov. 1998, H. Kurashige : add /particle/find
71 // 08 Jun. 2008, H. Kurashige : add /particle/verbose
72 // 30 Jul. 2009, H. Kurashige : add /particle/createAllIon
73 // 1 May. 2013, H. Kurashige : add /particle/createAllIsomer
74 //---------------------------------------------------------------
75 
76 #ifndef G4ParticleMessenger_h
77 #define G4ParticleMessenger_h 1
78 
80 class G4ParticleTable;
82 
83 
84 class G4UIdirectory;
85 class G4UIcmdWithAString;
88 
89 #include "G4UImessenger.hh"
90 #include "globals.hh"
91 
92 
94 {
95  public:
97  virtual ~G4ParticleMessenger();
98 
99  public: // With Description
100  void SetNewValue(G4UIcommand * command,G4String newValues);
102 
103  private:
104  // !!! can not use "copy constructor" !!!!
106 
107  private:
108  G4UIdirectory * thisDirectory;
109  G4UIcmdWithAString * listCmd;
110  G4UIcmdWithAString * selectCmd;
111  G4UIcmdWithAnInteger * findCmd;
112  G4UIcmdWithoutParameter * createAllIonCmd;
113  G4UIcmdWithoutParameter * createAllIsomerCmd;
114  G4UIcmdWithAnInteger * verboseCmd;
115 
116  G4ParticleTable* theParticleTable;
117  G4ParticleDefinition* currentParticle;
118 
119  G4ParticlePropertyMessenger* fParticlePropertyMessenger;
120 };
121 
122 #endif
123 
124 
125 
126 
127 
128 
129 
130 
131 
void SetNewValue(G4UIcommand *command, G4String newValues)
G4String GetCurrentValue(G4UIcommand *command)
G4ParticleMessenger(G4ParticleTable *pTable=0)