Warning, file /include/Geant4/G4CascadeParamMessenger.hh was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035 #ifndef G4CascadeParamMessenger_hh
0036 #define G4CascadeParamMessenger_hh
0037
0038 #include "G4UImessenger.hh"
0039 #include "globals.hh"
0040
0041 class G4CascadeParameters;
0042 class G4UIcmdWithABool;
0043 class G4UIcmdWithADouble;
0044 class G4UIcmdWithAString;
0045 class G4UIcmdWithAnInteger;
0046 class G4UIcmdWithoutParameter;
0047 class G4UIcommand;
0048 class G4UIdirectory;
0049
0050
0051 class G4CascadeParamMessenger : public G4UImessenger {
0052 public:
0053 G4CascadeParamMessenger(G4CascadeParameters* params);
0054 ~G4CascadeParamMessenger() override;
0055
0056
0057 void SetNewValue(G4UIcommand* command, G4String newValue) override;
0058
0059 protected:
0060
0061 template <class T>
0062 T* CreateCommand(const G4String& cmd, const G4String& desc);
0063
0064 private:
0065 G4CascadeParameters* theParams;
0066 G4UIdirectory* cmdDir;
0067
0068 G4UIcmdWithAnInteger* verboseCmd;
0069 G4UIcmdWithoutParameter* reportCmd;
0070 G4UIcmdWithABool* balanceCmd;
0071 G4UIcmdWithABool* usePreCoCmd;
0072 G4UIcmdWithABool* doCoalCmd;
0073 G4UIcmdWithADouble* piNAbsCmd;
0074 G4UIcmdWithABool* historyCmd;
0075 G4UIcmdWithABool* use3BodyCmd;
0076 G4UIcmdWithABool* usePSCmd;
0077 G4UIcmdWithAString* randomFileCmd;
0078 G4UIcmdWithABool* nucUseBestCmd;
0079 G4UIcmdWithADouble* nucRad2parCmd;
0080 G4UIcmdWithADouble* nucRadScaleCmd;
0081 G4UIcmdWithADouble* nucRadSmallCmd;
0082 G4UIcmdWithADouble* nucRadAlphaCmd;
0083 G4UIcmdWithADouble* nucRadTrailingCmd;
0084 G4UIcmdWithADouble* nucFermiScaleCmd;
0085 G4UIcmdWithADouble* nucXsecScaleCmd;
0086 G4UIcmdWithADouble* nucGammaQDCmd;
0087 G4UIcmdWithADouble* coalDPmax2Cmd;
0088 G4UIcmdWithADouble* coalDPmax3Cmd;
0089 G4UIcmdWithADouble* coalDPmax4Cmd;
0090 };
0091
0092
0093 #include "G4CascadeParamMessenger.icc"
0094
0095 #endif