ATLAS Offline Software
Loading...
Searching...
No Matches
FPGATrackSimLogicalEventInputHeader.cxx File Reference
Include dependency graph for FPGATrackSimLogicalEventInputHeader.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const FPGATrackSimLogicalEventInputHeader &h)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & s,
const FPGATrackSimLogicalEventInputHeader & h )

Definition at line 18 of file FPGATrackSimLogicalEventInputHeader.cxx.

19{
20 s << "Event: " << h.event() << "\t"
21 << "Optional: " << h.optional() << "\t"
22 << "NTowers: " << h.nTowers() << "\n";
23
24 const std::vector<FPGATrackSimTowerInputHeader>& towers = h.towers();
25 for (int j = 0; j < h.nTowers(); j++)
26 {
27 s << " " << j << " " << towers[j] << "\n";
28 }
29 s << std::endl;
30
31 return s;
32}
Header file for AthHistogramAlgorithm.