Files
geant4/examples/novice/N05/include/ExN05SteppingActionMessenger.hh
T
2016-06-08 16:57:27 +02:00

54 lines
2.1 KiB
C++

//
// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. *
// * *
// * 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: ExN05SteppingActionMessenger.hh,v 1.4 2002/01/09 17:24:19 ranjard Exp $
// GEANT4 tag $Name: geant4-05-00 $
//
#ifndef ExN05SteppingActionMessenger_h
#define ExN05SteppingActionMessenger_h 1
#include "globals.hh"
#include "G4UImessenger.hh"
#include "G4UIcommand.hh"
class ExN05SteppingAction;
class G4UIdirectory;
class G4UIcmdWithABool;
class ExN05SteppingActionMessenger: public G4UImessenger
{
public:
ExN05SteppingActionMessenger(ExN05SteppingAction *SA);
void SetNewValue(G4UIcommand* command, G4String newValues);
private:
ExN05SteppingAction* SteppingAction;
G4UIdirectory* stepDirectory;
G4UIcmdWithABool* drawStepCmd;
G4UIcmdWithABool* verboseStepCmd;
};
#endif