source: ELYSE/tags/v1r1/source/RunActionMessenger.cxx @ 296

Last change on this file since 296 was 286, checked in by campagne, 17 years ago

ELYSE sauvegarde provisoire (JEC)

File size: 793 bytes
Line 
1#include "ELYSE/RunActionMessenger.hh"
2
3//Geant4
4#include "G4UIdirectory.hh"
5#include "G4UIcommand.hh"
6#include "G4UIparameter.hh"
7#include "globals.hh"
8
9//ELYSE
10#include "ELYSE/RunAction.hh"
11
12ELYSE::RunActionMessenger::RunActionMessenger(ELYSE::RunAction* ELYSERA)
13:ELYSERun(ELYSERA) { 
14  ELYSEIODir = new G4UIdirectory("/ELYSE/IO/");
15  ELYSEIODir->SetGuidance("Commands to select I/O options");
16 
17}//Ctor
18
19//----------------------------------------------------------------------------------
20
21ELYSE::RunActionMessenger::~RunActionMessenger() {
22
23  delete ELYSEIODir;
24
25}//Dtor
26
27//----------------------------------------------------------------------------------
28
29void ELYSE::RunActionMessenger::SetNewValue(G4UIcommand* /*command*/,
30                                              G4String /*newValue*/) {   
31 
32
33}//SetNewValue
Note: See TracBrowser for help on using the repository browser.