44{
45 theB = ab;
46 aDir1 = new G4UIdirectory("/physics_lists/", false);
47 aDir1->SetGuidance("commands for physics list configuration.");
48
49
50 aDir2 = new G4UIdirectory("/physics_lists/em/", false);
51 aDir2->SetGuidance("Extra EM processes configuration.");
52
53
54 theSynch = new G4UIcmdWithABool("/physics_lists/em/SyncRadiation",this);
55 theSynch->SetGuidance("Switching on/off synchrotron radiation.");
57 theSynch->SetToBeBroadcasted(false);
58
59
60 theSynchAll = new G4UIcmdWithABool("/physics_lists/em/SyncRadiationAll",this);
61 theSynchAll->SetGuidance("Switching on/off synchrotron radiation for all charged.");
63 theSynchAll->SetToBeBroadcasted(false);
64
65
66 theGN = new G4UIcmdWithABool("/physics_lists/em/GammaNuclear",this);
67 theGN->SetGuidance("Switching on gamma nuclear physics.");
69 theGN->SetToBeBroadcasted(false);
70
71
72 theXS = new G4UIcmdWithABool("/physics_lists/em/UseGammaNuclearXS",this);
73 theXS->SetGuidance("Use XS gamma nuclear cross section.");
75 theXS->SetToBeBroadcasted(false);
76
77
78 theGLENDN = new G4UIcmdWithABool("/physics_lists/em/LENDGammaNuclear",this);
79 theGLENDN->SetGuidance("Switching on LEND gamma nuclear physics.");
81 theGLENDN->SetToBeBroadcasted(false);
82
83 theEN = new G4UIcmdWithABool("/physics_lists/em/ElectroNuclear",this);
84 theEN->SetGuidance("Switching on e+- nuclear physics.");
86 theEN->SetToBeBroadcasted(false);
87
88
89 theMUN = new G4UIcmdWithABool("/physics_lists/em/MuonNuclear",this);
90 theMUN->SetGuidance("Switching on muon nuclear physics.");
92 theMUN->SetToBeBroadcasted(false);
93
94 theGMM = new G4UIcmdWithABool("/physics_lists/em/GammaToMuons",this);
95 theGMM->SetGuidance("Switching on gamma conversion to muon pair.");
97 theGMM->SetToBeBroadcasted(false);
98
99 theMMM = new G4UIcmdWithABool("/physics_lists/em/MuonToMuons",this);
100 theMMM->SetGuidance("Switching on muon pair production by muons.");
102 theMMM->SetToBeBroadcasted(false);
103
104 thePMM = new G4UIcmdWithABool("/physics_lists/em/PositronToMuons",this);
105 thePMM->SetGuidance("Switching on positron conversion to muon pair.");
107 thePMM->SetToBeBroadcasted(false);
108
109 thePH = new G4UIcmdWithABool("/physics_lists/em/PositronToHadrons",this);
110 thePH->SetGuidance("Switching on positron conversion to hadrons.");
112 thePH->SetToBeBroadcasted(false);
113
114 theGMM1 = new G4UIcmdWithADouble("/physics_lists/em/GammaToMuonsFactor",this);
115 theGMM1->SetGuidance("Factor for gamma conversion to muon pair.");
117 theGMM1->SetToBeBroadcasted(false);
118
119 thePMM1 = new G4UIcmdWithADouble("/physics_lists/em/PositronToMuonsFactor",this);
120 thePMM1->SetGuidance("Factor for positron conversion to muon pair.");
122 thePMM1->SetToBeBroadcasted(false);
123
124 thePH1 = new G4UIcmdWithADouble("/physics_lists/em/PositronToHadronsFactor",this);
125 thePH1->SetGuidance("Factor for positron conversion to hadrons.");
127 thePH1->SetToBeBroadcasted(false);
128
129 theGNlowe = new G4UIcmdWithADoubleAndUnit("/physics_lists/em/GammaNuclearLEModelLimit",this);
130 theGNlowe->SetGuidance("Upper energy limit for low-energy gamma-nuclear model");
131 theGNlowe->SetParameterName("emin",true);
132 theGNlowe->SetUnitCategory("Energy");
134 theGNlowe->SetToBeBroadcasted(false);
135}