#ifndef SIMG4_COMETUSERSTACKINGACTIONMESSENGER_HH #define SIMG4_COMETUSERSTACKINGACTIONMESSENGER_HH #include #include "G4UImessenger.hh" class COMETUserStackingAction; class G4UIcommand; class COMETUserStackingActionMessenger: public G4UImessenger { public: COMETUserStackingActionMessenger(COMETUserStackingAction*); virtual ~COMETUserStackingActionMessenger(); /// Handle messages from the UI processor. void SetNewValue(G4UIcommand*, G4String); private: // need primary generator action to change the seed COMETUserStackingAction* fUserStackingAction; G4UIcommand* fMinEnergyCmd; G4UIcommand* fMaxEnergyCmd; }; #endif