81 std::vector<G4double> valueList)
87 G4String error_msg =
"Matrix '" + name +
"' is empty!";
88 G4Exception(
"G4GDMLEvaluator::DefineMatrix()",
"InvalidSize",
102 if(size % coldim != 0)
104 G4String error_msg =
"Matrix '" + name +
"' is not filled correctly!";
105 G4Exception(
"G4GDMLEvaluator::DefineMatrix()",
"InvalidSize",
109 if((size == coldim) || (coldim == 1))
111 for(
G4int i = 0; i < size; ++i)
113 std::stringstream MatrixElementNameStream;
114 MatrixElementNameStream << name <<
"_" << i;
120 const G4int rowdim = size / coldim;
122 for(
G4int i = 0; i < rowdim; ++i)
124 for(
G4int j = 0; j < coldim; ++j)
126 std::stringstream MatrixElementNameStream;
127 MatrixElementNameStream << name <<
"_" << i <<
"_" << j;
129 valueList[coldim * i + j]);
166 std::string::size_type full = in.size();
167 std::string::size_type open = in.find(
"[", 0);
168 std::string::size_type close = in.find(
"]", 0);
175 if((open > close) || (open == std::string::npos) ||
176 (close == std::string::npos))
178 G4String error_msg =
"Bracket mismatch: " + in;
179 G4Exception(
"G4GDMLEvaluator::SolveBrackets()",
"InvalidExpression",
184 std::string::size_type begin = open;
185 std::string::size_type end = 0;
186 std::string::size_type end1 = 0;
188 out.append(in, 0, open);
194 end = in.find(
",", begin + 1);
195 end1 = in.find(
"]", begin + 1);
200 if(end == std::string::npos)
205 std::stringstream indexStream;
209 out.append(indexStream.str());
213 }
while(end < close);
220 open = in.find(
"[", begin);
221 close = in.find(
"]", begin + 1);
225 out.append(in.substr(end + 1, full - end - 1));
228 out.append(in.substr(end + 1, open - end - 1));
232 }
while(close < full);