source: trunk/source/particles/management/include/G4ParticleMessenger.hh @ 1340

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

tag geant4.9.4 beta 1 + modifs locales

File size: 4.5 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: G4ParticleMessenger.hh,v 1.9 2009/07/31 06:39:22 kurasige Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30//
31//---------------------------------------------------------------
32//
33//  G4ParticleMessenger.hh
34//
35//  Class Description:
36//    This is a messenger class to interface to exchange information
37//    between Particle related classes and UI.
38//
39// ------------------------------------------------------
40//  the List of Directory and Commands
41// ------------------------------------------------------
42// G4ParticleMessenger
43//  /particle/   Paricle control commands.
44//   Commands :
45//    select * Select particle
46//    list * List name of particles.
47//    find * find particle by PDG encoding.
48//    verbose * Set Verbose level of Particle Table
49//
50// G4ParticlePropertyMessenger
51//  /particle/property/   Paricle Table control commands.
52//   Commands :
53//     dump * dump particle properties.
54//     stable * Set stable flag.
55//     lifetime * Set life time.
56//     verbose * Set Verbose level
57//
58// G4DecayTableMessenger
59//  /particle/property/decay/   Decay Table control commands.
60//   Commands :
61//     select * Enter index of decay mode.
62//     dump * Dump decay mode information.
63//     br * Set branching ratio. [0< BR <1.0]
64//
65//
66//  History:
67//    13 June 1997, H. Kurashige   : The 1st version created.
68//    10 Nov 1997,  H.Kurashige    : add /particle/property/Verbose
69//    08 Jan. 1998, H. Kurashige   : new UIcommand
70//    08 June 1998, H. Kurashige   : remove fProcessManagerMessenger
71//    25 Nov. 1998, H. Kurashige   : add /particle/find
72//    08 Jun. 2008, H. Kurashige   : add /particle/verbose
73//    30 Jul. 2009, H. Kurashige   : add /particle/createAllIon
74//---------------------------------------------------------------
75
76#ifndef G4ParticleMessenger_h
77#define G4ParticleMessenger_h 1
78
79class G4ParticleDefinition;
80class G4ParticleTable;
81class G4ParticlePropertyMessenger;
82
83
84class G4UIdirectory;
85class G4UIcmdWithAString; 
86class G4UIcmdWithAnInteger; 
87class G4UIcmdWithoutParameter; 
88
89#include "G4UImessenger.hh"
90#include "globals.hh"
91
92
93class G4ParticleMessenger: public G4UImessenger
94{
95  public: 
96    G4ParticleMessenger(G4ParticleTable* pTable = 0);
97    virtual ~G4ParticleMessenger();
98
99  public: // With Description
100    void SetNewValue(G4UIcommand * command,G4String newValues);
101    G4String GetCurrentValue(G4UIcommand * command);
102
103  private:
104  //  !!!  can not use "copy constructor" !!!!
105    G4ParticleMessenger(const G4ParticleMessenger&):G4UImessenger(){};
106
107  private:
108    G4UIdirectory *             thisDirectory;
109    G4UIcmdWithAString *        listCmd;
110    G4UIcmdWithAString *        selectCmd;
111    G4UIcmdWithAnInteger *      findCmd;
112    G4UIcmdWithoutParameter *   createAllCmd;
113    G4UIcmdWithAnInteger *      verboseCmd;
114
115    G4ParticleTable* theParticleTable;
116    G4ParticleDefinition* currentParticle;
117
118    G4ParticlePropertyMessenger* fParticlePropertyMessenger;
119};
120
121#endif
122
123
124
125
126
127
128
129
130
Note: See TracBrowser for help on using the repository browser.