Go to the source code of this file.
◆ TEST_F() [1/3]
Definition at line 34 of file xAODJetCollectorTest.cxx.
34 {
35
36
37 constexpr std::size_t njets{11};
38 std::vector<xAOD::Jet> xaodjets (njets);
41 for(unsigned int ijet = 0; ijet < njets; ++ijet){
43 }
44
47
48 EXPECT_FALSE(collector.
empty());
49 EXPECT_FALSE((collector.
xAODJets()).size() == 10);
50}
std::vector< pHypoJet > HypoJetVector
void addJets(const HypoJetCIter &begin, const HypoJetCIter &end, int chainPartInd=-1)
std::vector< const xAOD::Jet * > xAODJets() const
◆ TEST_F() [2/3]
Definition at line 53 of file xAODJetCollectorTest.cxx.
53 {
54
55
56 unsigned int njets{11};
59 for(unsigned int ijet = 0; ijet < njets; ++ijet){
62 }
63
66
67
68 EXPECT_FALSE(collector.
empty());
69 EXPECT_TRUE(collector.
size() == njets);
70 EXPECT_TRUE((collector.
hypoJets()).size() == njets);
71 EXPECT_TRUE((collector.
xAODJets()).size() == 0);
72}
HypoJetVector hypoJets() const
◆ TEST_F() [3/3]