11 #include "tracking/vxdCaTracking/ExporterEventInfo.h"
28 std::vector<ExporterHitInfo>* ExporterEventInfo::getHits() {
return &m_hits; }
32 std::vector<ExporterTcInfo>* ExporterEventInfo::getTcs() {
return &m_tcs; }
36 int ExporterEventInfo::getNPXDTrueHits() {
return countHitsOfType(0); }
40 int ExporterEventInfo::getNSVDTrueHits() {
return countHitsOfType(1); }
43 int ExporterEventInfo::getNMCHits()
47 nMCHits += tc.getNHits();
52 int ExporterEventInfo::countHitsOfType(
int type)
56 if (hit.getType() == type) { ++counter; }