90 {
91
93
94 G4String searchString, activateString;
95 std::istringstream is (newValue);
96
97
98
99
100 auto lastQuotationMark = newValue.find_last_of('"');
101 if (lastQuotationMark != std::string::npos) {
102 auto firstQuotationMark = newValue.find_first_of('"');
103 if (lastQuotationMark != firstQuotationMark) {
104
105 searchString = newValue.substr
106 (firstQuotationMark + 1, lastQuotationMark - firstQuotationMark - 1);
107 activateString = newValue.substr(lastQuotationMark + 2);
108
110 for (auto c : newValue) {
111 if (c == '"') nQuotes++;
112 }
113 if (nQuotes > 2) {
115 ed << "More than 2 quotation marks in search string: " << searchString;
117 }
118 }
119 }
120 else {
121
122 is >> searchString >> activateString;
123 }
125
127 if (!pScene) {
129 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
130 }
131 return;
132 }
133
134 G4VSceneHandler* pSceneHandler =
fpVisManager->GetCurrentSceneHandler();
135 if (!pSceneHandler) {
137 G4warn <<
"ERROR: No current sceneHandler. Please create one." <<
G4endl;
138 }
139 return;
140 }
141
142 if (searchString == "all" && !activate) {
145 "WARNING: You are not allowed to de-activate all models."
146 "\n Command ignored."
148 }
149 return;
150 }
151
153
154 std::vector<G4Scene::Model>& runDurationModelList =
156 for (size_t i = 0; i < runDurationModelList.size(); i++) {
157 const G4String& modelName = runDurationModelList[i].fpModel->GetGlobalDescription();
158 if (searchString == "all" || modelName.find(searchString) != std::string::npos) {
159 any = true;
160 runDurationModelList[i].fActive = activate;
162 G4warn <<
"Model \"" << modelName;
163 if (activate)
G4warn <<
"\" activated.";
164 else G4warn <<
"\" de-activated.";
166 }
167 }
168 }
169
170 std::vector<G4Scene::Model>& endOfEventModelList =
172 for (size_t i = 0; i < endOfEventModelList.size(); i++) {
173 const G4String& modelName = endOfEventModelList[i].fpModel->GetGlobalDescription();
174 if (searchString == "all" || modelName.find(searchString) != std::string::npos) {
175 any = true;
176 endOfEventModelList[i].fActive = activate;
178 G4warn <<
"Model \"" << modelName;
179 if (activate)
G4warn <<
"\" activated.";
180 else G4warn <<
"\" de-activated.";
182 }
183 }
184 }
185
186 std::vector<G4Scene::Model>& endOfRunModelList =
188 for (size_t i = 0; i < endOfRunModelList.size(); i++) {
189 const G4String& modelName = endOfRunModelList[i].fpModel->GetGlobalDescription();
190 if (searchString == "all" || modelName.find(searchString) != std::string::npos) {
191 any = true;
192 endOfRunModelList[i].fActive = activate;
194 G4warn <<
"Model \"" << modelName;
195 if (activate)
G4warn <<
"\" activated.";
196 else G4warn <<
"\" de-activated.";
198 }
199 }
200 }
201
202 if (!any) {
205 }
206 return;
207 }
208
210}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
std::vector< Model > & SetEndOfRunModelList()
std::vector< Model > & SetRunDurationModelList()
std::vector< Model > & SetEndOfEventModelList()
static G4bool ConvertToBool(const char *st)
void CheckSceneAndNotifyHandlers(G4Scene *=nullptr)
static G4VisManager * fpVisManager