47 lines
1.2 KiB
C++
47 lines
1.2 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: Em2PhysicsListMessenger.hh,v 1.1 2000/04/17 11:25:52 maire Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#ifndef Em2PhysicsListMessenger_h
|
|
#define Em2PhysicsListMessenger_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4UImessenger.hh"
|
|
|
|
class Em2PhysicsList;
|
|
class G4UIcmdWithADoubleAndUnit;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class Em2PhysicsListMessenger: public G4UImessenger
|
|
{
|
|
public:
|
|
|
|
Em2PhysicsListMessenger(Em2PhysicsList* );
|
|
~Em2PhysicsListMessenger();
|
|
|
|
void SetNewValue(G4UIcommand*, G4String);
|
|
|
|
private:
|
|
|
|
Em2PhysicsList* pPhysicsList;
|
|
|
|
G4UIcmdWithADoubleAndUnit* gammaCutCmd;
|
|
G4UIcmdWithADoubleAndUnit* electCutCmd;
|
|
G4UIcmdWithADoubleAndUnit* protoCutCmd;
|
|
};
|
|
|
|
#endif
|
|
|