47 void addToSolStore(
const DDSolid& sol, std::set<DDSolid>& solStore, std::set<DDRotation>& rotStore);
49 std::map<
const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp>& specStore);
57 if (sv1.size() < sv2.size())
59 if (sv2.size() < sv1.size())
62 for (; ind < sv1.size(); ++ind) {
65 if (sv2[ind].first < sv1[ind].first)
69 if (sv2[ind].second < sv1[ind].second)
78 if (m_fname.empty()) {
81 m_xos =
new std::ofstream(m_fname.c_str());
84 (*m_xos) <<
"<?xml version=\"1.0\"?>\n";
85 (*m_xos) <<
"<DDDefinition xmlns=\"http://www.cern.ch/cms/DDL\"\n";
86 (*m_xos) <<
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n";
87 (*m_xos) <<
"xsi:schemaLocation=\"http://www.cern.ch/cms/DDL ../../../DetectorDescription/Schema/DDLSchema.xsd\">\n";
88 (*m_xos) << std::fixed << std::setprecision(18);
92 (*m_xos) <<
"</DDDefinition>\n";
93 (*m_xos) << std::endl;
98 edm::LogInfo(
"OutputMagneticFieldDDToDDL") <<
"OutputMagneticFieldDDToDDL::beginRun";
103 const auto& gra = pDD->graph();
106 std::set<DDLogicalPart> lpStore;
107 std::set<DDMaterial> matStore;
108 std::set<DDSolid> solStore;
110 std::map<const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp> specStore;
111 std::set<DDRotation> rotStore;
116 size_t foundLastDot = rn.find_last_of(
'.');
117 size_t foundLastSlash = rn.find_last_of(
'/');
119 if (foundLastSlash > foundLastDot && foundLastSlash != std::string::npos) {
121 <<
"What? last . before last / in path for filename... this should die...";
123 if (foundLastDot != std::string::npos && foundLastSlash != std::string::npos) {
124 out.
ns_ = rn.substr(foundLastSlash, foundLastDot);
125 }
else if (foundLastDot != std::string::npos) {
126 out.
ns_ = rn.substr(0, foundLastDot);
129 <<
"What? no file name? Attempt at namespace =\"" << out.
ns_ <<
"\" filename was " <<
m_fname;
135 (*m_xos) << std::fixed << std::setprecision(18);
144 (*m_xos) <<
"<PosPartSection label=\"" << ns_ <<
"\">\n";
146 for (; git != gend; ++git) {
148 if (lpStore.find(ddLP) != lpStore.end()) {
151 lpStore.insert(ddLP);
157 auto cit = git->begin();
158 auto cend = git->end();
159 for (; cit != cend; ++cit) {
161 if (lpStore.find(ddcurLP) != lpStore.end()) {
164 lpStore.insert(ddcurLP);
167 rotStore.insert(gra.edgeData(cit->second)->ddrot());
173 (*m_xos) <<
"</PosPartSection>\n";
175 (*m_xos) << std::scientific << std::setprecision(18);
176 std::set<DDMaterial>::const_iterator it(matStore.begin()), ed(matStore.end());
177 (*m_xos) <<
"<MaterialSection label=\"" << ns_ <<
"\">\n";
178 for (; it != ed; ++it) {
179 if (!it->isDefined().second)
183 (*m_xos) <<
"</MaterialSection>\n";
185 (*m_xos) <<
"<RotationSection label=\"" << ns_ <<
"\">\n";
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>\n";
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_ <<
"\">\n";
201 for (; sit != sed; ++sit) {
202 if (!sit->isDefined().second)
206 (*m_xos) <<
"</SolidSection>\n";
208 std::set<DDLogicalPart>::iterator lpit(lpStore.begin()), lped(lpStore.end());
209 (*m_xos) <<
"<LogicalPartSection label=\"" << ns_ <<
"\">\n";
210 for (; lpit != lped; ++lpit) {
211 if (!lpit->isDefined().first)
216 (*m_xos) <<
"</LogicalPartSection>\n";
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_ <<
"\">\n";
222 for (; mit != mend; ++mit) {
225 (*m_xos) <<
"</SpecParSection>\n";
229 matStore.insert(mat);
234 if (matStore.find(mat.
constituent(findex).first) == matStore.end()) {
243 std::set<DDSolid>& solStore,
244 std::set<DDRotation>& rotStore) {
245 solStore.insert(sol);
249 if (solStore.find(bs.
solidA()) == solStore.end()) {
252 if (solStore.find(bs.
solidB()) == solStore.end()) {
261 std::map<
const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp>& specStore) {
262 std::vector<std::pair<const DDPartSelection*, const DDsvalues_type*> >::const_iterator spit(
265 for (; spit != spend; ++spit) {
266 specStore[*spit->second].insert(spit->first);
void addToSpecStore(const DDLogicalPart &lp, std::map< const DDsvalues_type, std::set< const DDPartSelection * >, ddsvaluesCmp > &specStore)
T getUntrackedParameter(std::string const &, T const &) const
math::Graph< DDLogicalPart, DDPosData * > Graph
std::vector< double >::size_type index_type
void beginRun(edm::Run const &iEvent, edm::EventSetup const &) override
DDMaterial is used to define and access material information.
#define DEFINE_FWK_MODULE(type)
void specpar(const DDSpecifics &sp, std::ostream &xos)
void addToMatStore(const DDMaterial &mat, std::set< DDMaterial > &matStore)
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
Log< level::Error, false > LogError
A DDSolid represents the shape of a part.
DDSolid solidB(void) const
Represents a uniquely identifyable rotation matrix.
U second(std::pair< T, U > const &p)
void analyze(edm::Event const &iEvent, edm::EventSetup const &) override
std::vector< std::pair< unsigned int, DDValue > > DDsvalues_type
Container::value_type value_type
DDRotation rotation(void) const
void position(const DDLogicalPart &parent, const DDLogicalPart &child, DDPosData *edgeToChild, int &rotNameSeed, std::ostream &xos)
FractionV::value_type constituent(int i) const
returns the i-th compound material and its fraction-mass
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
DDSolidShape shape(void) const
The type of the solid.
void addToSolStore(const DDSolid &sol, std::set< DDSolid > &solStore, std::set< DDRotation > &rotStore)
void logicalPart(const DDLogicalPart &lp, std::ostream &xos)
Graph::const_adj_iterator adjl_iterator
~OutputMagneticFieldDDToDDL(void) override
DDSolid solidA(void) const
Log< level::Info, false > LogInfo
T getParameter(std::string const &) const
int noOfConstituents() const
returns the number of compound materials or 0 for elementary materials
OutputMagneticFieldDDToDDL(const edm::ParameterSet &iConfig)
void material(const DDMaterial &material, std::ostream &xos)
void endRun(edm::Run const &iEvent, edm::EventSetup const &) override
adj_list::const_iterator const_adj_iterator
void rotation(const DDRotation &rotation, std::ostream &xos, const std::string &rotn="")
void solid(const DDSolid &solid, std::ostream &xos)
const std::vector< std::pair< const DDPartSelection *, const DDsvalues_type * > > & attachedSpecifics(void) const
const DDMaterial & material(void) const
Returns a reference object of the material this LogicalPart is made of.