1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
#include <cppunit/extensions/HelperMacros.h>
#include "DetectorDescription/DDCMS/interface/DDFilteredView.h"
#include "DetectorDescription/DDCMS/interface/DDDetector.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "DD4hep/Detector.h"
#include <string>
#include <memory>
#include <vector>
#include "cppunit/TestAssert.h"
#include "cppunit/TestFixture.h"
using namespace cms;
class testDDFilteredViewGet : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(testDDFilteredViewGet);
CPPUNIT_TEST(checkFilteredView);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() override;
void tearDown() override {}
void checkFilteredView();
private:
void printMe(const cms::DDFilteredView&);
double refRadLength_ = 0.03142;
double refXi_ = 6.24526e-05;
int refCopyNoTag_ = 1000;
int refCopyNoOffset_ = 100;
int refCopyNo_ = 1;
std::string fileName_;
std::vector<int> refPos_{0, 0, 6, 2, 2};
};
CPPUNIT_TEST_SUITE_REGISTRATION(testDDFilteredViewGet);
void testDDFilteredViewGet::setUp() {
fileName_ = edm::FileInPath("Geometry/CMSCommonData/data/dd4hep/cmsExtendedGeometry2021.xml").fullPath();
}
void testDDFilteredViewGet::checkFilteredView() {
std::unique_ptr<DDDetector> det = std::make_unique<DDDetector>("DUMMY", fileName_);
DDFilteredView fview(det.get(), det->description()->worldVolume());
int count = 1;
auto testPos = fview.navPos();
while (fview.next(0)) {
std::cout << "#" << count << ": ";
printMe(fview);
if (count == 45) {
testPos = fview.navPos();
}
if (count == 50) {
break;
}
count++;
}
// world_volume/OCMS_1/CMSE_1/Tracker_1/PixelBarrel_1/pixbarlayer0:PixelBarrelLayer0_1/PixelBarrelLadderFull0_6/PixelBarrelModuleBoxFull_1/PixelBarrelModuleFullPlus_4/PixelBarrelSensorFull_1/PixelBarrelActiveFull0_1
//
std::vector<int> activeVol{0, 0, 6, 2, 93, 12, 1, 7, 1, 0};
fview.goTo(activeVol);
printMe(fview);
fview.findSpecPar("TrackerRadLength", "TrackerXi");
double radLength = fview.getNextValue("TrackerRadLength");
double xi = fview.getNextValue("TrackerXi");
CPPUNIT_ASSERT(std::abs(radLength - refRadLength_) < 10e-6);
CPPUNIT_ASSERT(std::abs(xi - refXi_) < 10e-6);
std::cout << "TrackerRadLength = " << radLength << "\nTrackerXi = " << xi << "\n";
auto vals = fview.getValuesNS<std::string>("TrackerRadLength");
for (auto i : vals)
std::cout << "TrackerRadLength = " << i << "\n";
std::cout << "\n==== Let's go to #45\n";
fview.goTo(testPos);
printMe(fview);
int i = 0;
for (auto it : fview.navPos()) {
CPPUNIT_ASSERT(it == testPos[i++]);
}
i = 0;
for (auto it : testPos) {
CPPUNIT_ASSERT(it == refPos_[i++]);
}
// Start with Muon
std::cout << "\n==== Let's go to Muon\n";
fview.goTo({0, 0, 8});
printMe(fview);
CPPUNIT_ASSERT(fview.fullName() == "muonBase:MUON");
// Go to the first daughter
fview.next(0);
printMe(fview);
// Use it as an escape level
int startLevel = fview.level();
count = 1;
do {
std::cout << "#" << count++ << ": ";
std::cout << "started at level " << startLevel << "\n";
printMe(fview);
} while (fview.next(0) && fview.level() < startLevel);
std::cout << "\n==== Continue iteration\n";
count = 1;
fview.next(0);
startLevel = fview.level();
printMe(fview);
do {
std::cout << "#" << count++;
std::cout << " started at level " << startLevel << ":\n";
printMe(fview);
} while (fview.next(0) && fview.level() < startLevel);
fview.next(0);
printMe(fview);
std::cout << "\n==== Let's do it again, go to Muon\n";
fview.goTo({0, 0, 8});
printMe(fview);
CPPUNIT_ASSERT(fview.name() == "MUON");
// Go to the first daughter
fview.next(0);
printMe(fview);
// Use it as an escape level
startLevel = fview.level();
count = 1;
do {
std::cout << "#" << count++ << ": ";
std::cout << "started at level " << startLevel << "\n";
printMe(fview);
} while (fview.next(0) && fview.level() < startLevel);
fview.goTo({0, 0, 8, 0});
printMe(fview);
fview.findSpecPar("CopyNoTag", "CopyNoOffset");
auto tag = fview.getNextValue("CopyNoTag");
auto offset = fview.getNextValue("CopyNoOffset");
std::cout << "CopyNoTag = " << tag << "\n";
std::cout << "CopyNoOffset = " << fview.getNextValue("CopyNoOffset") << "\n";
CPPUNIT_ASSERT(refCopyNoTag_ == tag);
CPPUNIT_ASSERT(refCopyNoOffset_ == offset);
const auto& nodes = fview.history();
int ctr(0);
for (const auto& t : nodes.tags) {
std::cout << t << ": " << nodes.offsets[ctr] << ", " << nodes.copyNos[ctr] << "\n";
CPPUNIT_ASSERT(refCopyNoTag_ == t);
CPPUNIT_ASSERT(refCopyNoOffset_ == nodes.offsets[ctr]);
CPPUNIT_ASSERT(refCopyNo_ == nodes.copyNos[ctr]);
ctr++;
}
}
void testDDFilteredViewGet::printMe(const cms::DDFilteredView& fview) {
std::cout << ">>> " << fview.level() << " level: " << fview.name() << " is a "
<< cms::dd::name(cms::DDSolidShapeMap, fview.shape()) << "\n";
std::cout << "Full path to it is " << fview.path() << "\n";
auto copies = fview.copyNos();
std::cout << " copy Nos: ";
std::for_each(copies.rbegin(), copies.rend(), [](const auto& it) { std::cout << it << ", "; });
std::cout << "\n levels : ";
for (auto it : fview.navPos()) {
std::cout << it << ", ";
}
std::cout << "\n";
}
|