source: trunk/source/processes/management/include/G4ProcessManagerMessenger.hh@ 1196

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

update CVS release candidate geant4.9.3.01

File size: 3.9 KB
RevLine 
[819]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: G4ProcessManagerMessenger.hh,v 1.7 2006/06/29 21:07:30 gunter Exp $
[1196]28// GEANT4 tag $Name: geant4-09-03-cand-01 $
[819]29//
30//
31//---------------------------------------------------------------
32//
33// G4ProcessManagerMessenger.hh
34//
35// Class Description:
36// This is a messenger class to interface to exchange information
37// between ProcessManager and UI.
38//-
39// /particle/process/ Process Manager control commands.
40// Commands :
41// dump * dump process manager information.
42// Verbose * Set Verbose Level for Process Manager and/or process
43// Activate * Activate process
44// inactivate * Inctivate process
45//
46// History:
47// 13 June 1997, H. Kurashige : The 1st version created.
48// 10 Nov. 1997 H. Kurashige : fixed bugs
49// 08 Jan. 1998, H. Kurashige : new UIcommand
50//
51//---------------------------------------------------------------
52
53#ifndef G4ProcessManagerMessenger_h
54#define G4ProcessManagerMessenger_h 1
55
56class G4ParticleDefinition;
57class G4ParticleTable;
58class G4ProcessManager;
59class G4ProcessVector;
60class G4VProcess;
61
62class G4UIdirectory;
63class G4UIcmdWithoutParameter;
64class G4UIcmdWithAnInteger;
65class G4UIcommand;
66
67#include "G4UImessenger.hh"
68#include "globals.hh"
69
70class G4ProcessManagerMessenger: public G4UImessenger
71{
72 public:
73 G4ProcessManagerMessenger(G4ParticleTable* pTable = 0);
74 // constructor
75
76 virtual ~G4ProcessManagerMessenger();
77 // destructor
78
79public: // with description
80 virtual void SetNewValue(G4UIcommand * command,G4String newValues);
81 // set new value for command string
82
83 virtual G4String GetCurrentValue(G4UIcommand * command);
84 // get current value for command string
85
86 private:
87 G4ProcessManagerMessenger(const G4ProcessManagerMessenger&)
88 : G4UImessenger() {};
89 // hide copy constructor as private
90
91 private:
92 G4ParticleDefinition* SetCurrentParticle();
93 // set particle currently concerned
94
95 private:
96 G4ParticleTable* theParticleTable;
97 G4ParticleDefinition* currentParticle;
98 G4VProcess* currentProcess;
99 G4ProcessManager* theManager;
100 G4ProcessVector* theProcessList;
101
102 G4UIdirectory * thisDirectory;
103 G4UIcmdWithAnInteger * dumpCmd;
104 G4UIcommand * verboseCmd;
105 G4UIcmdWithAnInteger * activateCmd;
106 G4UIcmdWithAnInteger * inactivateCmd;
107};
108
109#endif
110
Note: See TracBrowser for help on using the repository browser.