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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
/** \class edm::AssociationMapAnalyzer
\author W. David Dagenhart, created 10 March 2015
*/
#include "DataFormats/Common/interface/AssociationMap.h"
#include "DataFormats/Common/interface/OneToOne.h"
#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/global/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include <vector>
namespace edm {
class EventSetup;
class StreamID;
} // namespace edm
namespace edmtest {
class AssociationMapAnalyzer : public edm::global::EDAnalyzer<> {
public:
typedef edm::AssociationMap<edm::OneToValue<std::vector<int>, double>> AssocOneToValue;
typedef edm::AssociationMap<edm::OneToOne<std::vector<int>, std::vector<int>>> AssocOneToOne;
typedef edm::AssociationMap<edm::OneToMany<std::vector<int>, std::vector<int>>> AssocOneToMany;
typedef edm::AssociationMap<edm::OneToManyWithQuality<std::vector<int>, std::vector<int>, double>>
AssocOneToManyWithQuality;
typedef edm::AssociationMap<edm::OneToOne<edm::View<int>, edm::View<int>>> AssocOneToOneView;
explicit AssociationMapAnalyzer(edm::ParameterSet const&);
void analyze(edm::StreamID, edm::Event const& event, edm::EventSetup const&) const override;
edm::EDGetTokenT<std::vector<int>> inputToken1_;
edm::EDGetTokenT<std::vector<int>> inputToken2_;
edm::EDGetTokenT<edm::View<int>> inputToken1V_;
edm::EDGetTokenT<edm::View<int>> inputToken2V_;
edm::EDGetTokenT<AssocOneToOne> associationMapToken1_;
edm::EDGetTokenT<AssocOneToOne> associationMapToken2_;
edm::EDGetTokenT<AssocOneToValue> associationMapToken3_;
edm::EDGetTokenT<AssocOneToValue> associationMapToken4_;
edm::EDGetTokenT<AssocOneToMany> associationMapToken5_;
edm::EDGetTokenT<AssocOneToManyWithQuality> associationMapToken6_;
edm::EDGetTokenT<AssocOneToOneView> associationMapToken7_;
edm::EDGetTokenT<AssocOneToOneView> associationMapToken8_;
};
AssociationMapAnalyzer::AssociationMapAnalyzer(edm::ParameterSet const& pset) {
inputToken1_ = consumes<std::vector<int>>(pset.getParameter<edm::InputTag>("inputTag1"));
inputToken2_ = consumes<std::vector<int>>(pset.getParameter<edm::InputTag>("inputTag2"));
inputToken1V_ = consumes<edm::View<int>>(pset.getParameter<edm::InputTag>("inputTag1"));
inputToken2V_ = consumes<edm::View<int>>(pset.getParameter<edm::InputTag>("inputTag2"));
associationMapToken1_ = consumes<AssocOneToOne>(pset.getParameter<edm::InputTag>("associationMapTag1"));
associationMapToken2_ = consumes<AssocOneToOne>(pset.getParameter<edm::InputTag>("associationMapTag2"));
associationMapToken3_ = consumes<AssocOneToValue>(pset.getParameter<edm::InputTag>("associationMapTag3"));
associationMapToken4_ = consumes<AssocOneToValue>(pset.getParameter<edm::InputTag>("associationMapTag4"));
associationMapToken5_ = consumes<AssocOneToMany>(pset.getParameter<edm::InputTag>("associationMapTag5"));
associationMapToken6_ = consumes<AssocOneToManyWithQuality>(pset.getParameter<edm::InputTag>("associationMapTag6"));
associationMapToken7_ = consumes<AssocOneToOneView>(pset.getParameter<edm::InputTag>("associationMapTag7"));
associationMapToken8_ = consumes<AssocOneToOneView>(pset.getParameter<edm::InputTag>("associationMapTag8"));
}
void AssociationMapAnalyzer::analyze(edm::StreamID, edm::Event const& event, edm::EventSetup const&) const {
edm::Handle<std::vector<int>> inputCollection1 = event.getHandle(inputToken1_);
edm::Handle<std::vector<int>> inputCollection2 = event.getHandle(inputToken2_);
// Readout some entries from some AssociationMaps and check that
// we readout the same content as was was put in. We know the values
// by looking at the hard coded values in AssociationMapProducer.
// The particular values used are arbitrary and have no meaning.
AssocOneToOne const& associationMap1 = event.get(associationMapToken1_);
if (*associationMap1[edm::Ref<std::vector<int>>(inputCollection1, 0)] != 22 ||
*associationMap1[edm::Ref<std::vector<int>>(inputCollection1, 2)] != 24 ||
*associationMap1[edm::Ptr<int>(inputCollection1, 0)] != 22 ||
*associationMap1[edm::Ptr<int>(inputCollection1, 2)] != 24) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 1";
}
AssocOneToOne::const_iterator iter = associationMap1.begin();
if (*iter->val != 22 || iter->key != edm::Ref<std::vector<int>>(inputCollection1, 0)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 2";
}
++iter;
if (*iter->val != 24 || iter->key != edm::Ref<std::vector<int>>(inputCollection1, 2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 3";
}
++iter;
if (iter != associationMap1.end()) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 4";
}
// Case where handle arguments were used creating the AssociationMap
AssocOneToOne const& associationMap2 = event.get(associationMapToken2_);
if (*associationMap2[edm::Ref<std::vector<int>>(inputCollection1, 0)] != 22 ||
*associationMap2[edm::Ref<std::vector<int>>(inputCollection1, 2)] != 25 ||
*associationMap2[edm::Ptr<int>(inputCollection1, 0)] != 22 ||
*associationMap2[edm::Ptr<int>(inputCollection1, 2)] != 25) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 5";
}
AssocOneToOne::const_iterator iter2 = associationMap2.begin();
++iter2;
if (*iter2->val != 25 || iter2->key != edm::Ref<std::vector<int>>(inputCollection1, 2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 6";
}
// One to Value case
AssocOneToValue const& associationMap3 = event.get(associationMapToken3_);
if (associationMap3[edm::Ref<std::vector<int>>(inputCollection1, 0)] != 11.0 ||
associationMap3[edm::Ref<std::vector<int>>(inputCollection1, 2)] != 12.0 ||
associationMap3[edm::Ptr<int>(inputCollection1, 0)] != 11.0 ||
associationMap3[edm::Ptr<int>(inputCollection1, 2)] != 12.0) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 7";
}
AssocOneToValue::const_iterator iter3 = associationMap3.begin();
++iter3;
if (iter3->val != 12.0 || iter3->key != edm::Ref<std::vector<int>>(inputCollection1, 2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 8";
}
// One to Value case with handle argument
AssocOneToValue const& associationMap4 = event.get(associationMapToken4_);
if (associationMap4[edm::Ref<std::vector<int>>(inputCollection1, 0)] != 21.0 ||
associationMap4[edm::Ref<std::vector<int>>(inputCollection1, 2)] != 22.0 ||
associationMap4[edm::Ptr<int>(inputCollection1, 0)] != 21.0 ||
associationMap4[edm::Ptr<int>(inputCollection1, 2)] != 22.0) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 9";
}
AssocOneToValue::const_iterator iter4 = associationMap4.begin();
++iter4;
if (iter4->val != 22.0 || iter4->key != edm::Ref<std::vector<int>>(inputCollection1, 2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 10";
}
// One to Many
AssocOneToMany const& associationMap5 = event.get(associationMapToken5_);
if (*associationMap5[edm::Ref<std::vector<int>>(inputCollection1, 0)].at(0) != 22 ||
*associationMap5[edm::Ref<std::vector<int>>(inputCollection1, 2)].at(1) != 27 ||
*associationMap5[edm::Ptr<int>(inputCollection1, 0)].at(0) != 22 ||
*associationMap5[edm::Ptr<int>(inputCollection1, 2)].at(1) != 27) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 11";
}
AssocOneToMany::const_iterator iter5 = associationMap5.begin();
++iter5;
if (*iter5->val.at(1) != 27 || iter5->key != edm::Ref<std::vector<int>>(inputCollection1, 2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 12";
}
// One to Many With Quality
AssocOneToManyWithQuality const& associationMap6 = event.get(associationMapToken6_);
if (*associationMap6[edm::Ref<std::vector<int>>(inputCollection1, 0)].at(0).first != 22 ||
*associationMap6[edm::Ref<std::vector<int>>(inputCollection1, 2)].at(1).first != 25 ||
*associationMap6[edm::Ptr<int>(inputCollection1, 0)].at(0).first != 22 ||
*associationMap6[edm::Ptr<int>(inputCollection1, 2)].at(1).first != 25 ||
associationMap6[edm::Ref<std::vector<int>>(inputCollection1, 0)].at(0).second != 31.0 ||
associationMap6[edm::Ref<std::vector<int>>(inputCollection1, 2)].at(1).second != 32.0 ||
associationMap6[edm::Ptr<int>(inputCollection1, 0)].at(0).second != 31.0 ||
associationMap6[edm::Ptr<int>(inputCollection1, 2)].at(1).second != 32.0) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 13";
}
AssocOneToManyWithQuality::const_iterator iter6 = associationMap6.begin();
++iter6;
if (*iter6->val.at(1).first != 25 || iter6->val.at(1).second != 32.0 ||
iter6->key != edm::Ref<std::vector<int>>(inputCollection1, 2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 14";
}
// One to One View
edm::View<int> const& inputView1 = event.get(inputToken1V_);
edm::Handle<edm::View<int>> inputView2 = event.getHandle(inputToken2V_);
AssocOneToOneView const& associationMap7 = event.get(associationMapToken7_);
if (*associationMap7[inputView1.refAt(0)] != 24 || *associationMap7[inputView1.refAt(2)] != 25) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 15";
}
AssocOneToOneView::const_iterator iter7 = associationMap7.begin();
++iter7;
if (*iter7->val != 25 || iter7->key != inputView1.refAt(2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 16";
}
// One to One View built with 2 arguments constructor
AssocOneToOneView const& associationMap8 = event.get(associationMapToken8_);
if (*associationMap8[inputView1.refAt(0)] != 26 || *associationMap8[inputView1.refAt(2)] != 27) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 17";
}
AssocOneToOneView::const_iterator iter8 = associationMap8.begin();
++iter8;
if (*iter8->val != 27 || iter8->key != inputView1.refAt(2)) {
throw cms::Exception("TestFailure") << "unexpected result after using AssociationMap 18";
}
}
} // namespace edmtest
using edmtest::AssociationMapAnalyzer;
DEFINE_FWK_MODULE(AssociationMapAnalyzer);
|