9 #include "tracking/vxdCaTracking/ExporterEventInfo.h"
26 std::vector<ExporterHitInfo>* ExporterEventInfo::getHits() {
return &m_hits; }
30 std::vector<ExporterTcInfo>* ExporterEventInfo::getTcs() {
return &m_tcs; }
34 int ExporterEventInfo::getNPXDTrueHits() {
return countHitsOfType(0); }
38 int ExporterEventInfo::getNSVDTrueHits() {
return countHitsOfType(1); }
41 int ExporterEventInfo::getNMCHits()
45 nMCHits += tc.getNHits();
50 int ExporterEventInfo::countHitsOfType(
int type)
54 if (hit.getType() == type) { ++counter; }
Bundles information for a single hit to be stored by EventInfo (needed for HitExporter,...
Bundles information for a single track candidate to be stored by EventInfo (needed for HitExporter,...
Abstract base class for different kinds of events.