Files
geant4/source/g3tog4/test/include/G3toG4EventActionMessenger.hh
T
2016-06-08 15:28:20 +02:00

41 lines
1.1 KiB
C++

// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G3toG4EventActionMessenger.hh,v 1.2 1999/12/05 17:50:25 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
#ifndef G3toG4EventActionMessenger_h
#define G3toG4EventActionMessenger_h 1
#include "globals.hh"
#include "G4UImessenger.hh"
class G3toG4EventAction;
class G4UIcmdWithAString;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
class G3toG4EventActionMessenger: public G4UImessenger
{
public:
G3toG4EventActionMessenger(G3toG4EventAction*);
~G3toG4EventActionMessenger();
void SetNewValue(G4UIcommand*, G4String);
private:
G3toG4EventAction* eventAction;
G4UIcmdWithAString* DrawCmd;
};
#endif