ATLAS Offline Software
FPGATrackSimOptionalEventInfo.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 #include <iostream>
7 
8 
10  reset();
11 }
12 
14  m_OfflineClusters.clear();
15  m_OfflineTracks.clear();
16  m_TruthTracks.clear();
17 }
18 
19 std::ostream& operator<<(std::ostream& s, const FPGATrackSimOptionalEventInfo& info) {
20  s << "nOfflineClusters: " << info.nOfflineClusters() << ", "
21  << "nOfflineTracks: " << info.nOfflineTracks() << ", "
22  << "nTruthTracks: " << info.nTruthTracks() << std::endl;
23  return s;
24 }
grepfile.info
info
Definition: grepfile.py:38
FPGATrackSimOptionalEventInfo::m_OfflineTracks
std::vector< FPGATrackSimOfflineTrack > m_OfflineTracks
Definition: FPGATrackSimOptionalEventInfo.h:51
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
operator<<
std::ostream & operator<<(std::ostream &s, const FPGATrackSimOptionalEventInfo &info)
Definition: FPGATrackSimOptionalEventInfo.cxx:19
FPGATrackSimOptionalEventInfo::~FPGATrackSimOptionalEventInfo
virtual ~FPGATrackSimOptionalEventInfo()
Definition: FPGATrackSimOptionalEventInfo.cxx:9
FPGATrackSimOptionalEventInfo::reset
void reset()
Definition: FPGATrackSimOptionalEventInfo.cxx:13
FPGATrackSimOptionalEventInfo::m_OfflineClusters
std::vector< FPGATrackSimCluster > m_OfflineClusters
Definition: FPGATrackSimOptionalEventInfo.h:50
FPGATrackSimOptionalEventInfo
Definition: FPGATrackSimOptionalEventInfo.h:17
FPGATrackSimOptionalEventInfo::m_TruthTracks
std::vector< FPGATrackSimTruthTrack > m_TruthTracks
Definition: FPGATrackSimOptionalEventInfo.h:52
FPGATrackSimOptionalEventInfo.h