CMS 3D CMS Logo

DDExpandedViewDump.cc
Go to the documentation of this file.
1 #include <cstdlib>
2 #include <iostream>
3 #include <memory>
4 #include <set>
5 #include <string>
6 #include <utility>
7 
16 
17 using namespace std;
18 
19 void DDExpandedViewDump(ostream& os, DDExpandedView& ex, size_t skip, size_t sto) {
20  typedef set<string>::iterator s_iter;
21  set<string> result;
22  bool go(true);
23  int count(0);
24  bool dotrans(true);
25  if (std::getenv("DDNOTRANS"))
26  dotrans = false;
27  ++skip;
28  while (go) {
29  if ((count % 5000) == 0)
30  cout << count << ' ' << flush;
31  if (sto > 0)
32  if ((count % sto) == 0)
33  break;
34  ++count;
35  if ((count % skip) == 0) {
36  stringstream s;
37  s.setf(ios_base::fixed, ios_base::floatfield);
38  s.precision(2);
39  s << ex.logicalPart().name() << ' ' << ex.copyno() << ' ' << ex.geoHistory()
40  << " r=" << ex.geoHistory().back().posdata()->ddrot().name() << "\n";
42  {
43  double v[9];
44  rm.GetComponents(v, v + 9);
45  s << "R=(";
46  s << v[0] << ' ' << v[1] << ' ' << v[2] << endl;
47  s << v[3] << ' ' << v[4] << ' ' << v[5] << endl;
48  s << v[6] << ' ' << v[7] << ' ' << v[7] << endl;
49  }
50  rm = ex.geoHistory().back().posdata()->rotation();
51  {
52  double v[9];
53  rm.GetComponents(v, v + 9);
54  s << "r=(";
55  s << v[0] << ' ' << v[1] << ' ' << v[2] << endl;
56  s << v[3] << ' ' << v[4] << ' ' << v[5] << endl;
57  s << v[6] << ' ' << v[7] << ' ' << v[7] << endl;
58  }
59  if (dotrans) {
60  s << "T=(" << ex.translation().x() << ',' << ex.translation().y() << ',' << ex.translation().z() << ") ";
61  }
62  pair<s_iter, bool> ins = result.insert(s.str());
63  if (!ins.second) {
64  cout << "DDExpandedViewDump:ERROR: duplicated=" << s.str() << endl;
65  }
66  }
67  go = ex.next();
68  }
69  s_iter it(result.begin()), ed(result.end());
70  for (; it != ed; ++it) {
71  os << *it << endl;
72  }
73 }
def rm(path, rec=False)
Definition: eostools.py:363
void DDExpandedViewDump(ostream &os, DDExpandedView &ex, size_t skip, size_t sto)
bool next()
set current node to the next node in the expanded tree
const DDTranslation & translation() const
The absolute translation of the current node.
const DDLogicalPart & logicalPart() const
The logical-part of the current node in the expanded-view.
ins
Definition: cuy.py:313
ROOT::Math::Rotation3D DDRotationMatrix
A DDRotationMatrix is currently implemented with a ROOT Rotation3D.
const N & name() const
Definition: DDBase.h:58
int copyno() const
Copy number associated with the current node.
const DDRotationMatrix & rotation() const
The absolute rotation of the current node.
Provides an exploded view of the detector (tree-view)
const DDGeoHistory & geoHistory() const
The list of ancestors up to the root-node of the current node.