49 void addToSolStore(
const DDSolid& sol, std::set<DDSolid>& solStore, std::set<DDRotation>& rotStore);
59 if (sv1.size() < sv2.size())
61 if (sv2.size() < sv1.size())
65 for (; ind < sv1.size(); ++ind) {
86 (*m_xos) <<
"<?xml version=\"1.0\"?>" << std::endl;
87 (*m_xos) <<
"<DDDefinition xmlns=\"http://www.cern.ch/cms/DDL\"" << std::endl;
88 (*m_xos) <<
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"" << std::endl;
89 (*m_xos) <<
"xsi:schemaLocation=\"http://www.cern.ch/cms/DDL ../../../DetectorDescription/Schema/DDLSchema.xsd\">"
91 (*m_xos) <<
std::fixed << std::setprecision(18);
95 (*m_xos) <<
"</DDDefinition>" << std::endl;
96 (*m_xos) << std::endl;
101 std::cout <<
"OutputDDToDDL::beginRun" << std::endl;
109 const auto& gra = pDD->
graph();
111 std::set<DDLogicalPart> lpStore;
112 std::set<DDMaterial> matStore;
113 std::set<DDSolid> solStore;
117 std::map<const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp> specStore;
118 std::set<DDRotation> rotStore;
123 size_t foundLastDot = rn.find_last_of(
'.');
124 size_t foundLastSlash = rn.find_last_of(
'/');
125 if (foundLastSlash > foundLastDot && foundLastSlash != std::string::npos) {
126 std::cout <<
"What? last . before last / in path for filename... this should die..." << std::endl;
128 if (foundLastDot != std::string::npos && foundLastSlash != std::string::npos) {
129 out.ns_ = rn.substr(foundLastSlash, foundLastDot);
130 }
else if (foundLastDot != std::string::npos) {
131 out.ns_ = rn.substr(0, foundLastDot);
133 std::cout <<
"What? no file name? Attempt at namespace =\"" <<
out.ns_ <<
"\" filename was " <<
m_fname
139 (*m_xos) <<
std::fixed << std::setprecision(18);
145 (*m_xos) <<
"<PosPartSection label=\"" << ns_ <<
"\">" << std::endl;
147 for (; git != gend; ++git) {
149 if (lpStore.find(ddLP) != lpStore.end()) {
152 lpStore.insert(ddLP);
158 auto cit = git->begin();
159 auto cend = git->end();
160 for (; cit != cend; ++cit) {
162 if (lpStore.find(ddcurLP) != lpStore.end()) {
165 lpStore.insert(ddcurLP);
168 rotStore.insert(gra.edgeData(cit->second)->ddrot());
174 (*m_xos) <<
"</PosPartSection>" << std::endl;
176 (*m_xos) << std::scientific << std::setprecision(18);
178 (*m_xos) <<
"<MaterialSection label=\"" << ns_ <<
"\">" << std::endl;
179 for (
const auto& it : matStore) {
180 if (!it.isDefined().second)
184 (*m_xos) <<
"</MaterialSection>" << std::endl;
185 (*m_xos) <<
"<RotationSection label=\"" << ns_ <<
"\">" << std::endl;
186 (*m_xos) <<
std::fixed << std::setprecision(18);
187 std::set<DDRotation>::iterator rit(rotStore.begin()),
red(rotStore.end());
188 for (; rit !=
red; ++rit) {
189 if (!rit->isDefined().second)
191 if (rit->toString() !=
":") {
196 (*m_xos) <<
"</RotationSection>" << std::endl;
198 (*m_xos) <<
std::fixed << std::setprecision(18);
199 std::set<DDSolid>::const_iterator sit(solStore.begin()), sed(solStore.end());
200 (*m_xos) <<
"<SolidSection label=\"" << ns_ <<
"\">" << std::endl;
201 for (; sit != sed; ++sit) {
202 if (!sit->isDefined().second)
206 (*m_xos) <<
"</SolidSection>" << std::endl;
208 std::set<DDLogicalPart>::iterator lpit(lpStore.begin()), lped(lpStore.end());
209 (*m_xos) <<
"<LogicalPartSection label=\"" << ns_ <<
"\">" << std::endl;
210 for (; lpit != lped; ++lpit) {
211 if (!lpit->isDefined().first)
216 (*m_xos) <<
"</LogicalPartSection>" << std::endl;
218 (*m_xos) <<
std::fixed << std::setprecision(18);
219 std::map<DDsvalues_type, std::set<const DDPartSelection*> >::const_iterator mit(specStore.begin()),
220 mend(specStore.end());
221 (*m_xos) <<
"<SpecParSection label=\"" << ns_ <<
"\">" << std::endl;
222 for (; mit != mend; ++mit) {
225 (*m_xos) <<
"</SpecParSection>" << std::endl;
229 matStore.insert(mat);
233 if (matStore.find(mat.
constituent(findex).first) == matStore.end()) {
242 solStore.insert(sol);
246 if (solStore.find(
bs.solidA()) == solStore.end()) {
249 if (solStore.find(
bs.solidB()) == solStore.end()) {
252 rotStore.insert(
bs.rotation());
260 specStore[*spit.second].insert(spit.first);