38 lines
947 B
C++
38 lines
947 B
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: ExN02PrimaryGeneratorMessenger.hh,v 1.1.10.1 1999/12/07 20:47:24 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
|
|
#ifndef ExN02PrimaryGeneratorMessenger_h
|
|
#define ExN02PrimaryGeneratorMessenger_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4UImessenger.hh"
|
|
|
|
class ExN02PrimaryGeneratorAction;
|
|
class G4UIcmdWithAString;
|
|
|
|
class ExN02PrimaryGeneratorMessenger: public G4UImessenger
|
|
{
|
|
public:
|
|
ExN02PrimaryGeneratorMessenger(ExN02PrimaryGeneratorAction* myGun);
|
|
~ExN02PrimaryGeneratorMessenger();
|
|
|
|
void SetNewValue(G4UIcommand * command,G4String newValues);
|
|
|
|
private:
|
|
ExN02PrimaryGeneratorAction* myAction;
|
|
|
|
G4UIcmdWithAString* RndmCmd;
|
|
};
|
|
|
|
#endif
|
|
|