source: ELYSE/HEAD/ELYSE/RunActionMessenger.hh @ 629

Last change on this file since 629 was 286, checked in by campagne, 18 years ago

ELYSE sauvegarde provisoire (JEC)

File size: 563 bytes
Line 
1#ifndef ELYSERunActionMessenger_h
2#define ELYSERunActionMessenger_h 1
3
4//Geant4
5#include "G4UImessenger.hh"
6#include "globals.hh"
7
8class G4UIdirectory;
9class G4UIcmdWithAString;
10
11
12//JEC 10/1/06 introduce ELYSE
13namespace ELYSE {
14
15class RunAction;
16
17class RunActionMessenger: public G4UImessenger {
18 public:
19  RunActionMessenger(RunAction* mpga);
20  virtual ~RunActionMessenger();
21 
22 public:
23  void     SetNewValue(G4UIcommand* command, G4String newValues);
24 
25 private:
26  RunAction* ELYSERun;
27 
28 private: //commands
29  G4UIdirectory*      ELYSEIODir;
30};
31}
32#endif
33
34
Note: See TracBrowser for help on using the repository browser.