85 lines
2.6 KiB
C++
85 lines
2.6 KiB
C++
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//*
|
|
// LOW ENERGY MUON SPIN RELAXATION, ROTATION, RADIATION Geant4 SIMULATION
|
|
// ID : LEMuSRStackingActionMessenger.hh , v 1.0
|
|
// AUTHOR: Taofiq PARAISO
|
|
// DATE : 2004-07-07 11:15
|
|
//
|
|
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//
|
|
//
|
|
// & &&&&&&&&&& &&&&&&& &&&&&&&&
|
|
// & & && && & &&
|
|
// & & & & & & &&
|
|
// & &&&&&&& & & &&&&&& &&&&&&&&
|
|
// & & & && & & &&
|
|
// & & && & & && && & &
|
|
// &&&&&&&&&& &&&&&&&&&& & &&&&& && &&&&&&& & &&
|
|
// &
|
|
// &
|
|
// &
|
|
// &
|
|
// STACKING ACTION MESSENGER
|
|
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//
|
|
|
|
|
|
#ifndef LEMuSRStackingActionMessenger_h
|
|
#define LEMuSRStackingActionMessenger_h 1
|
|
|
|
class LEMuSRStackingAction;
|
|
|
|
#include "G4UIdirectory.hh"
|
|
#include "G4UIcmdWith3VectorAndUnit.hh"
|
|
#include "G4UIcmdWith3Vector.hh"
|
|
#include "G4UIcmdWithADoubleAndUnit.hh"
|
|
#include "G4UIcmdWithAString.hh"
|
|
#include "G4UIcmdWithADouble.hh"
|
|
|
|
#include "G4UIcmdWithAnInteger.hh"
|
|
#include "G4UIcmdWithoutParameter.hh"
|
|
#include "G4UIcommand.hh"
|
|
#include "G4UImanager.hh"
|
|
#include "G4UIterminal.hh"
|
|
#include "G4UItcsh.hh"
|
|
|
|
class G4UIcommand;
|
|
class G4UIdirectory;
|
|
class G4UIcmdWithADouble;
|
|
class G4UIcmdWithADoubleAndUnit;
|
|
class G4UIcmdWith3VectorAndUnit;
|
|
class G4UIcmdWith3Vector;
|
|
class G4UIcmdWithAnInteger;
|
|
class G4UIcmdWithAString;
|
|
class G4UIcmdWithoutParameter;
|
|
|
|
#include "G4UImessenger.hh"
|
|
#include "globals.hh"
|
|
|
|
|
|
/*!
|
|
* Messenger clas for the stacking action (unused).
|
|
*/
|
|
class LEMuSRStackingActionMessenger: public G4UImessenger
|
|
{
|
|
public:
|
|
LEMuSRStackingActionMessenger(LEMuSRStackingAction* msa);
|
|
~LEMuSRStackingActionMessenger();
|
|
|
|
public:
|
|
void SetNewValue(G4UIcommand * command,G4String newValues);
|
|
G4String GetCurrentValue(G4UIcommand * command);
|
|
|
|
private:
|
|
LEMuSRStackingAction * myAction;
|
|
|
|
private: //commands
|
|
/*
|
|
G4UIcmdWithAnInteger * muonCmd;
|
|
G4UIcmdWithAnInteger * isomuonCmd;
|
|
G4UIcmdWithAnInteger * isoCmd;
|
|
G4UIcmdWithADoubleAndUnit * roiCmd;
|
|
*/
|
|
|
|
};
|
|
|
|
#endif
|
|
|