#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <map>
#include "TObject.h"
Go to the source code of this file.
- Author
- mark sutton
- Date
- Thu 10 Jan 2019 19:58:49 CET
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Definition in file Trigger/TrigAnalysis/TrigInDetAnalysis/TrigInDetAnalysis/Track.h.
◆ hextobin()
| std::string hextobin |
( |
const unsigned & | h, |
|
|
int | nbits = 32 ) |
|
inline |
◆ operator<<()
| std::ostream & operator<< |
( |
std::ostream & | s, |
|
|
const TIDA::Track & | t ) |
|
inline |
Definition at line 167 of file Trigger/TrigAnalysis/TrigInDetAnalysis/TrigInDetAnalysis/Track.h.
167 {
169 <<
"\teta=" <<
t.eta()
170 <<
"\tphi=" <<
t.phi()
172 <<
"\tpT=" <<
t.pT()*0.001 <<
" GeV "
173
175 <<
"\thp=0x" << std::hex <<
t.hitPattern() << std::dec <<
" "
176
177 <<
"\tchi2=" <<
t.chi2() <<
"/" <<
t.dof()
178 <<
"\talgo=" <<
t.author()
179 <<
"\tbl=" <<
t.bLayerHits()
180 <<
":" << (
t.expectBL() ?
"t" :
"f" )
181 <<
":" << (
t.hasTruth() ?
"t" :
"f" )
182 <<
"\tid=0x" << std::hex <<
t.id() << std::dec <<
":0x" << std::hex <<
t.barcode() << std::dec
183 << "\t] ";
184}