CMS 3D CMS Logo

OutputDDToDDL.cc
Go to the documentation of this file.
17 
18 #include <fstream>
19 #include <iomanip>
20 #include <map>
21 #include <memory>
22 #include <ostream>
23 #include <set>
24 #include <string>
25 #include <stddef.h>
26 #include <utility>
27 #include <vector>
28 
29 namespace {
31  struct ddsvaluesCmp {
32  bool operator() ( const DDsvalues_type& sv1, const DDsvalues_type& sv2 );
33  };
34 }
35 
36 class OutputDDToDDL : public edm::one::EDAnalyzer<edm::one::WatchRuns>
37 {
38 public:
39  explicit OutputDDToDDL( const edm::ParameterSet& iConfig );
40  ~OutputDDToDDL();
41 
42  void beginJob() override {}
43  void beginRun( edm::Run const& iEvent, edm::EventSetup const& ) override;
44  void analyze( edm::Event const& iEvent, edm::EventSetup const& ) override {}
45  void endRun( edm::Run const& iEvent, edm::EventSetup const& ) override {}
46  void endJob() override {}
47 
48 private:
49  void addToMatStore( const DDMaterial& mat, std::set<DDMaterial> & matStore );
50  void addToSolStore( const DDSolid& sol, std::set<DDSolid> & solStore, std::set<DDRotation>& rotStore );
51  void addToSpecStore( const DDLogicalPart& lp, std::map<const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp > & specStore );
52 
55  std::ostream* m_xos;
56 };
57 
58 bool
59 ddsvaluesCmp::operator() ( const DDsvalues_type& sv1, const DDsvalues_type& sv2 )
60 {
61  if( sv1.size() < sv2.size()) return true;
62  if( sv2.size() < sv1.size()) return false;
63 
64  size_t ind = 0;
65  for( ; ind < sv1.size(); ++ind ) {
66  if ( sv1[ind].first < sv2[ind].first ) return true;
67  if ( sv2[ind].first < sv1[ind].first ) return false;
68  if ( sv1[ind].second < sv2[ind].second ) return true;
69  if ( sv2[ind].second < sv1[ind].second ) return false;
70  }
71  return false;
72 }
73 
75  : m_fname()
76 {
77  m_rotNumSeed = iConfig.getParameter<int>("rotNumSeed");
78  m_fname = iConfig.getUntrackedParameter<std::string>("fileName");
79  if( m_fname == "" ) {
80  m_xos = &std::cout;
81  } else {
82  m_xos = new std::ofstream( m_fname.c_str());
83  }
84  (*m_xos) << "<?xml version=\"1.0\"?>" << std::endl;
85  (*m_xos) << "<DDDefinition xmlns=\"http://www.cern.ch/cms/DDL\"" << std::endl;
86  (*m_xos) << " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"" << std::endl;
87  (*m_xos) << "xsi:schemaLocation=\"http://www.cern.ch/cms/DDL ../../../DetectorDescription/Schema/DDLSchema.xsd\">" << std::endl;
88  (*m_xos) << std::fixed << std::setprecision(18);
89 }
90 
92 {
93  (*m_xos) << "</DDDefinition>" << std::endl;
94  (*m_xos) << std::endl;
95  m_xos->flush();
96 }
97 
98 void
100 {
101  std::cout << "OutputDDToDDL::beginRun" << std::endl;
102 
104  es.get<IdealGeometryRecord>().get( pDD );
105 
106  DDCompactView::DDCompactView::graph_type gra = pDD->graph();
107  // temporary stores:
108  std::set<DDLogicalPart> lpStore;
109  std::set<DDMaterial> matStore;
110  std::set<DDSolid> solStore;
111  // 2009-08-19: MEC: I've tried this with set<DDPartSelection> and
112  // had to write operator< for DDPartSelection and DDPartSelectionLevel
113  // the output from such an effort is different than this one.
114  std::map<const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp > specStore;
115  std::set<DDRotation> rotStore;
116 
118 
119  std::string rn = m_fname;
120  size_t foundLastDot = rn.find_last_of('.');
121  size_t foundLastSlash = rn.find_last_of('/');
122  if( foundLastSlash > foundLastDot && foundLastSlash != std::string::npos ) {
123  std::cout << "What? last . before last / in path for filename... this should die..." << std::endl;
124  }
125  if( foundLastDot != std::string::npos && foundLastSlash != std::string::npos ) {
126  out.ns_ = rn.substr( foundLastSlash, foundLastDot );
127  } else if( foundLastDot != std::string::npos ) {
128  out.ns_ = rn.substr(0, foundLastDot);
129  } else {
130  std::cout << "What? no file name? Attempt at namespace =\"" << out.ns_ << "\" filename was " << m_fname << std::endl;
131  }
132  std::cout << "m_fname = " << m_fname << " namespace = " << out.ns_ << std::endl;
133  std::string ns_ = out.ns_;
134 
135  (*m_xos) << std::fixed << std::setprecision(18);
136  typedef DDCompactView::graph_type::const_adj_iterator adjl_iterator;
137 
138  adjl_iterator git = gra.begin();
139  adjl_iterator gend = gra.end();
140 
142  (*m_xos) << "<PosPartSection label=\"" << ns_ << "\">" << std::endl;
143  git = gra.begin();
144  for( ; git != gend; ++git ) {
145  const DDLogicalPart & ddLP = gra.nodeData( git );
146  if( lpStore.find( ddLP ) != lpStore.end()) {
147  addToSpecStore( ddLP, specStore );
148  }
149  lpStore.insert( ddLP );
150  addToMatStore( ddLP.material(), matStore );
151  addToSolStore( ddLP.solid(), solStore, rotStore );
152  ++i;
153  if( git->size()) {
154  // ask for children of ddLP
155  DDCompactView::graph_type::edge_list::const_iterator cit = git->begin();
156  DDCompactView::graph_type::edge_list::const_iterator cend = git->end();
157  for( ; cit != cend; ++cit ) {
158  const DDLogicalPart & ddcurLP = gra.nodeData( cit->first );
159  if( lpStore.find( ddcurLP ) != lpStore.end()) {
160  addToSpecStore( ddcurLP, specStore );
161  }
162  lpStore.insert( ddcurLP );
163  addToMatStore( ddcurLP.material(), matStore );
164  addToSolStore( ddcurLP.solid(), solStore, rotStore );
165  rotStore.insert( gra.edgeData( cit->second )->rot_ );
166  out.position( ddLP, ddcurLP, gra.edgeData( cit->second ), m_rotNumSeed, *m_xos );
167  } // iterate over children
168  } // if (children)
169  } // iterate over graph nodes
170 
171  (*m_xos) << "</PosPartSection>" << std::endl;
172 
173  (*m_xos) << std::scientific << std::setprecision(18);
174 
175  (*m_xos) << "<MaterialSection label=\"" << ns_ << "\">" << std::endl;
176  for( auto it : matStore ) {
177  if( ! it.isDefined().second ) continue;
178  out.material( it, *m_xos );
179  }
180  (*m_xos) << "</MaterialSection>" << std::endl;
181  (*m_xos) << "<RotationSection label=\"" << ns_ << "\">" << std::endl;
182  (*m_xos) << std::fixed << std::setprecision(18);
183  std::set<DDRotation>::iterator rit( rotStore.begin()), red( rotStore.end());
184  for( ; rit != red; ++rit ) {
185  if( !rit->isDefined().second ) continue;
186  if( rit->toString() != ":" ) {
187  DDRotation r(*rit);
188  out.rotation(r, *m_xos);
189  }
190  }
191  (*m_xos) << "</RotationSection>" << std::endl;
192 
193  (*m_xos) << std::fixed << std::setprecision(18);
194  std::set<DDSolid>::const_iterator sit( solStore.begin()), sed( solStore.end());
195  (*m_xos) << "<SolidSection label=\"" << ns_ << "\">" << std::endl;
196  for( ; sit != sed; ++sit ) {
197  if( !sit->isDefined().second) continue;
198  out.solid( *sit, *m_xos );
199  }
200  (*m_xos) << "</SolidSection>" << std::endl;
201 
202  std::set<DDLogicalPart>::iterator lpit( lpStore.begin()), lped( lpStore.end());
203  (*m_xos) << "<LogicalPartSection label=\"" << ns_ << "\">" << std::endl;
204  for( ; lpit != lped; ++lpit ) {
205  if( !lpit->isDefined().first ) continue;
206  const DDLogicalPart & lp = *lpit;
207  out.logicalPart( lp, *m_xos);
208  }
209  (*m_xos) << "</LogicalPartSection>" << std::endl;
210 
211  (*m_xos) << std::fixed << std::setprecision(18);
212  std::map<DDsvalues_type, std::set<const DDPartSelection*> >::const_iterator mit( specStore.begin()), mend( specStore.end());
213  (*m_xos) << "<SpecParSection label=\"" << ns_ << "\">" << std::endl;
214  for( ; mit != mend; ++mit ) {
215  out.specpar ( *mit, *m_xos );
216  }
217  (*m_xos) << "</SpecParSection>" << std::endl;
218 }
219 
220 void
221 OutputDDToDDL::addToMatStore( const DDMaterial& mat, std::set<DDMaterial> & matStore )
222 {
223  matStore.insert( mat );
224  if( mat.noOfConstituents() != 0 ) {
225  int findex(0);
226  while( findex < mat.noOfConstituents()) {
227  if( matStore.find( mat.constituent( findex ).first) == matStore.end()) {
228  addToMatStore( mat.constituent( findex ).first, matStore );
229  }
230  ++findex;
231  }
232  }
233 }
234 
235 void
236 OutputDDToDDL::addToSolStore( const DDSolid& sol, std::set<DDSolid> & solStore, std::set<DDRotation>& rotStore )
237 {
238  solStore.insert(sol);
239  if( sol.shape() == ddunion || sol.shape() == ddsubtraction || sol.shape() == ddintersection ) {
240  const DDBooleanSolid& bs (sol);
241  if( solStore.find( bs.solidA()) == solStore.end()) {
242  addToSolStore( bs.solidA(), solStore, rotStore );
243  }
244  if( solStore.find( bs.solidB()) == solStore.end()) {
245  addToSolStore( bs.solidB(), solStore, rotStore );
246  }
247  rotStore.insert( bs.rotation());
248  }
249 }
250 
251 void
253  std::map<const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp > & specStore )
254 {
255  for( auto spit : lp.attachedSpecifics()) {
256  specStore[*spit.second].insert( spit.first );
257  }
258 }
259 
void beginRun(edm::Run const &iEvent, edm::EventSetup const &) override
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
void beginJob() override
void rotation(DDRotation &rotation, std::ostream &xos, const std::string &rotn="")
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:41
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
void addToSpecStore(const DDLogicalPart &lp, std::map< const DDsvalues_type, std::set< const DDPartSelection * >, ddsvaluesCmp > &specStore)
std::string m_fname
void addToMatStore(const DDMaterial &mat, std::set< DDMaterial > &matStore)
const graph_type & graph() const
Provides read-only access to the data structure of the compact-view.
void specpar(const DDSpecifics &sp, std::ostream &xos)
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
std::vector< double >::size_type index_type
Definition: adjgraph.h:15
void addToSolStore(const DDSolid &sol, std::set< DDSolid > &solStore, std::set< DDRotation > &rotStore)
A DDSolid represents the shape of a part.
Definition: DDSolid.h:37
DDSolid solidB(void) const
Definition: DDSolid.cc:554
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:64
U second(std::pair< T, U > const &p)
int iEvent
Definition: GenABIO.cc:230
DDRotation rotation(void) const
Definition: DDSolid.cc:536
std::ostream * m_xos
void position(const DDLogicalPart &parent, const DDLogicalPart &child, DDPosData *edgeToChild, int &rotNameSeed, std::ostream &xos)
std::vector< std::pair< unsigned int, DDValue > > DDsvalues_type
std::maps an index to a DDValue. The index corresponds to the index assigned to the name of the std::...
Definition: DDsvalues.h:20
FractionV::value_type constituent(int i) const
returns the i-th compound material and its fraction-mass
Definition: DDMaterial.cc:91
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:92
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:140
void endJob() override
void analyze(edm::Event const &iEvent, edm::EventSetup const &) override
void logicalPart(const DDLogicalPart &lp, std::ostream &xos)
DDSolid solidA(void) const
Definition: DDSolid.cc:548
const T & get() const
Definition: EventSetup.h:56
int noOfConstituents() const
returns the number of compound materials or 0 for elementary materials
Definition: DDMaterial.cc:85
void endRun(edm::Run const &iEvent, edm::EventSetup const &) override
OutputDDToDDL(const edm::ParameterSet &iConfig)
adj_list::const_iterator const_adj_iterator
Definition: adjgraph.h:125
void material(const DDMaterial &material, std::ostream &xos)
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.
Definition: Run.h:42