50 lines
1.3 KiB
C++
50 lines
1.3 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.
|
|
//
|
|
// Class Description:
|
|
// The messenger for physics list class.
|
|
// Class Description - end
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#ifndef Em6PhysicsListMessenger_h
|
|
#define Em6PhysicsListMessenger_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4UImessenger.hh"
|
|
|
|
class Em6PhysicsList;
|
|
class G4UIcmdWithADoubleAndUnit;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class Em6PhysicsListMessenger: public G4UImessenger
|
|
{
|
|
public: // Without description
|
|
|
|
Em6PhysicsListMessenger(Em6PhysicsList*);
|
|
~Em6PhysicsListMessenger();
|
|
|
|
void SetNewValue(G4UIcommand*, G4String);
|
|
|
|
private:
|
|
|
|
Em6PhysicsList* Em6List;
|
|
|
|
G4UIcmdWithADoubleAndUnit* cutGCmd;
|
|
G4UIcmdWithADoubleAndUnit* cutECmd;
|
|
G4UIcmdWithADoubleAndUnit* cutPCmd;
|
|
G4UIcmdWithADoubleAndUnit* rCmd;
|
|
G4UIcmdWithADoubleAndUnit* eCmd;
|
|
G4UIcmdWithADoubleAndUnit* setMaxStepCmd;
|
|
};
|
|
|
|
#endif
|
|
|