#include "FPGATrackSimObjects/FPGATrackSimOfflineHit.h"
#include <cmath>
#include <TObject.h>
Go to the source code of this file.
◆ operator<<()
Definition at line 14 of file FPGATrackSimOfflineTrack.cxx.
16 s <<
"pt: " << offline_t.getPt() <<
", "
17 <<
"eta: " << offline_t.getEta() <<
", "
18 <<
"phi: " << offline_t.getPhi() <<
", "
19 <<
"d0: " << offline_t.getD0() <<
", "
20 <<
"z0: " << offline_t.getZ0() <<
", "
21 <<
"qoverpt: " << offline_t.getQOverPt() <<
", "
22 <<
"barcode: " << offline_t.getBarcode() <<
", "
23 <<
"barcode fraction: " << offline_t.getBarcodeFrac() << std::endl;
25 std::vector<FPGATrackSimOfflineHit>
hits = offline_t.getOfflineHits();
26 for (
int j = 0; j < offline_t.nHits(); j++) {
27 s <<
" " << j <<
" " <<
hits[j] <<
"\n";