ATLAS Offline Software
Loading...
Searching...
No Matches
FPGATrackSimLogicalEventInputHeader.h File Reference
#include <TObject.h>
#include <vector>
#include <iostream>
#include <sstream>
#include "FPGATrackSimObjects/FPGATrackSimTowerInputHeader.h"
#include "FPGATrackSimObjects/FPGATrackSimEventInfo.h"
#include "FPGATrackSimObjects/FPGATrackSimOptionalEventInfo.h"
Include dependency graph for FPGATrackSimLogicalEventInputHeader.h:

Go to the source code of this file.

Classes

class  FPGATrackSimLogicalEventInputHeader

Functions

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

Function Documentation

◆ operator<<()

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

Definition at line 17 of file FPGATrackSimLogicalEventInputHeader.cxx.

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