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
|
#include "DataFormats/DetId/interface/DetId.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDAnalyzer.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/Utilities/interface/StreamID.h"
#include "DataFormats/TrackSoA/interface/TracksHost.h"
namespace edmtest {
class TestReadHostTrackSoA : public edm::global::EDAnalyzer<> {
public:
TestReadHostTrackSoA(edm::ParameterSet const&);
void analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const override;
static void fillDescriptions(edm::ConfigurationDescriptions&);
private:
edm::EDGetTokenT<::reco::TracksHost> getToken_;
};
TestReadHostTrackSoA::TestReadHostTrackSoA(edm::ParameterSet const& iPSet)
: getToken_(consumes(iPSet.getParameter<edm::InputTag>("input"))) {}
void TestReadHostTrackSoA::analyze(edm::StreamID, edm::Event const& iEvent, edm::EventSetup const&) const {
auto const& tracks = iEvent.get(getToken_);
auto tracksView = tracks.view();
for (int i = 0; i < tracksView.metadata().size(); ++i) {
if (tracksView[i].eta() != float(i)) {
throw cms::Exception("TestReadHostTrackSoA Failure") << "TestReadHostTrackSoA::analyze, entry. i = " << i;
}
}
}
void TestReadHostTrackSoA::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.add<edm::InputTag>("input");
descriptions.addDefault(desc);
}
} // namespace edmtest
using edmtest::TestReadHostTrackSoA;
DEFINE_FWK_MODULE(TestReadHostTrackSoA);
|