53 : manager(man)
54{
55 matDir = new G4UIdirectory("/material/");
56 matDir->SetGuidance("Commands for materials");
57
58 verCmd = new G4UIcmdWithAnInteger("/material/verbose", this);
59 verCmd->SetGuidance("Set verbose level.");
61 verCmd->SetToBeBroadcasted(false);
62
63 nistDir = new G4UIdirectory("/material/nist/");
64 nistDir->SetGuidance("Commands for the nist dataBase");
65
66 prtElmCmd = new G4UIcmdWithAString("/material/nist/printElement", this);
67 prtElmCmd->SetGuidance("print element(s) in dataBase.");
68 prtElmCmd->SetGuidance("symbol = element.");
69 prtElmCmd->SetGuidance("all = all elements.");
70 prtElmCmd->SetParameterName("symbol", true);
71 prtElmCmd->SetDefaultValue("all");
73 prtElmCmd->SetToBeBroadcasted(false);
74
75 przElmCmd = new G4UIcmdWithAnInteger("/material/nist/printElementZ", this);
76 przElmCmd->SetGuidance("print element Z in dataBase.");
77 przElmCmd->SetGuidance("0 = all elements.");
78 przElmCmd->SetParameterName("Z", true);
79 przElmCmd->SetDefaultValue(0);
80 przElmCmd->SetRange("0<=Z && Z<108");
82 przElmCmd->SetToBeBroadcasted(false);
83
84 lisMatCmd = new G4UIcmdWithAString("/material/nist/listMaterials", this);
85 lisMatCmd->SetGuidance("Materials in Geant4 dataBase.");
86 lisMatCmd->SetGuidance("simple - simple NIST materials.");
87 lisMatCmd->SetGuidance("compound - compound NIST materials.");
88 lisMatCmd->SetGuidance("hep - HEP materials.");
89 lisMatCmd->SetGuidance("bio - biomedical materials.");
90 lisMatCmd->SetGuidance("all - list of all Geant4 materials.");
91 lisMatCmd->SetParameterName("matlist", true);
92
93 lisMatCmd->SetDefaultValue("all");
95 lisMatCmd->SetToBeBroadcasted(false);
96
97 g4Dir = new G4UIdirectory("/material/g4/");
98 g4Dir->SetGuidance("Commands for G4MaterialTable");
99
100 g4ElmCmd = new G4UIcmdWithAString("/material/g4/printElement", this);
101 g4ElmCmd->SetGuidance("print Element from G4ElementTable.");
102 g4ElmCmd->SetGuidance("all - all elements.");
103 g4ElmCmd->SetParameterName("elm", true);
104 g4ElmCmd->SetDefaultValue("all");
105
106 g4MatCmd = new G4UIcmdWithAString("/material/g4/printMaterial", this);
107 g4MatCmd->SetGuidance("print Material from G4MaterialTable.");
108 g4MatCmd->SetGuidance("all - all materials");
109 g4MatCmd->SetParameterName("pmat", true);
110 g4MatCmd->SetDefaultValue("all");
112 g4MatCmd->SetToBeBroadcasted(false);
113
114 g4DensCmd = new G4UIcmdWithAString("/material/g4/printDensityEffParam", this);
115 g4DensCmd->SetGuidance("print Material from G4DensityEffectData.");
116 g4DensCmd->SetGuidance("all - all materials");
117 g4DensCmd->SetParameterName("dmat", true);
118 g4DensCmd->SetDefaultValue("all");
120 g4DensCmd->SetToBeBroadcasted(false);
121
122 densCmd = new G4UIcmdWithAString("/material/g4/enableDensityEffOnFly", this);
123 densCmd->SetGuidance("enable accurate computation of density effect.");
124 densCmd->SetGuidance("all - all materials.");
125 densCmd->SetParameterName("dens", true);
126 densCmd->SetDefaultValue("all");
128 lisMatCmd->SetToBeBroadcasted(false);
129
130 adensCmd = new G4UIcmdWithAString("/material/g4/disableDensityEffOnFly", this);
131 adensCmd->SetGuidance("disable accurate computation of density effect.");
132 adensCmd->SetGuidance("all - all materials.");
133 adensCmd->SetParameterName("dens", true);
134 adensCmd->SetDefaultValue("all");
136 adensCmd->SetToBeBroadcasted(false);
137
138 fPosiCmd = new G4UIcommand("/material/g4/ortoPositroniumFraction", this);
139 fPosiCmd->SetGuidance("defined orto-positronium fraction for positron annihilation AtRest.");
140 fPosiCmd->SetGuidance("via material name, all - all materials.");
142 fPosiCmd->SetToBeBroadcasted(false);
143
144 auto p1 = new G4UIparameter("matname",'s', false);
145 fPosiCmd->SetParameter(p1);
146
147 auto p2 = new G4UIparameter("fraction", 'd', false);
148 p2->SetParameterRange("fraction>=0. && fraction <=1.");
149 fPosiCmd->SetParameter(p2);
150}